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 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": "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": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "3"}, {"$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": "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": "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": "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": "Escalators", "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": "Car park", "sourceSystemKey": "StaticObjects", "value": "yes"}], "children": [], "lat": 51.500382, "lon": 0.005191}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUNGW2", "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": "9400ZZLUNGW2", "commonName": "North Greenwich 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": "Toilets", "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, 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": "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": "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": "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": "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": "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"}], "children": [], "lat": 51.500425, "lon": 0.005308}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUNHA", "modes": ["tube"], "icsCode": "1000161", "stopType": "NaptanMetroAccessArea", "stationNaptan": "940GZZLUNHA", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "9400ZZLUNHA", "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": "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": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "5"}, {"$type": "Tfl.Api.Presentation.Entities.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": "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": "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": "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": "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": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}], "children": [], "lat": 51.584872, "lon": -0.362408}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUNHA1", "modes": ["tube"], "icsCode": "1000161", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUNHA", "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": "940GZZLUNHA", "lineIdentifier": ["metropolitan"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["metropolitan"]}], "status": true, "id": "9400ZZLUNHA1", "commonName": "North Harrow 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": "Lifts", "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": "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": "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": "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 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": "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": "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.585094, "lon": -0.362833}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUNHA2", "modes": ["tube"], "icsCode": "1000161", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUNHA", "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": "940GZZLUNHA", "lineIdentifier": ["metropolitan"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["metropolitan"]}], "status": true, "id": "9400ZZLUNHA2", "commonName": "North Harrow 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": "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": "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": "Gates", "sourceSystemKey": "StaticObjects", "value": "3"}, {"$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": "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": "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": "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"}], "children": [], "lat": 51.585066, "lon": -0.362776}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUNHG", "modes": ["tube"], "icsCode": "1000167", "stopType": "NaptanMetroAccessArea", "stationNaptan": "940GZZLUNHG", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "9400ZZLUNHG", "commonName": "Notting Hill Gate 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": "Help Points", "sourceSystemKey": "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": "1+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": "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": "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": "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": "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.509128, "lon": -0.196104}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUNHG1", "modes": ["tube"], "icsCode": "1000167", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUNHG", "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": "940GZZLUNHG", "lineIdentifier": ["central"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["central"]}], "status": true, "id": "9400ZZLUNHG1", "commonName": "Notting Hill Gate 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": "Waiting Room", "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": "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": "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": "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": "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": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}], "children": [], "lat": 51.508921, "lon": -0.197309}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUNHG2", "modes": ["tube"], "icsCode": "1000167", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUNHG", "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": "940GZZLUNHG", "lineIdentifier": ["central"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["central"]}], "status": true, "id": "9400ZZLUNHG2", "commonName": "Notting Hill Gate 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": "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": "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": "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": "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": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "1+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": "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": "Gates", "sourceSystemKey": "StaticObjects", "value": "6"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}], "children": [], "lat": 51.508988, "lon": -0.196974}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUNHG3", "modes": ["tube"], "icsCode": "1000167", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUNHG", "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": "940GZZLUNHG", "lineIdentifier": ["district", "circle"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["district", "circle"]}], "status": true, "id": "9400ZZLUNHG3", "commonName": "Notting Hill Gate 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": "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": "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": "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": "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": "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": "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": "0"}], "children": [], "lat": 51.508749, "lon": -0.196033}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUNHG4", "modes": ["tube"], "icsCode": "1000167", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUNHG", "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": "940GZZLUNHG", "lineIdentifier": ["circle", "district"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["circle", "district"]}], "status": true, "id": "9400ZZLUNHG4", "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": "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": "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": "Escalators", "sourceSystemKey": "StaticObjects", "value": "6"}, {"$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": "subway to street."}, {"$type": "Tfl.Api.Presentation.Entities.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": "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": "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": "Payphones", "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.508677, "lon": -0.196007}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUNHT", "modes": ["tube"], "icsCode": "1000162", "stopType": "NaptanMetroAccessArea", "stationNaptan": "940GZZLUNHT", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "9400ZZLUNHT", "commonName": "Northolt 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": "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": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$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": "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": "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": "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": "Opening Time", "key": "SunFrom", "sourceSystemKey": "StaticObjects", "value": "09: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": "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": "Opening Time", "key": "SunTo", "sourceSystemKey": "StaticObjects", "value": "15:30"}, {"$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": "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": "19:15"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "yes (male, female)"}], "children": [], "lat": 51.548236, "lon": -0.368699}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUNHT1", "modes": ["tube"], "icsCode": "1000162", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUNHT", "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": "940GZZLUNHT", "lineIdentifier": ["central"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["central"]}], "status": true, "id": "9400ZZLUNHT1", "commonName": "Northolt 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": "Opening Time", "key": "SunTo", "sourceSystemKey": "StaticObjects", "value": "15:30"}, {"$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": "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": "Other Facilities", "sourceSystemKey": "StaticObjects", "value": "routeways platform to ticket hall."}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Opening Time", "key": "SunFrom", "sourceSystemKey": "StaticObjects", "value": "09: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": "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": "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": "MonFriTo", "sourceSystemKey": "StaticObjects", "value": "19: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": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$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": "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": "Help 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:15"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "2"}], "children": [], "lat": 51.548457, "lon": -0.369124}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUNHT2", "modes": ["tube"], "icsCode": "1000162", "stopType": "NaptanRailAccessArea", "stationNaptan": "940GZZLUNHT", "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": "940GZZLUNHT", "lineIdentifier": ["central"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["central"]}], "status": true, "id": "9400ZZLUNHT2", "commonName": "Northolt 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": "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": "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": "routeways platform to ticket hall."}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Opening Time", "key": "SunFrom", "sourceSystemKey": "StaticObjects", "value": "09: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": "Opening Time", "key": "SatFrom", "sourceSystemKey": "StaticObjects", "value": "08:00"}, {"$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": "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": "Opening Time", "key": "MonFriTo", "sourceSystemKey": "StaticObjects", "value": "19: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": "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": "yes (male, female)"}, {"$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": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Opening Time", "key": "SatTo", "sourceSystemKey": "StaticObjects", "value": "17:30"}], "children": [], "lat": 51.548457, "lon": -0.369124}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUNKP", "modes": ["tube"], "icsCode": "1000164", "stopType": "NaptanMetroAccessArea", "stationNaptan": "940GZZLUNKP", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "9400ZZLUNKP", "commonName": "Northwick Park Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$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": "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": "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": "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": "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": "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": "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": "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"}], "children": [], "lat": 51.578481, "lon": -0.318056}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUNKP1", "modes": ["tube"], "icsCode": "1000164", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUNKP", "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": "940GZZLUNKP", "lineIdentifier": ["metropolitan"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["metropolitan"]}], "status": true, "id": "9400ZZLUNKP1", "commonName": "Northwick 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": "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": "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": "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": "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": "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": "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": "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.578393, "lon": -0.317569}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUNKP2", "modes": ["tube"], "icsCode": "1000164", "stopType": "NaptanRailAccessArea", "stationNaptan": "940GZZLUNKP", "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": "940GZZLUNKP", "lineIdentifier": ["metropolitan"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["metropolitan"]}], "status": true, "id": "9400ZZLUNKP2", "commonName": "Northwick Park 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": "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": "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": "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": "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": "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": "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": "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"}], "children": [], "lat": 51.578393, "lon": -0.317554}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUNOW", "modes": ["tube"], "icsCode": "1000165", "stopType": "NaptanMetroAccessArea", "stationNaptan": "940GZZLUNOW", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "9400ZZLUNOW", "commonName": "Northwood Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$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": "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": "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": "Toilets", "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, 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": "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": "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": "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"}], "children": [], "lat": 51.611053, "lon": -0.423829}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUNOW1", "modes": ["tube"], "icsCode": "1000165", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUNOW", "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": "940GZZLUNOW", "lineIdentifier": ["metropolitan"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["metropolitan"]}], "status": true, "id": "9400ZZLUNOW1", "commonName": "Northwood 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": "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": "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": "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"}, {"$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": "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": "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.611001, "lon": -0.42399}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUNOW2", "modes": ["tube"], "icsCode": "1000165", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUNOW", "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": "940GZZLUNOW", "lineIdentifier": ["metropolitan"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["metropolitan"]}], "status": true, "id": "9400ZZLUNOW2", "commonName": "Northwood 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": "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": "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": "12 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": "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": "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": "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": "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.610947, "lon": -0.423963}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUNWH", "modes": ["tube"], "icsCode": "1000166", "stopType": "NaptanMetroAccessArea", "stationNaptan": "940GZZLUNWH", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "9400ZZLUNWH", "commonName": "Northwood Hills 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": "10 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": "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": "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": "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": "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": "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": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "6"}], "children": [], "lat": 51.600572, "lon": -0.409464}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUNWH1", "modes": ["tube"], "icsCode": "1000166", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUNWH", "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": "940GZZLUNWH", "lineIdentifier": ["metropolitan"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["metropolitan"]}], "status": true, "id": "9400ZZLUNWH1", "commonName": "Northwood Hills 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."}, {"$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": "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": "Payphones", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$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": "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": "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": "10 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.600529, "lon": -0.408974}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUNWH2", "modes": ["tube"], "icsCode": "1000166", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUNWH", "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": "940GZZLUNWH", "lineIdentifier": ["metropolitan"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["metropolitan"]}], "status": true, "id": "9400ZZLUNWH2", "commonName": "Northwood Hills 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": "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": "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": "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": "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": "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": "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": "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": "6"}], "children": [], "lat": 51.600492, "lon": -0.408875}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUNWY", "modes": ["tube"], "icsCode": "1000163", "stopType": "NaptanMetroAccessArea", "stationNaptan": "940GZZLUNWY", "hubNaptanCode": "HUBNWB", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "9400ZZLUNWY", "commonName": "North Wembley 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": "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": "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": "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": "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": "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": "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": "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.562551, "lon": -0.304}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUNWY1", "modes": ["tube"], "icsCode": "1000163", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUNWY", "hubNaptanCode": "HUBNWB", "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": "940GZZLUNWY", "lineIdentifier": ["bakerloo"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["bakerloo"]}], "status": true, "id": "9400ZZLUNWY1", "commonName": "North Wembley 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": "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": "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": "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": "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"}], "children": [], "lat": 51.562322, "lon": -0.303691}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUNWY2", "indicator": "southbound", "modes": ["tube"], "icsCode": "1000163", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUNWY", "hubNaptanCode": "HUBNWB", "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": "940GZZLUNWY", "lineIdentifier": ["bakerloo"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["bakerloo"]}], "status": true, "id": "9400ZZLUNWY2", "commonName": "North Wembley 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": "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": "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": "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": "Toilets", "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": "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"}], "children": [], "lat": 51.5628, "lon": -0.303774}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUOAK", "modes": ["tube"], "icsCode": "1000168", "stopType": "NaptanMetroAccessArea", "stationNaptan": "940GZZLUOAK", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "9400ZZLUOAK", "commonName": "Oakwood 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": "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": "Lifts", "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": "Car park", "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"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.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": "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": "Gates", "sourceSystemKey": "StaticObjects", "value": "3"}, {"$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": "Bridge", "sourceSystemKey": "StaticObjects", "value": "yes"}], "children": [], "lat": 51.647725, "lon": -0.132168}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUOAK1", "modes": ["tube"], "icsCode": "1000168", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUOAK", "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": "940GZZLUOAK", "lineIdentifier": ["piccadilly"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["piccadilly"]}], "status": true, "id": "9400ZZLUOAK1", "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": "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": "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": "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": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "5"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.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": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$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": "Help 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.647336, "lon": -0.131418}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUOAK2", "modes": ["tube"], "icsCode": "1000168", "stopType": "NaptanRailAccessArea", "stationNaptan": "940GZZLUOAK", "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": "940GZZLUOAK", "lineIdentifier": ["piccadilly"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["piccadilly"]}], "status": true, "id": "9400ZZLUOAK2", "commonName": "Oakwood 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": "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": "Oakwood Station,London Underground Ltd.,Bramley Rd,London,N14 4UT"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "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": "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": "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": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}], "children": [], "lat": 51.647327, "lon": -0.131433}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUODS", "modes": ["tube"], "icsCode": "1000169", "stopType": "NaptanMetroAccessArea", "stationNaptan": "940GZZLUODS", "hubNaptanCode": "HUBOLD", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "9400ZZLUODS", "commonName": "Old Street 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": "Help Points", "sourceSystemKey": "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": "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": "Address", "sourceSystemKey": "StaticObjects", "value": "Old Street Station,London Underground Ltd.,Old St,London,EC1Y 1BE"}, {"$type": "Tfl.Api.Presentation.Entities.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": "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.525864, "lon": -0.08777}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUODS1", "modes": ["tube"], "icsCode": "1000169", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUODS", "hubNaptanCode": "HUBOLD", "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": "940GZZLUODS", "lineIdentifier": ["northern"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["northern"]}], "status": true, "id": "9400ZZLUODS1", "commonName": "Old 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": "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": "Address", "sourceSystemKey": "StaticObjects", "value": "Old Street Station,London Underground Ltd.,Old St,London,EC1Y 1BE"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.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": "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": "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": "Geo", "key": "Zone", "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": "Lifts", "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.524988, "lon": -0.087547}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUODS2", "modes": ["tube"], "icsCode": "1000169", "stopType": "NaptanRailAccessArea", "stationNaptan": "940GZZLUODS", "hubNaptanCode": "HUBOLD", "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": "940GZZLUODS", "lineIdentifier": ["northern"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["northern"]}], "status": true, "id": "9400ZZLUODS2", "commonName": "Old Street 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": "Old Street Station,London Underground Ltd.,Old St,London,EC1Y 1BE"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.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": "Help Points", "sourceSystemKey": "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": "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": "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": "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": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "1"}], "children": [], "lat": 51.524979, "lon": -0.087547}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUOSY", "modes": ["tube"], "icsCode": "1000171", "stopType": "NaptanMetroAccessArea", "stationNaptan": "940GZZLUOSY", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "9400ZZLUOSY", "commonName": "Osterley 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": "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": "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": "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": "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": "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": "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": "Help Points", "sourceSystemKey": "StaticObjects", "value": "0 on platforms, 0 in ticket halls, 0 elsewhere"}], "children": [], "lat": 51.481274, "lon": -0.352224}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUOSY1", "modes": ["tube"], "icsCode": "1000171", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUOSY", "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": "940GZZLUOSY", "lineIdentifier": ["piccadilly"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["piccadilly"]}], "status": true, "id": "9400ZZLUOSY1", "commonName": "Osterley 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": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "4"}, {"$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": "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": "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": "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"}], "children": [], "lat": 51.481502, "lon": -0.351812}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUOSY2", "modes": ["tube"], "icsCode": "1000171", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUOSY", "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": "940GZZLUOSY", "lineIdentifier": ["piccadilly"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["piccadilly"]}], "status": true, "id": "9400ZZLUOSY2", "commonName": "Osterley 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": "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": "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": "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": "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": "Help 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": "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": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "yes"}], "children": [], "lat": 51.481448, "lon": -0.351843}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUOVL", "modes": ["tube"], "icsCode": "1000172", "stopType": "NaptanMetroAccessArea", "stationNaptan": "940GZZLUOVL", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "9400ZZLUOVL", "commonName": "Oval 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": "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."}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo 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": "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": "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": "Help 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.48185, "lon": -0.112439}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUOVL1", "modes": ["tube"], "icsCode": "1000172", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUOVL", "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": "940GZZLUOVL", "lineIdentifier": ["northern"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["northern"]}], "status": true, "id": "9400ZZLUOVL1", "commonName": "Oval 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": "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": "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": "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": "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": "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": "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.481574, "lon": -0.112623}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUOVL2", "modes": ["tube"], "icsCode": "1000172", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUOVL", "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": "940GZZLUOVL", "lineIdentifier": ["northern"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["northern"]}], "status": true, "id": "9400ZZLUOVL2", "commonName": "Oval 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": "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": "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": "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": "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": "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": "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": "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"}], "children": [], "lat": 51.481777, "lon": -0.112399}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUOXC", "modes": ["tube"], "icsCode": "1000173", "stopType": "NaptanMetroAccessArea", "stationNaptan": "940GZZLUOXC", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "9400ZZLUOXC", "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": "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": "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": "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": "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": "30"}, {"$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": "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": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}], "children": [], "lat": 51.515224, "lon": -0.141903}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUOXC1", "modes": ["tube"], "icsCode": "1000173", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUOXC", "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": "940GZZLUOXC", "lineIdentifier": ["central"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["central"]}], "status": true, "id": "9400ZZLUOXC1", "commonName": "Oxford Circus 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": "14"}, {"$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": "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": "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": "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": "Photo 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": "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": "Lifts", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "3"}], "children": [], "lat": 51.515377, "lon": -0.141363}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUOXC2", "modes": ["tube"], "icsCode": "1000173", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUOXC", "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": "940GZZLUOXC", "lineIdentifier": ["victoria"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["victoria"]}], "status": true, "id": "9400ZZLUOXC2", "commonName": "Oxford 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": "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": "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": "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": "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": "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": "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": "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": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "no"}], "children": [], "lat": 51.51576, "lon": -0.14227}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUOXC3", "modes": ["tube"], "icsCode": "1000173", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUOXC", "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": "940GZZLUOXC", "lineIdentifier": ["bakerloo"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["bakerloo"]}], "status": true, "id": "9400ZZLUOXC3", "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": "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": "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": "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": "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": "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": "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": "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": "Lifts", "sourceSystemKey": "StaticObjects", "value": "0"}], "children": [], "lat": 51.515721, "lon": -0.142084}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUOXC4", "modes": ["tube"], "icsCode": "1000173", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUOXC", "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": "940GZZLUOXC", "lineIdentifier": ["bakerloo"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["bakerloo"]}], "status": true, "id": "9400ZZLUOXC4", "commonName": "Oxford 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": "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": "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": "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": "WiFi", "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": "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": "Photo 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": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "3"}, {"$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"}], "children": [], "lat": 51.515697, "lon": -0.142244}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUOXC5", "modes": ["tube"], "icsCode": "1000173", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUOXC", "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": "940GZZLUOXC", "lineIdentifier": ["central"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["central"]}], "status": true, "id": "9400ZZLUOXC5", "commonName": "Oxford 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": "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": "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": "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": "Payphones", "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": "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": "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": "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": "14"}], "children": [], "lat": 51.515384, "lon": -0.141248}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUOXC6", "modes": ["tube"], "icsCode": "1000173", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUOXC", "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": "940GZZLUOXC", "lineIdentifier": ["victoria"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["victoria"]}], "status": true, "id": "9400ZZLUOXC6", "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": "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": "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": "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": "Waiting Room", "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": "Toilets", "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": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}], "children": [], "lat": 51.515794, "lon": -0.14211}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUPAC", "modes": ["tube"], "icsCode": "1000174", "stopType": "NaptanMetroAccessArea", "stationNaptan": "940GZZLUPAC", "hubNaptanCode": "HUBPAD", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "9400ZZLUPAC", "commonName": "Paddington 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": "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": "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": "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": "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": "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": "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": "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": "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": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}], "children": [], "lat": 51.516581, "lon": -0.175689}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUPAC1", "modes": ["tube"], "icsCode": "1000174", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUPAC", "hubNaptanCode": "HUBPAD", "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": "940GZZLUPAC", "lineIdentifier": ["bakerloo"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["bakerloo"]}], "status": true, "id": "9400ZZLUPAC1", "commonName": "Paddington 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": "24"}, {"$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": "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": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$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": "Payphones", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$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": "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": "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": "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"}], "children": [], "lat": 51.516299, "lon": -0.17547}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUPAC2", "modes": ["tube"], "icsCode": "1000174", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUPAC", "hubNaptanCode": "HUBPAD", "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": "940GZZLUPAC", "lineIdentifier": ["bakerloo"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["bakerloo"]}], "status": true, "id": "9400ZZLUPAC2", "commonName": "Paddington Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$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": "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": "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": "4"}, {"$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": "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": "Ticket Halls", "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": "VisitorCentre", "key": "Location", "sourceSystemKey": "StaticObjects", "value": "Opposite Platform 1 Paddington Rail 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": "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"}], "children": [], "lat": 51.516345, "lon": -0.175526}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUPAC3", "modes": ["tube"], "icsCode": "1000174", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUPAC", "hubNaptanCode": "HUBPAD", "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": "940GZZLUPAC", "lineIdentifier": ["district", "circle"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["district", "circle"]}], "status": true, "id": "9400ZZLUPAC3", "commonName": "Paddington 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": "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": "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": "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": "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": "Gates", "sourceSystemKey": "StaticObjects", "value": "24"}, {"$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": "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": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$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": "Payphones", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "3"}], "children": [], "lat": 51.515383, "lon": -0.175521}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUPAC4", "modes": ["tube"], "icsCode": "1000174", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUPAC", "hubNaptanCode": "HUBPAD", "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": "940GZZLUPAC", "lineIdentifier": ["circle", "district"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["circle", "district"]}], "status": true, "id": "9400ZZLUPAC4", "commonName": "Paddington 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": "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": "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": "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": "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": "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": "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": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$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": "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": "Payphones", "sourceSystemKey": "StaticObjects", "value": "2"}], "children": [], "lat": 51.515436, "lon": -0.175447}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUPAH", "modes": ["tube"], "icsCode": "1000175", "stopType": "NaptanMetroAccessArea", "stationNaptan": "940GZZLUPAH", "hubNaptanCode": "HUBPAD", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "9400ZZLUPAH", "commonName": "Paddington (H&C Line)-Underground", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.518187, "lon": -0.178306}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUPAH1", "modes": ["tube"], "icsCode": "1000175", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUPAH", "hubNaptanCode": "HUBPAD", "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": "940GZZLUPAH", "lineIdentifier": ["hammersmith-city", "circle"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["hammersmith-city", "circle"]}], "status": true, "id": "9400ZZLUPAH1", "commonName": "Paddington (H&C Line)-Underground", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.518201, "lon": -0.178623}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUPAH2", "modes": ["tube"], "icsCode": "1000175", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUPAH", "hubNaptanCode": "HUBPAD", "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": "940GZZLUPAH", "lineIdentifier": ["hammersmith-city"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["hammersmith-city"]}], "status": true, "id": "9400ZZLUPAH2", "commonName": "Paddington (H&C Line)-Underground", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.518163, "lon": -0.178523}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUPCC", "modes": ["tube"], "icsCode": "1000179", "stopType": "NaptanMetroAccessArea", "stationNaptan": "940GZZLUPCC", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "9400ZZLUPCC", "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": "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": "Car park", "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": "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": "Piccadilly Circus Station,London Underground Ltd.,Piccadilly Circus,London,W1J 9HP"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.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": "Cash Machines", "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": "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": "Facility", "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.51005, "lon": -0.133798}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUPCC1", "modes": ["tube"], "icsCode": "1000179", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUPCC", "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": "940GZZLUPCC", "lineIdentifier": ["bakerloo"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["bakerloo"]}], "status": true, "id": "9400ZZLUPCC1", "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": "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": "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": "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": "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": "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": "Cash Machines", "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": "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": "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"}], "children": [], "lat": 51.510083, "lon": -0.135281}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUPCC2", "modes": ["tube"], "icsCode": "1000179", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUPCC", "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": "940GZZLUPCC", "lineIdentifier": ["bakerloo"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["bakerloo"]}], "status": true, "id": "9400ZZLUPCC2", "commonName": "Piccadilly Circus 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": "Photo 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": "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": "Lifts", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$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": "Help 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": "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"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.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": "Gates", "sourceSystemKey": "StaticObjects", "value": "16"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "6"}], "children": [], "lat": 51.510117, "lon": -0.135179}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUPCC3", "modes": ["tube"], "icsCode": "1000179", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUPCC", "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": "940GZZLUPCC", "lineIdentifier": ["piccadilly"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["piccadilly"]}], "status": true, "id": "9400ZZLUPCC3", "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": "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": "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": "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": "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": "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": "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": "Help 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": "Underground Station"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "no"}], "children": [], "lat": 51.509439, "lon": -0.135495}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUPCC4", "modes": ["tube"], "icsCode": "1000179", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUPCC", "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": "940GZZLUPCC", "lineIdentifier": ["piccadilly"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["piccadilly"]}], "status": true, "id": "9400ZZLUPCC4", "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": "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": "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": "Piccadilly Circus Station,London Underground Ltd.,Piccadilly Circus,London,W1J 9HP"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help 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": "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": "Cash Machines", "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": "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": "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": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}], "children": [], "lat": 51.509592, "lon": -0.134926}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUPCO", "modes": ["tube"], "icsCode": "1000180", "stopType": "NaptanMetroAccessArea", "stationNaptan": "940GZZLUPCO", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "9400ZZLUPCO", "commonName": "Pimlico 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": "Escalators", "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": "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": "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": "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": "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": "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": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "1"}], "children": [], "lat": 51.489097, "lon": -0.133761}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUPCO1", "modes": ["tube"], "icsCode": "1000180", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUPCO", "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": "940GZZLUPCO", "lineIdentifier": ["victoria"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["victoria"]}], "status": true, "id": "9400ZZLUPCO1", "commonName": "Pimlico 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": "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": "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": "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": "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": "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": "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": "Ticket Halls", "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"}], "children": [], "lat": 51.489219, "lon": -0.134044}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUPCO2", "modes": ["tube"], "icsCode": "1000180", "stopType": "NaptanRailAccessArea", "stationNaptan": "940GZZLUPCO", "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": "940GZZLUPCO", "lineIdentifier": ["victoria"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["victoria"]}], "status": true, "id": "9400ZZLUPCO2", "commonName": "Pimlico Station", "placeType": "StopPoint", "additionalProperties": [{"$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": "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": "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": "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": "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": "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": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}], "children": [], "lat": 51.489219, "lon": -0.134044}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUPKR", "modes": ["tube"], "icsCode": "1000176", "stopType": "NaptanMetroAccessArea", "stationNaptan": "940GZZLUPKR", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "9400ZZLUPKR", "commonName": "Park Royal 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": "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": "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": "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": "Help Points", "sourceSystemKey": "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": "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.527123, "lon": -0.284341}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUPKR1", "modes": ["tube"], "icsCode": "1000176", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUPKR", "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": "940GZZLUPKR", "lineIdentifier": ["piccadilly"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["piccadilly"]}], "status": true, "id": "9400ZZLUPKR1", "commonName": "Park Royal Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$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": "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": "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"}, {"$type": "Tfl.Api.Presentation.Entities.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": "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": "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": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}], "children": [], "lat": 51.526598, "lon": -0.284058}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUPKR2", "modes": ["tube"], "icsCode": "1000176", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUPKR", "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": "940GZZLUPKR", "lineIdentifier": ["piccadilly"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["piccadilly"]}], "status": true, "id": "9400ZZLUPKR2", "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": "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": "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": "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": "Photo Booths", "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": "Help 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": "Gates", "sourceSystemKey": "StaticObjects", "value": "3"}], "children": [], "lat": 51.526525, "lon": -0.284032}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUPLW", "modes": ["tube"], "icsCode": "1000182", "stopType": "NaptanMetroAccessArea", "stationNaptan": "940GZZLUPLW", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "9400ZZLUPLW", "commonName": "Plaistow 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": "Help Points", "sourceSystemKey": "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": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$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": "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": "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": "Other Facilities", "sourceSystemKey": "StaticObjects", "value": "canopies over platform, taxi ranks outside station."}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}], "children": [], "lat": 51.531341, "lon": 0.017451}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUPLW1", "modes": ["tube"], "icsCode": "1000182", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUPLW", "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": "940GZZLUPLW", "lineIdentifier": ["district", "hammersmith-city"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["district", "hammersmith-city"]}], "status": true, "id": "9400ZZLUPLW1", "commonName": "Plaistow 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": "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": "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": "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": "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": "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": "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"}], "children": [], "lat": 51.531182, "lon": 0.016767}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUPLW2", "modes": ["tube"], "icsCode": "1000182", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUPLW", "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": "940GZZLUPLW", "lineIdentifier": ["district", "hammersmith-city"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["district", "hammersmith-city"]}], "status": true, "id": "9400ZZLUPLW2", "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": "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": "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": "Other Facilities", "sourceSystemKey": "StaticObjects", "value": "canopies over platform, 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": "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": "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": "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"}], "children": [], "lat": 51.531198, "lon": 0.016854}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUPNR", "modes": ["tube"], "icsCode": "1000181", "stopType": "NaptanMetroAccessArea", "stationNaptan": "940GZZLUPNR", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "9400ZZLUPNR", "commonName": "Pinner 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": "Geo", "key": "Zone", "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": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$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": "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": "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": "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": "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": "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.592901, "lon": -0.381161}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUPNR1", "modes": ["tube"], "icsCode": "1000181", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUPNR", "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": "940GZZLUPNR", "lineIdentifier": ["metropolitan"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["metropolitan"]}], "status": true, "id": "9400ZZLUPNR1", "commonName": "Pinner 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": "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": "0"}, {"$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": "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": "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": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "5"}, {"$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": "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"}], "children": [], "lat": 51.59275, "lon": -0.381268}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUPNR2", "modes": ["tube"], "icsCode": "1000181", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUPNR", "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": "940GZZLUPNR", "lineIdentifier": ["metropolitan"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["metropolitan"]}], "status": true, "id": "9400ZZLUPNR2", "commonName": "Pinner Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$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": "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"}, {"$type": "Tfl.Api.Presentation.Entities.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": "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": "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": "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": "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": "Help Points", "sourceSystemKey": "StaticObjects", "value": "15 on platforms, 0 in ticket halls, 0 elsewhere"}], "children": [], "lat": 51.592704, "lon": -0.381183}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUPRD", "modes": ["tube"], "icsCode": "1000183", "stopType": "NaptanMetroAccessArea", "stationNaptan": "940GZZLUPRD", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "9400ZZLUPRD", "commonName": "Preston Road 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": "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": "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": "Preston Road Station,London Underground Ltd.,Preston Rd,Wembley,Middx,HA3 0PS"}, {"$type": "Tfl.Api.Presentation.Entities.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": "Help Points", "sourceSystemKey": "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"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.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"}], "children": [], "lat": 51.571972, "lon": -0.295107}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUPRD1", "modes": ["tube"], "icsCode": "1000183", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUPRD", "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": "940GZZLUPRD", "lineIdentifier": ["metropolitan"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["metropolitan"]}], "status": true, "id": "9400ZZLUPRD1", "commonName": "Preston 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": "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": "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": "Preston Road Station,London Underground Ltd.,Preston Rd,Wembley,Middx,HA3 0PS"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.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": "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": "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": "Car park", "sourceSystemKey": "StaticObjects", "value": "no"}], "children": [], "lat": 51.572024, "lon": -0.295581}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUPRD2", "modes": ["tube"], "icsCode": "1000183", "stopType": "NaptanRailAccessArea", "stationNaptan": "940GZZLUPRD", "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": "940GZZLUPRD", "lineIdentifier": ["metropolitan"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["metropolitan"]}], "status": true, "id": "9400ZZLUPRD2", "commonName": "Preston Road 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": "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": "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": "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"}, {"$type": "Tfl.Api.Presentation.Entities.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": "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": "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.572024, "lon": -0.295581}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUPSG", "modes": ["tube"], "icsCode": "1000177", "stopType": "NaptanMetroAccessArea", "stationNaptan": "940GZZLUPSG", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "9400ZZLUPSG", "commonName": "Parsons 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": "Help Points", "sourceSystemKey": "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": "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"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.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": "canopies over platform (part), taxi ranks outside 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": "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": "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": "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": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}], "children": [], "lat": 51.475277, "lon": -0.20117}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUPSG1", "modes": ["tube"], "icsCode": "1000177", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUPSG", "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": "940GZZLUPSG", "lineIdentifier": ["district"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["district"]}], "status": true, "id": "9400ZZLUPSG1", "commonName": "Parsons Green 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": "canopies over platform (part), taxi ranks outside station."}, {"$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": "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": "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": "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": "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"}], "children": [], "lat": 51.475104, "lon": -0.201637}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUPSG2", "modes": ["tube"], "icsCode": "1000177", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUPSG", "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": "940GZZLUPSG", "lineIdentifier": ["district"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["district"]}], "status": true, "id": "9400ZZLUPSG2", "commonName": "Parsons 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": "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": "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": "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": "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": "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": "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": "Euro Cash Machines", "sourceSystemKey": "StaticObjects", "value": "yes"}], "children": [], "lat": 51.475157, "lon": -0.201534}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUPVL", "modes": ["tube"], "icsCode": "1000178", "stopType": "NaptanMetroAccessArea", "stationNaptan": "940GZZLUPVL", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "9400ZZLUPVL", "commonName": "Perivale 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": "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"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.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": "Perivale Station,London Underground Ltd.,Horsenden Lane,Greenford,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": "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": "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": "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.536717, "lon": -0.323446}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUPVL1", "modes": ["tube"], "icsCode": "1000178", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUPVL", "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": "940GZZLUPVL", "lineIdentifier": ["central"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["central"]}], "status": true, "id": "9400ZZLUPVL1", "commonName": "Perivale 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": "Help Points", "sourceSystemKey": "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": "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": "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": "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": "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": "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": "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"}], "children": [], "lat": 51.536672, "lon": -0.322799}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUPVL2", "modes": ["tube"], "icsCode": "1000178", "stopType": "NaptanRailAccessArea", "stationNaptan": "940GZZLUPVL", "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": "940GZZLUPVL", "lineIdentifier": ["central"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["central"]}], "status": true, "id": "9400ZZLUPVL2", "commonName": "Perivale", "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, 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"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.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": "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": "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": "yes"}, {"$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": "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": "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.536663, "lon": -0.322785}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUPYB", "modes": ["tube"], "icsCode": "1000184", "stopType": "NaptanMetroAccessArea", "stationNaptan": "940GZZLUPYB", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "9400ZZLUPYB", "commonName": "Putney Bridge 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": "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"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.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": "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": "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": "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."}], "children": [], "lat": 51.468262, "lon": -0.208731}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUPYB1", "modes": ["tube"], "icsCode": "1000184", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUPYB", "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": "940GZZLUPYB", "lineIdentifier": ["district"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["district"]}], "status": true, "id": "9400ZZLUPYB1", "commonName": "Putney Bridge Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$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": "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": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.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": "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": "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": "4"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "no"}], "children": [], "lat": 51.468299, "lon": -0.208816}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUPYB2", "modes": ["tube"], "icsCode": "1000184", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUPYB", "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": "940GZZLUPYB", "lineIdentifier": ["district"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["district"]}], "status": true, "id": "9400ZZLUPYB2", "commonName": "Putney Bridge 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": "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": "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": "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": "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": "Help Points", "sourceSystemKey": "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": "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": "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"}], "children": [], "lat": 51.468298, "lon": -0.208787}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUQBY", "modes": ["tube"], "icsCode": "1000185", "stopType": "NaptanMetroAccessArea", "stationNaptan": "940GZZLUQBY", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "9400ZZLUQBY", "commonName": "Queensbury 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": "Lifts", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$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": "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": "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": "Help Points", "sourceSystemKey": "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": "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": "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.594188, "lon": -0.286219}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUQBY1", "modes": ["tube"], "icsCode": "1000185", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUQBY", "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": "940GZZLUQBY", "lineIdentifier": ["jubilee"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["jubilee"]}], "status": true, "id": "9400ZZLUQBY1", "commonName": "Queensbury 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": "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": "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": "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": "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": "yes (male, female, disabled/baby-changing facilities)"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "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": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "4"}], "children": [], "lat": 51.59413, "lon": -0.285947}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUQBY2", "modes": ["tube"], "icsCode": "1000185", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUQBY", "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": "940GZZLUQBY", "lineIdentifier": ["jubilee"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["jubilee"]}], "status": true, "id": "9400ZZLUQBY2", "commonName": "Queensbury 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": "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": "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": "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": "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": "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": "Queensbury Station,London Underground Ltd.,Cumberland Rd,Harrow,Middx,HA8 5NP"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}], "children": [], "lat": 51.594103, "lon": -0.28589}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUQPS", "modes": ["tube"], "icsCode": "1000186", "stopType": "NaptanMetroAccessArea", "stationNaptan": "940GZZLUQPS", "hubNaptanCode": "HUBQPW", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "9400ZZLUQPS", "commonName": "Queen'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": "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": "Photo 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": "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": "Gates", "sourceSystemKey": "StaticObjects", "value": "8"}, {"$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": "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": "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": "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": "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": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}], "children": [], "lat": 51.534158, "lon": -0.204574}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUQPS1", "modes": ["tube"], "icsCode": "1000186", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUQPS", "hubNaptanCode": "HUBQPW", "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": "940GZZLUQPS", "lineIdentifier": ["bakerloo"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["bakerloo"]}], "status": true, "id": "9400ZZLUQPS1", "commonName": "Queen's Park Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$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": "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": "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": "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": "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": "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": "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": "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": "Toilets", "sourceSystemKey": "StaticObjects", "value": "no"}], "children": [], "lat": 51.53416, "lon": -0.205309}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUQPS2", "modes": ["tube"], "icsCode": "1000186", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUQPS", "hubNaptanCode": "HUBQPW", "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": "940GZZLUQPS", "lineIdentifier": ["bakerloo"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["bakerloo"]}], "status": true, "id": "9400ZZLUQPS2", "commonName": "Queen's Park 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": "Bridge", "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": "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": "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": "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"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.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": "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": "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"}], "children": [], "lat": 51.534177, "lon": -0.205222}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUQWY", "modes": ["tube"], "icsCode": "1000187", "stopType": "NaptanMetroAccessArea", "stationNaptan": "940GZZLUQWY", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "9400ZZLUQWY", "commonName": "Queensway 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": "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": "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": "Facility", "key": "Photo 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": "Toilets", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$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": "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.510312, "lon": -0.187152}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUQWY1", "modes": ["tube"], "icsCode": "1000187", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUQWY", "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": "940GZZLUQWY", "lineIdentifier": ["central"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["central"]}], "status": true, "id": "9400ZZLUQWY1", "commonName": "Queensway 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": "Photo 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": "Queensway Station,London Underground Ltd.,Bayswater Rd,London,W2 4SS"}, {"$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": "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": "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": "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": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "1"}], "children": [], "lat": 51.510312, "lon": -0.187209}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUQWY2", "modes": ["tube"], "icsCode": "1000187", "stopType": "NaptanRailAccessArea", "stationNaptan": "940GZZLUQWY", "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": "940GZZLUQWY", "lineIdentifier": ["central"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["central"]}], "status": true, "id": "9400ZZLUQWY2", "commonName": "Queensway 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": "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": "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": "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": "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": "Toilets", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$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": "Help Points", "sourceSystemKey": "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.510321, "lon": -0.187209}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLURBG", "modes": ["tube"], "icsCode": "1000190", "stopType": "NaptanMetroAccessArea", "stationNaptan": "940GZZLURBG", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "9400ZZLURBG", "commonName": "Redbridge 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": "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"}, {"$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": "Redbridge Station,London Underground Ltd.,Eastern Avenue,Ilford,Essex,IG4 5DQ"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.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": "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"}], "children": [], "lat": 51.576243, "lon": 0.04536}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLURBG1", "modes": ["tube"], "icsCode": "1000190", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLURBG", "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": "940GZZLURBG", "lineIdentifier": ["central"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["central"]}], "status": true, "id": "9400ZZLURBG1", "commonName": "Redbridge 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": "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": "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": "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": "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": "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": "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": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}], "children": [], "lat": 51.576188, "lon": 0.046454}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLURBG2", "modes": ["tube"], "icsCode": "1000190", "stopType": "NaptanRailAccessArea", "stationNaptan": "940GZZLURBG", "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": "940GZZLURBG", "lineIdentifier": ["central"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["central"]}], "status": true, "id": "9400ZZLURBG2", "commonName": "Redbridge 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": "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": "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": "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 (male, female)"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.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": "Redbridge Station,London Underground Ltd.,Eastern Avenue,Ilford,Essex,IG4 5DQ"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.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": "Help Points", "sourceSystemKey": "StaticObjects", "value": "0 on platforms, 0 in ticket halls, 0 elsewhere"}], "children": [], "lat": 51.576188, "lon": 0.046454}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLURGP", "modes": ["tube"], "icsCode": "1000191", "stopType": "NaptanMetroAccessArea", "stationNaptan": "940GZZLURGP", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "9400ZZLURGP", "commonName": "Regent's 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": "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": "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": "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": "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": "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": "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"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "1"}], "children": [], "lat": 51.523344, "lon": -0.146444}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLURGP1", "modes": ["tube"], "icsCode": "1000191", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLURGP", "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": "940GZZLURGP", "lineIdentifier": ["bakerloo"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["bakerloo"]}], "status": true, "id": "9400ZZLURGP1", "commonName": "Regent's 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": "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": "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": "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": "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": "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": "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": "Escalators", "sourceSystemKey": "StaticObjects", "value": "0"}], "children": [], "lat": 51.523153, "lon": -0.146294}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLURGP2", "modes": ["tube"], "icsCode": "1000191", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLURGP", "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": "940GZZLURGP", "lineIdentifier": ["bakerloo"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["bakerloo"]}], "status": true, "id": "9400ZZLURGP2", "commonName": "Regent'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": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.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": "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": "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": "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": "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": "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": "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": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}], "children": [], "lat": 51.523089, "lon": -0.146267}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLURKW", "modes": ["tube"], "icsCode": "1000193", "stopType": "NaptanMetroAccessArea", "stationNaptan": "940GZZLURKW", "hubNaptanCode": "HUBRIC", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "9400ZZLURKW", "commonName": "Rickmansworth 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": "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": "Help Points", "sourceSystemKey": "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": "Rickmansworth Station,London Underground Ltd.,Station Approach,Rickmansworth,Herts,WD3 1QY"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.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": "Payphones", "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": "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": "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"}], "children": [], "lat": 51.640207, "lon": -0.473703}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLURKW1", "modes": ["tube"], "icsCode": "1000193", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLURKW", "hubNaptanCode": "HUBRIC", "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": "940GZZLURKW", "lineIdentifier": ["metropolitan"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["metropolitan"]}], "status": true, "id": "9400ZZLURKW1", "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": "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": "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": "post office style queuing for tickets."}, {"$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": "Rickmansworth Station,London Underground Ltd.,Station Approach,Rickmansworth,Herts,WD3 1QY"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, 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": "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.640198, "lon": -0.47366}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLURKW2", "modes": ["tube"], "icsCode": "1000193", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLURKW", "hubNaptanCode": "HUBRIC", "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": "940GZZLURKW", "lineIdentifier": ["metropolitan"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["metropolitan"]}], "status": true, "id": "9400ZZLURKW2", "commonName": "Rickmansworth 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": "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": "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": "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": "Geo", "key": "Zone", "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": "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": "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": "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.640179, "lon": -0.473574}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLURMD", "modes": ["tube"], "icsCode": "1000192", "stopType": "NaptanMetroAccessArea", "stationNaptan": "940GZZLURMD", "hubNaptanCode": "HUBRMD", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "9400ZZLURMD", "commonName": "Richmond 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": "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": "Opening Time", "key": "SunTo", "sourceSystemKey": "StaticObjects", "value": "21: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": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "6"}, {"$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": "SatFrom", "sourceSystemKey": "StaticObjects", "value": "06: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": "Help Points", "sourceSystemKey": "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": "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": "Escalators", "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": "Opening Time", "key": "MonFriTo", "sourceSystemKey": "StaticObjects", "value": "21: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": "Opening Time", "key": "SatTo", "sourceSystemKey": "StaticObjects", "value": "21:45"}, {"$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": "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": "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.463237, "lon": -0.301336}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLURMD1", "modes": ["tube"], "icsCode": "1000192", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLURMD", "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"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "940GZZLURMD", "lineIdentifier": ["district"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["district"]}], "status": true, "id": "9400ZZLURMD1", "commonName": "Richmond Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$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": "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": "Opening Time", "key": "SunTo", "sourceSystemKey": "StaticObjects", "value": "21: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": "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": "Opening Time", "key": "SatTo", "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": "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": "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": "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": "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": "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": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "no"}], "children": [], "lat": 51.463254, "lon": -0.301249}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLURSG", "modes": ["tube"], "icsCode": "1000198", "stopType": "NaptanMetroAccessArea", "stationNaptan": "940GZZLURSG", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "9400ZZLURSG", "commonName": "Ruislip Gardens Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$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": "Car park", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$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": "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": "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": "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": "Gates", "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": "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": "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)"}], "children": [], "lat": 51.560736, "lon": -0.41071}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLURSG1", "modes": ["tube"], "icsCode": "1000198", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLURSG", "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": "940GZZLURSG", "lineIdentifier": ["central"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["central"]}], "status": true, "id": "9400ZZLURSG1", "commonName": "Ruislip Gardens 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": "Gates", "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": "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": "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": "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": "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": "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": "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"}], "children": [], "lat": 51.560755, "lon": -0.410839}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLURSG2", "modes": ["tube"], "icsCode": "1000198", "stopType": "NaptanRailAccessArea", "stationNaptan": "940GZZLURSG", "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": "940GZZLURSG", "lineIdentifier": ["central"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["central"]}], "status": true, "id": "9400ZZLURSG2", "commonName": "Ruislip Gardens", "placeType": "StopPoint", "additionalProperties": [{"$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": "Escalators", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$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": "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": "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": "Toilets", "sourceSystemKey": "StaticObjects", "value": "yes (male, female)"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.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": "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": "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"}], "children": [], "lat": 51.560737, "lon": -0.410839}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLURSM", "modes": ["tube"], "icsCode": "1000199", "stopType": "NaptanMetroAccessArea", "stationNaptan": "940GZZLURSM", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "9400ZZLURSM", "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": "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": "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": "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": "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": "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": "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.573202, "lon": -0.412973}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLURSM1", "modes": ["tube"], "icsCode": "1000199", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLURSM", "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": "940GZZLURSM", "lineIdentifier": ["piccadilly", "metropolitan"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["piccadilly", "metropolitan"]}], "status": true, "id": "9400ZZLURSM1", "commonName": "Ruislip Manor 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": "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": "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": "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": "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": "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": "Toilets", "sourceSystemKey": "StaticObjects", "value": "yes"}], "children": [], "lat": 51.573435, "lon": -0.412215}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLURSM2", "modes": ["tube"], "icsCode": "1000199", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLURSM", "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": "940GZZLURSM", "lineIdentifier": ["metropolitan", "piccadilly"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["metropolitan", "piccadilly"]}], "status": true, "id": "9400ZZLURSM2", "commonName": "Ruislip Manor 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": "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": "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": "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": "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": "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": "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": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "yes"}], "children": [], "lat": 51.573461, "lon": -0.412113}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLURSP", "modes": ["tube"], "icsCode": "1000197", "stopType": "NaptanMetroAccessArea", "stationNaptan": "940GZZLURSP", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "9400ZZLURSP", "commonName": "Ruislip 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": "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": "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": "Help Points", "sourceSystemKey": "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"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, 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": "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": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "0"}], "children": [], "lat": 51.571354, "lon": -0.421898}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLURSP1", "modes": ["tube"], "icsCode": "1000197", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLURSP", "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": "940GZZLURSP", "lineIdentifier": ["piccadilly"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["piccadilly"]}], "status": true, "id": "9400ZZLURSP1", "commonName": "Ruislip 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": "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": "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": "Payphones", "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": "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": "Ruislip Station,London Underground Ltd.,Station Approach,Ruislip,Middx,HA4 8LD"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.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": "post office style queuing for tickets."}], "children": [], "lat": 51.571367, "lon": -0.421537}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLURSP2", "modes": ["tube"], "icsCode": "1000197", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLURSP", "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": "940GZZLURSP", "lineIdentifier": ["piccadilly"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["piccadilly"]}], "status": true, "id": "9400ZZLURSP2", "commonName": "Ruislip 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": "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": "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"}, {"$type": "Tfl.Api.Presentation.Entities.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": "Ruislip Station,London Underground Ltd.,Station Approach,Ruislip,Middx,HA4 8LD"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "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": "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": "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": "6"}], "children": [], "lat": 51.571392, "lon": -0.42142}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLURSP3", "indicator": "eastbound", "modes": ["tube"], "icsCode": "1000197", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLURSP", "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": "940GZZLURSP", "lineIdentifier": ["metropolitan"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["metropolitan"]}], "status": true, "id": "9400ZZLURSP3", "commonName": "Ruislip Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$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": "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": "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": "Help Points", "sourceSystemKey": "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": "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": "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": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}], "children": [], "lat": 51.571341, "lon": -0.421653}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLURSP4", "indicator": "westbound", "modes": ["tube"], "icsCode": "1000197", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLURSP", "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": "940GZZLURSP", "lineIdentifier": ["metropolitan"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["metropolitan"]}], "status": true, "id": "9400ZZLURSP4", "commonName": "Ruislip 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": "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": "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": "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"}, {"$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": "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": "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"}], "children": [], "lat": 51.571366, "lon": -0.421464}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLURSQ", "modes": ["tube"], "icsCode": "1000200", "stopType": "NaptanMetroAccessArea", "stationNaptan": "940GZZLURSQ", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "9400ZZLURSQ", "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": "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": "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": "Payphones", "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": "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": "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": "Lifts", "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": "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.523073, "lon": -0.124285}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLURSQ1", "modes": ["tube"], "icsCode": "1000200", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLURSQ", "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": "940GZZLURSQ", "lineIdentifier": ["piccadilly"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["piccadilly"]}], "status": true, "id": "9400ZZLURSQ1", "commonName": "Russell Square 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": "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": "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": "3"}, {"$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": "Help Points", "sourceSystemKey": "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": "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": "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": "Photo 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.523461, "lon": -0.124399}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLURSQ2", "modes": ["tube"], "icsCode": "1000200", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLURSQ", "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": "940GZZLURSQ", "lineIdentifier": ["piccadilly"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["piccadilly"]}], "status": true, "id": "9400ZZLURSQ2", "commonName": "Russell Square Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$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": "Help Points", "sourceSystemKey": "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": "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": "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": "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": "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": "Photo 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": "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.523398, "lon": -0.124358}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLURVP", "modes": ["tube"], "icsCode": "1000188", "stopType": "NaptanMetroAccessArea", "stationNaptan": "940GZZLURVP", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "9400ZZLURVP", "commonName": "Ravenscourt 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": "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": "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": "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"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.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": "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"}], "children": [], "lat": 51.494122, "lon": -0.235881}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLURVP1", "modes": ["tube"], "icsCode": "1000188", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLURVP", "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": "940GZZLURVP", "lineIdentifier": ["district"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["district"]}], "status": true, "id": "9400ZZLURVP1", "commonName": "Ravenscourt Park 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": "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": "Ravenscourt Park Station,London Underground Ltd.,Ravenscourt Rd,London,W6 0UG"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.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": "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": "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": "Help 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": "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.494132, "lon": -0.235924}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLURVP2", "modes": ["tube"], "icsCode": "1000188", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLURVP", "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": "940GZZLURVP", "lineIdentifier": ["district"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["district"]}], "status": true, "id": "9400ZZLURVP2", "commonName": "Ravenscourt 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": "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": "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": "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": "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": "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": "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.49413, "lon": -0.235837}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLURVY", "modes": ["tube"], "icsCode": "1000194", "stopType": "NaptanMetroAccessArea", "stationNaptan": "940GZZLURVY", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "9400ZZLURVY", "commonName": "Roding Valley 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": "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": "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": "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": "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": "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": "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.617199, "lon": 0.043647}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLURVY1", "modes": ["tube"], "icsCode": "1000194", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLURVY", "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": "940GZZLURVY", "lineIdentifier": ["central"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["central"]}], "status": true, "id": "9400ZZLURVY1", "commonName": "Roding Valley 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": "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": "Photo Booths", "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": "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": "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": "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": "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": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}], "children": [], "lat": 51.617367, "lon": 0.043814}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLURVY2", "modes": ["tube"], "icsCode": "1000194", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLURVY", "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": "940GZZLURVY", "lineIdentifier": ["central"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["central"]}], "status": true, "id": "9400ZZLURVY2", "commonName": "Roding Valley 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": "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": "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": "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": "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"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, 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": "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": "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.617383, "lon": 0.043915}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLURYL", "modes": ["tube"], "icsCode": "1000189", "stopType": "NaptanMetroAccessArea", "stationNaptan": "940GZZLURYL", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "9400ZZLURYL", "commonName": "Rayners 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": "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": "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": "Car park", "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": "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": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$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": "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"}], "children": [], "lat": 51.575147, "lon": -0.371127}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLURYL1", "modes": ["tube"], "icsCode": "1000189", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLURYL", "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": "940GZZLURYL", "lineIdentifier": ["piccadilly", "metropolitan"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["piccadilly", "metropolitan"]}], "status": true, "id": "9400ZZLURYL1", "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": "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": "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": "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": "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": "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": "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.575179, "lon": -0.371458}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLURYL2", "modes": ["tube"], "icsCode": "1000189", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLURYL", "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": "940GZZLURYL", "lineIdentifier": ["metropolitan", "piccadilly"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["metropolitan", "piccadilly"]}], "status": true, "id": "9400ZZLURYL2", "commonName": "Rayners Lane 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": "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": "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": "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": "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": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$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": "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"}], "children": [], "lat": 51.575159, "lon": -0.371372}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLURYO", "modes": ["tube"], "icsCode": "1000196", "stopType": "NaptanMetroAccessArea", "stationNaptan": "940GZZLURYO", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "9400ZZLURYO", "commonName": "Royal Oak 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, 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": "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": "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": "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": "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"}], "children": [], "lat": 51.519113, "lon": -0.188748}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLURYO1", "modes": ["tube"], "icsCode": "1000196", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLURYO", "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": "940GZZLURYO", "lineIdentifier": ["circle", "hammersmith-city"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["circle", "hammersmith-city"]}], "status": true, "id": "9400ZZLURYO1", "commonName": "Royal Oak 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": "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": "1"}, {"$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"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.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": "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": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}], "children": [], "lat": 51.519078, "lon": -0.188259}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLURYO2", "modes": ["tube"], "icsCode": "1000196", "stopType": "NaptanRailAccessArea", "stationNaptan": "940GZZLURYO", "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": "940GZZLURYO", "lineIdentifier": ["circle", "hammersmith-city"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["circle", "hammersmith-city"]}], "status": true, "id": "9400ZZLURYO2", "commonName": "Royal Oak", "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": "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": "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": "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": "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, 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": "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.519078, "lon": -0.18823}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUSBC", "modes": ["tube"], "icsCode": "1000203", "stopType": "NaptanMetroAccessArea", "stationNaptan": "940GZZLUSBC", "hubNaptanCode": "HUBSPB", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "9400ZZLUSBC", "commonName": "Shepherd's Bush (Central) 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": "Toilets", "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": "Facility", "key": "Help Points", "sourceSystemKey": "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": "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": "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": "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": "Other Facilities", "sourceSystemKey": "StaticObjects", "value": "none"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}], "children": [], "lat": 51.504376, "lon": -0.218813}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUSBC1", "modes": ["tube"], "icsCode": "1000203", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUSBC", "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"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "940GZZLUSBC", "lineIdentifier": ["central"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["central"]}], "status": true, "id": "9400ZZLUSBC1", "commonName": "Shepherd's Bush (Central) Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$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": "Photo 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"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.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": "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": "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": "Help Points", "sourceSystemKey": "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": "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.504564, "lon": -0.218129}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUSBC2", "modes": ["tube"], "icsCode": "1000203", "stopType": "NaptanRailAccessArea", "stationNaptan": "940GZZLUSBC", "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"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "940GZZLUSBC", "lineIdentifier": ["central"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["central"]}], "status": true, "id": "9400ZZLUSBC2", "commonName": "Shepherd's Bush (Central Line)", "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": "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": "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": "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"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.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": "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": "Photo 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.504572, "lon": -0.2181}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUSBM", "modes": ["tube"], "icsCode": "1000204", "stopType": "NaptanMetroAccessArea", "stationNaptan": "940GZZLUSBM", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "9400ZZLUSBM", "commonName": "Shepherd's Bush Market 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": "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": "Help Points", "sourceSystemKey": "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": "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": "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": "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": "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": "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"}], "children": [], "lat": 51.505579, "lon": -0.226375}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUSBM1", "modes": ["tube"], "icsCode": "1000204", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUSBM", "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": "940GZZLUSBM", "lineIdentifier": ["circle", "hammersmith-city"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["circle", "hammersmith-city"]}], "status": true, "id": "9400ZZLUSBM1", "commonName": "Shepherd's Bush Market 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": "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": "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": "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": "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": "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": "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"}], "children": [], "lat": 51.505956, "lon": -0.22636}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUSBM2", "modes": ["tube"], "icsCode": "1000204", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUSBM", "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": "940GZZLUSBM", "lineIdentifier": ["hammersmith-city", "circle"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["hammersmith-city", "circle"]}], "status": true, "id": "9400ZZLUSBM2", "commonName": "Shepherd's Bush Market 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": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}, {"$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": "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": "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": "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": "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": "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.505992, "lon": -0.22633}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUSEA", "modes": ["tube"], "icsCode": "1000208", "stopType": "NaptanMetroAccessArea", "stationNaptan": "940GZZLUSEA", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "9400ZZLUSEA", "commonName": "South Ealing 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": "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": "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": "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": "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": "Escalators", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$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": "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.501003, "lon": -0.307424}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUSEA1", "modes": ["tube"], "icsCode": "1000208", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUSEA", "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": "940GZZLUSEA", "lineIdentifier": ["piccadilly"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["piccadilly"]}], "status": true, "id": "9400ZZLUSEA1", "commonName": "South Ealing 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": "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": "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": "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": "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": "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": "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": "Help Points", "sourceSystemKey": "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"}], "children": [], "lat": 51.501102, "lon": -0.30742}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUSEA2", "indicator": "westbound", "modes": ["tube"], "icsCode": "1000208", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUSEA", "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": "940GZZLUSEA", "lineIdentifier": ["piccadilly"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["piccadilly"]}], "status": true, "id": "9400ZZLUSEA2", "commonName": "South Ealing 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": "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": "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": "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": "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": "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": "4"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}], "children": [], "lat": 51.501083, "lon": -0.307364}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUSFB", "modes": ["tube"], "icsCode": "1000218", "stopType": "NaptanMetroAccessArea", "stationNaptan": "940GZZLUSFB", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "9400ZZLUSFB", "commonName": "Stamford Brook 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": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$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": "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": "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 (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": "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": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "yes"}], "children": [], "lat": 51.494917, "lon": -0.245704}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUSFB1", "modes": ["tube"], "icsCode": "1000218", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUSFB", "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": "940GZZLUSFB", "lineIdentifier": ["district"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["district"]}], "status": true, "id": "9400ZZLUSFB1", "commonName": "Stamford Brook 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": "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": "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": "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"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.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": "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": "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.495001, "lon": -0.245931}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUSFB2", "modes": ["tube"], "icsCode": "1000218", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUSFB", "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": "940GZZLUSFB", "lineIdentifier": ["district"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["district"]}], "status": true, "id": "9400ZZLUSFB2", "commonName": "Stamford Brook 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": "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": "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": "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": "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": "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": "Help Points", "sourceSystemKey": "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."}], "children": [], "lat": 51.495001, "lon": -0.245917}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUSFS", "modes": ["tube"], "icsCode": "1000209", "stopType": "NaptanMetroAccessArea", "stationNaptan": "940GZZLUSFS", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "9400ZZLUSFS", "commonName": "Southfields 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 (part), 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": "Help 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": "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": "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": "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": "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": "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": "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.445073, "lon": -0.206602}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUSFS1", "modes": ["tube"], "icsCode": "1000209", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUSFS", "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": "940GZZLUSFS", "lineIdentifier": ["district"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["district"]}], "status": true, "id": "9400ZZLUSFS1", "commonName": "Southfields 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": "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": "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": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Southfields Station,Wimbledon Park Rd,London,SW18"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.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": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.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": "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": "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": "Toilets", "sourceSystemKey": "StaticObjects", "value": "no"}], "children": [], "lat": 51.4454, "lon": -0.206805}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUSFS2", "modes": ["tube"], "icsCode": "1000209", "stopType": "NaptanRailAccessArea", "stationNaptan": "940GZZLUSFS", "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": "940GZZLUSFS", "lineIdentifier": ["district"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["district"]}], "status": true, "id": "9400ZZLUSFS2", "commonName": "Southfields 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": "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": "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 (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": "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": "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": "Photo 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": "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": "Toilets", "sourceSystemKey": "StaticObjects", "value": "no"}], "children": [], "lat": 51.4454, "lon": -0.206805}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUSGN", "modes": ["tube"], "icsCode": "1000220", "stopType": "NaptanMetroAccessArea", "stationNaptan": "940GZZLUSGN", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "9400ZZLUSGN", "commonName": "Stepney Green 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": "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": "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": "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": "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": "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": "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"}], "children": [], "lat": 51.521858, "lon": -0.046596}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUSGN1", "modes": ["tube"], "icsCode": "1000220", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUSGN", "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": "940GZZLUSGN", "lineIdentifier": ["district", "hammersmith-city"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["district", "hammersmith-city"]}], "status": true, "id": "9400ZZLUSGN1", "commonName": "Stepney Green 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": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.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": "Help Points", "sourceSystemKey": "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": "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": "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": "4"}, {"$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": "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"}], "children": [], "lat": 51.521747, "lon": -0.046917}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUSGN2", "modes": ["tube"], "icsCode": "1000220", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUSGN", "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": "940GZZLUSGN", "lineIdentifier": ["hammersmith-city", "district"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["hammersmith-city", "district"]}], "status": true, "id": "9400ZZLUSGN2", "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": "Help Points", "sourceSystemKey": "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": "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": "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": "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": "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": "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": "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.521772, "lon": -0.046815}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUSGP", "modes": ["tube"], "icsCode": "1000224", "stopType": "NaptanMetroAccessArea", "stationNaptan": "940GZZLUSGP", "hubNaptanCode": "HUBSBP", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "9400ZZLUSGP", "commonName": "Stonebridge Park 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": "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": "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": "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": "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": "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"}], "children": [], "lat": 51.543959, "lon": -0.275892}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUSGP1", "modes": ["tube"], "icsCode": "1000224", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUSGP", "hubNaptanCode": "HUBSBP", "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": "940GZZLUSGP", "lineIdentifier": ["bakerloo"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["bakerloo"]}], "status": true, "id": "9400ZZLUSGP1", "commonName": "Stonebridge 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": "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": "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 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": "Stonebridge Park,London Overground Ltd.,North Circular Road,London,NW10 0RL"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "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": "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"}], "children": [], "lat": 51.543976, "lon": -0.275848}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUSGP2", "indicator": "northbound", "modes": ["tube"], "icsCode": "1000224", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUSGP", "hubNaptanCode": "HUBSBP", "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": "940GZZLUSGP", "lineIdentifier": ["bakerloo"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["bakerloo"]}], "status": true, "id": "9400ZZLUSGP2", "commonName": "Stonebridge Park Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$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": "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": "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": "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": "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": "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"}], "children": [], "lat": 51.543913, "lon": -0.275807}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUSGT", "modes": ["tube"], "icsCode": "1000210", "stopType": "NaptanMetroAccessArea", "stationNaptan": "940GZZLUSGT", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "9400ZZLUSGT", "commonName": "Southgate 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": "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": "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": "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": "Help Points", "sourceSystemKey": "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": "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": "4"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "no"}], "children": [], "lat": 51.632315, "lon": -0.127816}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUSGT1", "modes": ["tube"], "icsCode": "1000210", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUSGT", "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": "940GZZLUSGT", "lineIdentifier": ["piccadilly"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["piccadilly"]}], "status": true, "id": "9400ZZLUSGT1", "commonName": "Southgate 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": "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": "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": "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": "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": "Help Points", "sourceSystemKey": "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": "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": "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": "Gates", "sourceSystemKey": "StaticObjects", "value": "7"}], "children": [], "lat": 51.632179, "lon": -0.12772}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUSGT2", "modes": ["tube"], "icsCode": "1000210", "stopType": "NaptanRailAccessArea", "stationNaptan": "940GZZLUSGT", "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": "940GZZLUSGT", "lineIdentifier": ["piccadilly"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["piccadilly"]}], "status": true, "id": "9400ZZLUSGT2", "commonName": "Southgate", "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": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$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": "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": "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": "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": "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.632188, "lon": -0.127734}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUSHH", "modes": ["tube"], "icsCode": "1000211", "stopType": "NaptanMetroAccessArea", "stationNaptan": "940GZZLUSHH", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "9400ZZLUSHH", "commonName": "South Harrow 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": "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": "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": "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": "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": "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": "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": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "yes"}], "children": [], "lat": 51.564888, "lon": -0.352492}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUSHH1", "modes": ["tube"], "icsCode": "1000211", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUSHH", "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": "940GZZLUSHH", "lineIdentifier": ["piccadilly"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["piccadilly"]}], "status": true, "id": "9400ZZLUSHH1", "commonName": "South Harrow Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$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": "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": "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": "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": "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": "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": "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": "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.564526, "lon": -0.352332}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUSHH2", "modes": ["tube"], "icsCode": "1000211", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUSHH", "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": "940GZZLUSHH", "lineIdentifier": ["piccadilly"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["piccadilly"]}], "status": true, "id": "9400ZZLUSHH2", "commonName": "South Harrow 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": "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"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.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": "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": "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": "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": "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.564471, "lon": -0.352277}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUSJP", "modes": ["tube"], "icsCode": "1000221", "stopType": "NaptanMetroAccessArea", "stationNaptan": "940GZZLUSJP", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "9400ZZLUSJP", "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": "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": "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": "Bridge", "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": "Payphones", "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": "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": "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": "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": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}], "children": [], "lat": 51.499544, "lon": -0.133608}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUSJP1", "modes": ["tube"], "icsCode": "1000221", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUSJP", "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": "940GZZLUSJP", "lineIdentifier": ["district", "circle"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["district", "circle"]}], "status": true, "id": "9400ZZLUSJP1", "commonName": "St. James's Park 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": "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": "St. James's Park,London Underground Ltd.,Petty France,London,SW1H 0BD"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.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": "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": "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": "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": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "2"}], "children": [], "lat": 51.499377, "lon": -0.134421}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUSJP2", "modes": ["tube"], "icsCode": "1000221", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUSJP", "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": "940GZZLUSJP", "lineIdentifier": ["circle", "district"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["circle", "district"]}], "status": true, "id": "9400ZZLUSJP2", "commonName": "St. James's 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": "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": "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": "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": "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": "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": "Other Facilities", "sourceSystemKey": "StaticObjects", "value": "none"}, {"$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": "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.499343, "lon": -0.134509}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUSJW", "modes": ["tube"], "icsCode": "1000222", "stopType": "NaptanMetroAccessArea", "stationNaptan": "940GZZLUSJW", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "9400ZZLUSJW", "commonName": "St. John's Wood Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$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": "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": "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": "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": "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": "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": "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.534521, "lon": -0.173948}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUSJW1", "modes": ["tube"], "icsCode": "1000222", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUSJW", "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": "940GZZLUSJW", "lineIdentifier": ["jubilee"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["jubilee"]}], "status": true, "id": "9400ZZLUSJW1", "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": "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": "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": "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": "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": "Lifts", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$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": "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.534761, "lon": -0.174876}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUSJW2", "modes": ["tube"], "icsCode": "1000222", "stopType": "NaptanRailAccessArea", "stationNaptan": "940GZZLUSJW", "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": "940GZZLUSJW", "lineIdentifier": ["jubilee"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["jubilee"]}], "status": true, "id": "9400ZZLUSJW2", "commonName": "St John's Wood 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": "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": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$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": "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": "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": "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": "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": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "2"}], "children": [], "lat": 51.534778, "lon": -0.174861}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUSKS", "modes": ["tube"], "icsCode": "1000212", "stopType": "NaptanMetroAccessArea", "stationNaptan": "940GZZLUSKS", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "9400ZZLUSKS", "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": "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": "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": "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": "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": "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": "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": "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": "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.494094, "lon": -0.174138}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUSKS1", "modes": ["tube"], "icsCode": "1000212", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUSKS", "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": "940GZZLUSKS", "lineIdentifier": ["circle", "district"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["circle", "district"]}], "status": true, "id": "9400ZZLUSKS1", "commonName": "South Kensington 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": "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": "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": "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 (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": "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": "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": "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": "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": "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"}], "children": [], "lat": 51.494104, "lon": -0.173057}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUSKS2", "modes": ["tube"], "icsCode": "1000212", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUSKS", "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": "940GZZLUSKS", "lineIdentifier": ["piccadilly"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["piccadilly"]}], "status": true, "id": "9400ZZLUSKS2", "commonName": "South Kensington 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": "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": "Euro Cash Machines", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$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": "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": "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": "Ticket Halls", "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": "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": "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": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "no"}], "children": [], "lat": 51.494019, "lon": -0.173363}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUSKS3", "modes": ["tube"], "icsCode": "1000212", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUSKS", "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": "940GZZLUSKS", "lineIdentifier": ["piccadilly"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["piccadilly"]}], "status": true, "id": "9400ZZLUSKS3", "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": "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": "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": "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": "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": "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": "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": "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.494018, "lon": -0.173262}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUSKS4", "indicator": "westbound", "modes": ["tube"], "icsCode": "1000212", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUSKS", "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": "940GZZLUSKS", "lineIdentifier": ["circle", "district"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["circle", "district"]}], "status": true, "id": "9400ZZLUSKS4", "commonName": "South Kensington 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": "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": "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": "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": "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": "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": "Escalators", "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": "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": "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": "Bridge", "sourceSystemKey": "StaticObjects", "value": "no"}], "children": [], "lat": 51.494102, "lon": -0.172913}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUSKT", "modes": ["tube"], "icsCode": "1000213", "stopType": "NaptanMetroAccessArea", "stationNaptan": "940GZZLUSKT", "hubNaptanCode": "HUBSOK", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "9400ZZLUSKT", "commonName": "South Kenton 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": "Escalators", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$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": "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": "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": "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": "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": "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"}], "children": [], "lat": 51.570232, "lon": -0.308433}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUSKT1", "modes": ["tube"], "icsCode": "1000213", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUSKT", "hubNaptanCode": "HUBSOK", "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": "940GZZLUSKT", "lineIdentifier": ["bakerloo"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["bakerloo"]}], "status": true, "id": "9400ZZLUSKT1", "commonName": "South Kenton Underground 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": "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": "Photo 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": "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": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 601 4867"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.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": "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": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}], "children": [], "lat": 51.570341, "lon": -0.308559}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUSKT2", "modes": ["tube"], "icsCode": "1000213", "stopType": "NaptanRailAccessArea", "stationNaptan": "940GZZLUSKT", "hubNaptanCode": "HUBSOK", "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": "940GZZLUSKT", "lineIdentifier": ["bakerloo"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["bakerloo"]}], "status": true, "id": "9400ZZLUSKT2", "commonName": "South Kenton 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": "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": "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": "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": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$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": "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": "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"}], "children": [], "lat": 51.570359, "lon": -0.308572}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUSKW", "modes": ["tube"], "icsCode": "1000223", "stopType": "NaptanMetroAccessArea", "stationNaptan": "940GZZLUSKW", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "9400ZZLUSKW", "commonName": "Stockwell 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": "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": "Toilets", "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": "Facility", "key": "Help Points", "sourceSystemKey": "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": "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": "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": "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": "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.472184, "lon": -0.122644}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUSKW1", "modes": ["tube"], "icsCode": "1000223", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUSKW", "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": "940GZZLUSKW", "lineIdentifier": ["northern"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["northern"]}], "status": true, "id": "9400ZZLUSKW1", "commonName": "Stockwell Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$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": "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": "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": "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": "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": "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": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "7"}], "children": [], "lat": 51.471829, "lon": -0.122917}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUSKW2", "modes": ["tube"], "icsCode": "1000223", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUSKW", "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": "940GZZLUSKW", "lineIdentifier": ["northern"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["northern"]}], "status": true, "id": "9400ZZLUSKW2", "commonName": "Stockwell 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": "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": "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": "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": "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": "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": "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": "Stockwell Station,London Underground Ltd.,Clapham Rd,London,SW9 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"}], "children": [], "lat": 51.471811, "lon": -0.122933}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUSKW3", "modes": ["tube"], "icsCode": "1000223", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUSKW", "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": "940GZZLUSKW", "lineIdentifier": ["victoria"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["victoria"]}], "status": true, "id": "9400ZZLUSKW3", "commonName": "Stockwell 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": "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": "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": "Payphones", "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": "Help Points", "sourceSystemKey": "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": "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": "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": "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.471935, "lon": -0.122783}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUSKW4", "modes": ["tube"], "icsCode": "1000223", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUSKW", "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": "940GZZLUSKW", "lineIdentifier": ["victoria"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["victoria"]}], "status": true, "id": "9400ZZLUSKW4", "commonName": "Stockwell 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": "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": "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": "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": "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": "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": "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.4719, "lon": -0.122828}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUSNB", "modes": ["tube"], "icsCode": "1000207", "stopType": "NaptanMetroAccessArea", "stationNaptan": "940GZZLUSNB", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "9400ZZLUSNB", "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": "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": "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": "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": "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": "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": "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"}], "children": [], "lat": 51.580678, "lon": 0.02144}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUSNB1", "modes": ["tube"], "icsCode": "1000207", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUSNB", "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": "940GZZLUSNB", "lineIdentifier": ["central"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["central"]}], "status": true, "id": "9400ZZLUSNB1", "commonName": "Snaresbrook 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": "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": "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": "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": "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": "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": "Bridge", "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.580705, "lon": 0.021441}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUSNB2", "modes": ["tube"], "icsCode": "1000207", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUSNB", "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": "940GZZLUSNB", "lineIdentifier": ["central"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["central"]}], "status": true, "id": "9400ZZLUSNB2", "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": "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": "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": "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"}, {"$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": "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": "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": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}], "children": [], "lat": 51.580651, "lon": 0.02141}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUSPU", "modes": ["tube"], "icsCode": "1000225", "stopType": "NaptanMetroAccessArea", "stationNaptan": "940GZZLUSPU", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "9400ZZLUSPU", "commonName": "St. Paul's 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": "Bridge", "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": "Lifts", "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": "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"}, {"$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": "Photo 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": "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": "St. Paul's,London Underground Ltd.,Cheapside,London,EC1"}], "children": [], "lat": 51.514936, "lon": -0.097567}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUSPU1", "modes": ["tube"], "icsCode": "1000225", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUSPU", "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": "940GZZLUSPU", "lineIdentifier": ["central"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["central"]}], "status": true, "id": "9400ZZLUSPU1", "commonName": "St. Paul's 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": "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": "Photo 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": "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": "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": "Facility", "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": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "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": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}], "children": [], "lat": 51.515173, "lon": -0.098321}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUSPU2", "modes": ["tube"], "icsCode": "1000225", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUSPU", "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": "940GZZLUSPU", "lineIdentifier": ["central"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["central"]}], "status": true, "id": "9400ZZLUSPU2", "commonName": "St. Paul's 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": "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": "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": "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": "Payphones", "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": "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": "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": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}], "children": [], "lat": 51.515192, "lon": -0.098392}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUSRP", "modes": ["tube"], "icsCode": "1000214", "stopType": "NaptanMetroAccessArea", "stationNaptan": "940GZZLUSRP", "hubNaptanCode": "HUBSRU", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "9400ZZLUSRP", "commonName": "South Ruislip 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": "South Ruislip Station,London Underground Ltd.,Station Approach,Ruislip,Middx,HA4 6TP"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "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": "Toilets", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$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": "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": "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": "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"}], "children": [], "lat": 51.556853, "lon": -0.398915}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUSRP1", "modes": ["tube"], "icsCode": "1000214", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUSRP", "hubNaptanCode": "HUBSRU", "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": "940GZZLUSRP", "lineIdentifier": ["central"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["central"]}], "status": true, "id": "9400ZZLUSRP1", "commonName": "South Ruislip 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": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "South Ruislip Station,London Underground Ltd.,Station Approach,Ruislip,Middx,HA4 6TP"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo 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": "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": "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": "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": "Gates", "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.556967, "lon": -0.399373}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUSRP2", "modes": ["tube"], "icsCode": "1000214", "stopType": "NaptanRailAccessArea", "stationNaptan": "940GZZLUSRP", "hubNaptanCode": "HUBSRU", "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": "940GZZLUSRP", "lineIdentifier": ["central"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["central"]}], "status": true, "id": "9400ZZLUSRP2", "commonName": "South Ruislip 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": "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": "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": "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": "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": "South Ruislip Station,London Underground Ltd.,Station Approach,Ruislip,Middx,HA4 6TP"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.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": "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.556958, "lon": -0.399373}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUSSQ", "modes": ["tube"], "icsCode": "1000206", "stopType": "NaptanMetroAccessArea", "stationNaptan": "940GZZLUSSQ", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "9400ZZLUSSQ", "commonName": "Sloane Square 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": "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": "Sloane Square Station,London Underground Ltd.,Sloane Square,London,SW1W 8BB"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.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": "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": "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": "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": "Gates", "sourceSystemKey": "StaticObjects", "value": "7"}], "children": [], "lat": 51.49227, "lon": -0.156377}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUSSQ1", "modes": ["tube"], "icsCode": "1000206", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUSSQ", "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": "940GZZLUSSQ", "lineIdentifier": ["circle", "district"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["circle", "district"]}], "status": true, "id": "9400ZZLUSSQ1", "commonName": "Sloane Square 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, 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": "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": "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": "Sloane Square Station,London Underground Ltd.,Sloane Square,London,SW1W 8BB"}, {"$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": "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": "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.492338, "lon": -0.156144}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUSSQ2", "modes": ["tube"], "icsCode": "1000206", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUSSQ", "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": "940GZZLUSSQ", "lineIdentifier": ["district", "circle"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["district", "circle"]}], "status": true, "id": "9400ZZLUSSQ2", "commonName": "Sloane Square 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": "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": "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": "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": "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": "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": "Sloane Square Station,London Underground Ltd.,Sloane Square,London,SW1W 8BB"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "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": "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": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}], "children": [], "lat": 51.492309, "lon": -0.15603}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUSTD", "modes": ["tube"], "icsCode": "1000226", "stopType": "NaptanMetroAccessArea", "stationNaptan": "940GZZLUSTD", "hubNaptanCode": "HUBSRA", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "9400ZZLUSTD", "commonName": "Stratford Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$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": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$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": "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": "Lifts", "sourceSystemKey": "StaticObjects", "value": "5"}, {"$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": "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": "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": "Photo 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"}], "children": [], "lat": 51.541806, "lon": -0.003458}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUSTD1", "indicator": "Platform 3A", "stopLetter": "3A", "modes": ["tube"], "icsCode": "1000226", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUSTD", "hubNaptanCode": "HUBSRA", "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": "940GZZLUSTD", "lineIdentifier": ["central"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["central"]}], "status": true, "id": "9400ZZLUSTD1", "commonName": "Stratford 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"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.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": "Lifts", "sourceSystemKey": "StaticObjects", "value": "5"}, {"$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": "Cash Machines", "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": "Euro Cash Machines", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$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": "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"}, {"$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": "Help 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.542326, "lon": -0.002311}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUSTD2", "indicator": "Platform 3", "stopLetter": "3", "modes": ["tube"], "icsCode": "1000226", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUSTD", "hubNaptanCode": "HUBSRA", "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": "940GZZLUSTD", "lineIdentifier": ["central"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["central"]}], "status": true, "id": "9400ZZLUSTD2", "commonName": "Stratford 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": "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": "Payphones", "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": "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": "Stratford Station BR Station St,London,E15 1DE"}, {"$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": "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": "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"}], "children": [], "lat": 51.542328, "lon": -0.002426}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUSTD3", "indicator": "Platform 6", "stopLetter": "6", "modes": ["tube"], "icsCode": "1000226", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUSTD", "hubNaptanCode": "HUBSRA", "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": "940GZZLUSTD", "lineIdentifier": ["jubilee"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["jubilee"]}], "status": true, "id": "9400ZZLUSTD3", "commonName": "Stratford 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": "Boarding Ramps", "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": "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": "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": "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": "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": "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": "Cash Machines", "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": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Stratford Station BR Station St,London,E15 1DE"}], "children": [], "lat": 51.54233, "lon": -0.002541}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUSTD4", "indicator": "Platform 13", "stopLetter": "13", "modes": ["tube"], "icsCode": "1000226", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUSTD", "hubNaptanCode": "HUBSRA", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "9400ZZLUSTD4", "commonName": "Stratford Underground 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": "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": "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": "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": "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": "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": "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": "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"}, {"$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"}], "children": [], "lat": 51.540512, "lon": -0.0035}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUSTD5", "indicator": "Platform 14", "stopLetter": "14", "modes": ["tube"], "icsCode": "1000226", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUSTD", "hubNaptanCode": "HUBSRA", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "9400ZZLUSTD5", "commonName": "Stratford Underground 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": "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": "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": "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": "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": "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": "Help Points", "sourceSystemKey": "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": "Ticket Halls", "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": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "4"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "5"}], "children": [], "lat": 51.54051, "lon": -0.003356}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUSTD6", "indicator": "Platform 15", "stopLetter": "15", "modes": ["tube"], "icsCode": "1000226", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUSTD", "hubNaptanCode": "HUBSRA", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "9400ZZLUSTD6", "commonName": "Stratford Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$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": "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": "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": "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": "23"}, {"$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": "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": "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": "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.540507, "lon": -0.003212}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUSTM", "modes": ["tube"], "icsCode": "1000219", "stopType": "NaptanMetroAccessArea", "stationNaptan": "940GZZLUSTM", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "9400ZZLUSTM", "commonName": "Stanmore 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": "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": "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": "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": "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": "Help Points", "sourceSystemKey": "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": "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": "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, disabled/baby-changing facilities)"}], "children": [], "lat": 51.619839, "lon": -0.303266}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUSTM1", "modes": ["tube"], "icsCode": "1000219", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUSTM", "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": "940GZZLUSTM", "lineIdentifier": ["jubilee"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["jubilee"]}], "status": true, "id": "9400ZZLUSTM1", "commonName": "Stanmore 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": "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": "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": "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, 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": "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": "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": "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": "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.619175, "lon": -0.302742}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUSUH", "modes": ["tube"], "icsCode": "1000227", "stopType": "NaptanMetroAccessArea", "stationNaptan": "940GZZLUSUH", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "9400ZZLUSUH", "commonName": "Sudbury 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": "Help Points", "sourceSystemKey": "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"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.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": "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": "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": "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": "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"}], "children": [], "lat": 51.556946, "lon": -0.336435}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUSUH1", "modes": ["tube"], "icsCode": "1000227", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUSUH", "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": "940GZZLUSUH", "lineIdentifier": ["piccadilly"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["piccadilly"]}], "status": true, "id": "9400ZZLUSUH1", "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": "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": "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": "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": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$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"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.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": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}], "children": [], "lat": 51.557043, "lon": -0.336951}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUSUH2", "modes": ["tube"], "icsCode": "1000227", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUSUH", "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": "940GZZLUSUH", "lineIdentifier": ["piccadilly"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["piccadilly"]}], "status": true, "id": "9400ZZLUSUH2", "commonName": "Sudbury Hill Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$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": "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": "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": "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": "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": "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.557005, "lon": -0.336837}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUSUT", "modes": ["tube"], "icsCode": "1000228", "stopType": "NaptanMetroAccessArea", "stationNaptan": "940GZZLUSUT", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "9400ZZLUSUT", "commonName": "Sudbury 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": "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": "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": "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": "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": "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"}], "children": [], "lat": 51.550815, "lon": -0.315745}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUSUT1", "modes": ["tube"], "icsCode": "1000228", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUSUT", "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": "940GZZLUSUT", "lineIdentifier": ["piccadilly"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["piccadilly"]}], "status": true, "id": "9400ZZLUSUT1", "commonName": "Sudbury 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": "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": "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": "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": "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": "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": "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": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "4"}], "children": [], "lat": 51.550797, "lon": -0.315774}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUSUT2", "modes": ["tube"], "icsCode": "1000228", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUSUT", "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": "940GZZLUSUT", "lineIdentifier": ["piccadilly"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["piccadilly"]}], "status": true, "id": "9400ZZLUSUT2", "commonName": "Sudbury Town 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": "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": "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": "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": "Help Points", "sourceSystemKey": "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": "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.55076, "lon": -0.315689}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUSVS", "modes": ["tube"], "icsCode": "1000201", "stopType": "NaptanMetroAccessArea", "stationNaptan": "940GZZLUSVS", "hubNaptanCode": "HUBSVS", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "9400ZZLUSVS", "commonName": "Seven Sisters 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": "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": "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": "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": "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": "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": "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"}], "children": [], "lat": 51.58333, "lon": -0.072584}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUSVS1", "modes": ["tube"], "icsCode": "1000201", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUSVS", "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"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "940GZZLUSVS", "lineIdentifier": ["victoria"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["victoria"]}], "status": true, "id": "9400ZZLUSVS1", "commonName": "Seven Sisters 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": "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": "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": "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": "Help 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": "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": "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": "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": "Toilets", "sourceSystemKey": "StaticObjects", "value": "no"}], "children": [], "lat": 51.582433, "lon": -0.073863}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUSVS2", "modes": ["tube"], "icsCode": "1000201", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUSVS", "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"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "940GZZLUSVS", "lineIdentifier": ["victoria"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["victoria"]}], "status": true, "id": "9400ZZLUSVS2", "commonName": "Seven Sisters 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": "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": "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": "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": "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": "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": "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": "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": "13"}], "children": [], "lat": 51.58239, "lon": -0.07398}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUSWC", "modes": ["tube"], "icsCode": "1000230", "stopType": "NaptanMetroAccessArea", "stationNaptan": "940GZZLUSWC", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "9400ZZLUSWC", "commonName": "Swiss Cottage 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": "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"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo 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": "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": "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": "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"}, {"$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": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "2"}], "children": [], "lat": 51.543681, "lon": -0.174894}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUSWC1", "modes": ["tube"], "icsCode": "1000230", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUSWC", "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": "940GZZLUSWC", "lineIdentifier": ["jubilee"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["jubilee"]}], "status": true, "id": "9400ZZLUSWC1", "commonName": "Swiss Cottage 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": "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": "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": "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": "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": "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": "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"}], "children": [], "lat": 51.543606, "lon": -0.175229}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUSWC2", "modes": ["tube"], "icsCode": "1000230", "stopType": "NaptanRailAccessArea", "stationNaptan": "940GZZLUSWC", "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": "940GZZLUSWC", "lineIdentifier": ["jubilee"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["jubilee"]}], "status": true, "id": "9400ZZLUSWC2", "commonName": "Swiss Cottage 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": "Bridge", "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": "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": "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": "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": "Payphones", "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": "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": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}], "children": [], "lat": 51.543597, "lon": -0.175244}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUSWF", "modes": ["tube"], "icsCode": "1000217", "stopType": "NaptanMetroAccessArea", "stationNaptan": "940GZZLUSWF", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "9400ZZLUSWF", "commonName": "South Woodford 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": "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 Eastbound 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": "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": "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": "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": "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": "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": "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.591907, "lon": 0.027338}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUSWF1", "modes": ["tube"], "icsCode": "1000217", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUSWF", "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": "940GZZLUSWF", "lineIdentifier": ["central"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["central"]}], "status": true, "id": "9400ZZLUSWF1", "commonName": "South Woodford Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$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": "Boarding Ramps", "sourceSystemKey": "StaticObjects", "value": "yes Eastbound 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": "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": "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": "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": "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": "Toilets", "sourceSystemKey": "StaticObjects", "value": "yes (male, female)"}, {"$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": "2"}], "children": [], "lat": 51.591753, "lon": 0.02736}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUSWF2", "modes": ["tube"], "icsCode": "1000217", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUSWF", "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": "940GZZLUSWF", "lineIdentifier": ["central"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["central"]}], "status": true, "id": "9400ZZLUSWF2", "commonName": "South Woodford 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": "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": "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": "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": "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": "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": "South Woodford Station,London Underground Ltd.,George Lane,London,E18 1JJ"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, 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": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "7"}], "children": [], "lat": 51.591682, "lon": 0.027342}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUSWK", "modes": ["tube"], "icsCode": "1000215", "stopType": "NaptanMetroAccessArea", "stationNaptan": "940GZZLUSWK", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "9400ZZLUSWK", "commonName": "Southwark 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": "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": "Help Points", "sourceSystemKey": "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": "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": "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": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}, {"$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": "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": "Gates", "sourceSystemKey": "StaticObjects", "value": "19"}], "children": [], "lat": 51.503976, "lon": -0.10494}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUSWK1", "indicator": "Eastbound", "modes": ["tube"], "icsCode": "1000215", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUSWK", "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": "940GZZLUSWK", "lineIdentifier": ["jubilee"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["jubilee"]}], "status": true, "id": "9400ZZLUSWK1", "commonName": "Southwark 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": "Escalators", "sourceSystemKey": "StaticObjects", "value": "8"}, {"$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": "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": "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": "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": "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": "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": "Help Points", "sourceSystemKey": "StaticObjects", "value": "0 on platforms, 0 in ticket halls, 0 elsewhere"}], "children": [], "lat": 51.504302, "lon": -0.105632}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUSWK2", "indicator": "Westbound", "modes": ["tube"], "icsCode": "1000215", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUSWK", "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": "940GZZLUSWK", "lineIdentifier": ["jubilee"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["jubilee"]}], "status": true, "id": "9400ZZLUSWK2", "commonName": "Southwark Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$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": "Help Points", "sourceSystemKey": "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": "Toilets", "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": "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": "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": "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": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "2"}], "children": [], "lat": 51.50427, "lon": -0.105331}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUSWN", "modes": ["tube"], "icsCode": "1000216", "stopType": "NaptanMetroAccessArea", "stationNaptan": "940GZZLUSWN", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "9400ZZLUSWN", "commonName": "South Wimbledon 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": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$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"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.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": "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": "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": "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"}], "children": [], "lat": 51.415309, "lon": -0.192005}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUSWN1", "modes": ["tube"], "icsCode": "1000216", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUSWN", "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": "940GZZLUSWN", "lineIdentifier": ["northern"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["northern"]}], "status": true, "id": "9400ZZLUSWN1", "commonName": "South Wimbledon 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": "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": "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": "South Wimbledon Station,London Underground Ltd.,High St,London,SW19 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": "Help Points", "sourceSystemKey": "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": "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": "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"}], "children": [], "lat": 51.415078, "lon": -0.19282}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUSWN2", "modes": ["tube"], "icsCode": "1000216", "stopType": "NaptanRailAccessArea", "stationNaptan": "940GZZLUSWN", "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": "940GZZLUSWN", "lineIdentifier": ["northern"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["northern"]}], "status": true, "id": "9400ZZLUSWN2", "commonName": "South Wimbledon Station", "placeType": "StopPoint", "additionalProperties": [{"$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"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.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": "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": "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": "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": "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": "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.41525, "lon": -0.192856}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUTAW", "modes": ["tube"], "icsCode": "1000237", "stopType": "NaptanMetroAccessArea", "stationNaptan": "940GZZLUTAW", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "9400ZZLUTAW", "commonName": "Totteridge & Whetstone 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": "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": "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": "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": "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": "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": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$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": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}], "children": [], "lat": 51.630597, "lon": -0.17921}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUTAW1", "modes": ["tube"], "icsCode": "1000237", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUTAW", "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": "940GZZLUTAW", "lineIdentifier": ["northern"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["northern"]}], "status": true, "id": "9400ZZLUTAW1", "commonName": "Totteridge & Whetstone 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": "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": "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": "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": "Totteridge & Whetstone Station,London Underground Ltd.,Totteridge Lane,London,N20 9QP"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.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"}], "children": [], "lat": 51.63057, "lon": -0.179226}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUTAW2", "modes": ["tube"], "icsCode": "1000237", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUTAW", "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": "940GZZLUTAW", "lineIdentifier": ["northern"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["northern"]}], "status": true, "id": "9400ZZLUTAW2", "commonName": "Totteridge & Whetstone 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": "Totteridge & Whetstone Station,London Underground Ltd.,Totteridge Lane,London,N20 9QP"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.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": "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": "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": "Help Points", "sourceSystemKey": "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": "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"}], "children": [], "lat": 51.630507, "lon": -0.179228}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUTBC", "modes": ["tube"], "icsCode": "1000233", "stopType": "NaptanMetroAccessArea", "stationNaptan": "940GZZLUTBC", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "9400ZZLUTBC", "commonName": "Tooting Bec 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": "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": "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": "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": "Facility", "key": "Help 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": "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, 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": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}], "children": [], "lat": 51.435678, "lon": -0.159736}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUTBC1", "modes": ["tube"], "icsCode": "1000233", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUTBC", "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": "940GZZLUTBC", "lineIdentifier": ["northern"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["northern"]}], "status": true, "id": "9400ZZLUTBC1", "commonName": "Tooting Bec 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": "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": "Photo 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": "Help Points", "sourceSystemKey": "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": "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": "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": "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": "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.435856, "lon": -0.159024}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUTBC2", "modes": ["tube"], "icsCode": "1000233", "stopType": "NaptanRailAccessArea", "stationNaptan": "940GZZLUTBC", "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": "940GZZLUTBC", "lineIdentifier": ["northern"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["northern"]}], "status": true, "id": "9400ZZLUTBC2", "commonName": "Tooting Bec 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": "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, 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": "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": "Help Points", "sourceSystemKey": "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": "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": "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": "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": "no"}], "children": [], "lat": 51.435847, "lon": -0.15901}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUTBY", "modes": ["tube"], "icsCode": "1000234", "stopType": "NaptanMetroAccessArea", "stationNaptan": "940GZZLUTBY", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "9400ZZLUTBY", "commonName": "Tooting Broadway 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": "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": "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": "Tooting Broadway Station,London Underground Ltd.,Tooting High St,London,SW17 0SU"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo 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": "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": "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": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "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": "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": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}], "children": [], "lat": 51.42763, "lon": -0.168374}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUTBY1", "modes": ["tube"], "icsCode": "1000234", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUTBY", "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": "940GZZLUTBY", "lineIdentifier": ["northern"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["northern"]}], "status": true, "id": "9400ZZLUTBY1", "commonName": "Tooting Broadway 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": "Photo 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": "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": "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": "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": "6 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": "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": "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": "Tooting Broadway Station,London Underground Ltd.,Tooting High St,London,SW17 0SU"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.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"}], "children": [], "lat": 51.427843, "lon": -0.168178}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUTBY2", "modes": ["tube"], "icsCode": "1000234", "stopType": "NaptanRailAccessArea", "stationNaptan": "940GZZLUTBY", "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": "940GZZLUTBY", "lineIdentifier": ["northern"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["northern"]}], "status": true, "id": "9400ZZLUTBY2", "commonName": "Tooting Broadway 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": "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": "3"}, {"$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": "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": "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": "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": "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": "Tooting Broadway Station,London Underground Ltd.,Tooting High St,London,SW17 0SU"}, {"$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": "Escalators", "sourceSystemKey": "StaticObjects", "value": "3"}], "children": [], "lat": 51.427825, "lon": -0.168164}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUTCR", "modes": ["tube"], "icsCode": "1000235", "stopType": "NaptanMetroAccessArea", "stationNaptan": "940GZZLUTCR", "hubNaptanCode": "HUBTCR", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "9400ZZLUTCR", "commonName": "Tottenham Court 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": "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": "Tottenham Court Road Station,London Underground Ltd.,Oxford St,London,W1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "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": "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": "Gates", "sourceSystemKey": "StaticObjects", "value": "13"}, {"$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": "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": "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.516426, "lon": -0.13041}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUTCR1", "modes": ["tube"], "icsCode": "1000235", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUTCR", "hubNaptanCode": "HUBTCR", "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": "940GZZLUTCR", "lineIdentifier": ["central"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["central"]}], "status": true, "id": "9400ZZLUTCR1", "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": "Lifts", "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": "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": "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": "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": "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": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}], "children": [], "lat": 51.516408, "lon": -0.131549}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUTCR2", "modes": ["tube"], "icsCode": "1000235", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUTCR", "hubNaptanCode": "HUBTCR", "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": "940GZZLUTCR", "lineIdentifier": ["northern"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["northern"]}], "status": true, "id": "9400ZZLUTCR2", "commonName": "Tottenham Court Road 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": "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": "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": "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": "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": "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": "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": "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": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "1"}], "children": [], "lat": 51.515941, "lon": -0.13043}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUTCR3", "modes": ["tube"], "icsCode": "1000235", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUTCR", "hubNaptanCode": "HUBTCR", "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": "940GZZLUTCR", "lineIdentifier": ["northern"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["northern"]}], "status": true, "id": "9400ZZLUTCR3", "commonName": "Tottenham Court 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": "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": "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": "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": "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": "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": "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": "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"}], "children": [], "lat": 51.515904, "lon": -0.130402}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUTCR4", "modes": ["tube"], "icsCode": "1000235", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUTCR", "hubNaptanCode": "HUBTCR", "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": "940GZZLUTCR", "lineIdentifier": ["central"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["central"]}], "status": true, "id": "9400ZZLUTCR4", "commonName": "Tottenham Court Road 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": "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": "13"}, {"$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": "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": "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": "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": "Photo 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.51594, "lon": -0.130401}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUTFP", "modes": ["tube"], "icsCode": "1000239", "stopType": "NaptanMetroAccessArea", "stationNaptan": "940GZZLUTFP", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "9400ZZLUTFP", "commonName": "Tufnell 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": "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": "Photo 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": "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": "Tufnell Park Station,London Underground Ltd.,Fortess Rd,London,N19 5QB"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.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": "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": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}], "children": [], "lat": 51.556822, "lon": -0.138433}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUTFP1", "modes": ["tube"], "icsCode": "1000239", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUTFP", "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": "940GZZLUTFP", "lineIdentifier": ["northern"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["northern"]}], "status": true, "id": "9400ZZLUTFP1", "commonName": "Tufnell 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": "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": "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": "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": "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": "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": "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.556803, "lon": -0.138391}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUTFP2", "modes": ["tube"], "icsCode": "1000239", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUTFP", "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": "940GZZLUTFP", "lineIdentifier": ["northern"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["northern"]}], "status": true, "id": "9400ZZLUTFP2", "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": "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": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$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": "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": "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": "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.556741, "lon": -0.138422}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUTHB", "modes": ["tube"], "icsCode": "1000232", "stopType": "NaptanMetroAccessArea", "stationNaptan": "940GZZLUTHB", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "9400ZZLUTHB", "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": "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": "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": "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": "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": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "6"}, {"$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": "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": "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": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}], "children": [], "lat": 51.671759, "lon": 0.103085}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUTHB1", "modes": ["tube"], "icsCode": "1000232", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUTHB", "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": "940GZZLUTHB", "lineIdentifier": ["central"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["central"]}], "status": true, "id": "9400ZZLUTHB1", "commonName": "Theydon Bois Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$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": "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": "Boarding Ramps", "sourceSystemKey": "StaticObjects", "value": "yes Eastbound 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": "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": "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": "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": "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": "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.671479, "lon": 0.103651}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUTHB2", "modes": ["tube"], "icsCode": "1000232", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUTHB", "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": "940GZZLUTHB", "lineIdentifier": ["central"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["central"]}], "status": true, "id": "9400ZZLUTHB2", "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": "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 (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": "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": "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": "Lifts", "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": "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 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.671426, "lon": 0.10362}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUTMH", "modes": ["tube"], "icsCode": "1000236", "stopType": "NaptanMetroAccessArea", "stationNaptan": "940GZZLUTMH", "hubNaptanCode": "HUBTOM", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "9400ZZLUTMH", "commonName": "Tottenham Hale 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": "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": "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": "Payphones", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Tottenham Hale Underground Station,London Underground Ltd.,Station Rd,London,N17 9LR"}, {"$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": "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": "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"}], "children": [], "lat": 51.588108, "lon": -0.060241}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUTMH1", "modes": ["tube"], "icsCode": "1000236", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUTMH", "hubNaptanCode": "HUBTOM", "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": "940GZZLUTMH", "lineIdentifier": ["victoria"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["victoria"]}], "status": true, "id": "9400ZZLUTMH1", "commonName": "Tottenham Hale 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": "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": "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": "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": "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": "Address", "sourceSystemKey": "StaticObjects", "value": "Tottenham Hale Underground Station,London Underground Ltd.,Station Rd,London,N17 9LR"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.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": "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": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}], "children": [], "lat": 51.588309, "lon": -0.061532}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUTMH2", "modes": ["tube"], "icsCode": "1000236", "stopType": "NaptanRailAccessArea", "stationNaptan": "940GZZLUTMH", "hubNaptanCode": "HUBTOM", "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": "940GZZLUTMH", "lineIdentifier": ["victoria"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["victoria"]}], "status": true, "id": "9400ZZLUTMH2", "commonName": "Tottenham Hale", "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": "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"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.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": "Bridge", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Tottenham Hale Underground Station,London Underground Ltd.,Station Rd,London,N17 9LR"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.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": "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": "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": "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": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}], "children": [], "lat": 51.588318, "lon": -0.061502}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUTMP", "modes": ["tube"], "icsCode": "1000231", "stopType": "NaptanMetroAccessArea", "stationNaptan": "940GZZLUTMP", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "9400ZZLUTMP", "commonName": "Temple 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": "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": "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": "Temple Station,London Underground Ltd.,Victoria Embankment,London,WC2R 2PH"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.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": "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": "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"}], "children": [], "lat": 51.511006, "lon": -0.11426}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUTMP1", "modes": ["tube"], "icsCode": "1000231", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUTMP", "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": "940GZZLUTMP", "lineIdentifier": ["circle", "district"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["circle", "district"]}], "status": true, "id": "9400ZZLUTMP1", "commonName": "Temple 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": "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": "Facility", "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": "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": "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": "Temple Station,London Underground Ltd.,Victoria Embankment,London,WC2R 2PH"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}], "children": [], "lat": 51.510861, "lon": -0.114756}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUTMP2", "modes": ["tube"], "icsCode": "1000231", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUTMP", "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": "940GZZLUTMP", "lineIdentifier": ["district", "circle"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["district", "circle"]}], "status": true, "id": "9400ZZLUTMP2", "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": "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": "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": "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": "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": "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"}], "children": [], "lat": 51.510877, "lon": -0.114669}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUTNG", "modes": ["tube"], "icsCode": "1000240", "stopType": "NaptanMetroAccessArea", "stationNaptan": "940GZZLUTNG", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "9400ZZLUTNG", "commonName": "Turnham Green Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$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": "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": "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": "Bridge", "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": "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": "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": "4"}, {"$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": "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.495148, "lon": -0.254555}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUTNG1", "modes": ["tube"], "icsCode": "1000240", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUTNG", "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": "940GZZLUTNG", "lineIdentifier": ["piccadilly"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["piccadilly"]}], "status": true, "id": "9400ZZLUTNG1", "commonName": "Turnham 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": "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": "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": "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": "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": "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": "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": "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": "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.495275, "lon": -0.254622}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUTNG2", "modes": ["tube"], "icsCode": "1000240", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUTNG", "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": "940GZZLUTNG", "lineIdentifier": ["piccadilly", "district"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["piccadilly", "district"]}], "status": true, "id": "9400ZZLUTNG2", "commonName": "Turnham Green 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": "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": "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": "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": "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": "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": "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": "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.495265, "lon": -0.25455}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUTNG3", "modes": ["tube"], "icsCode": "1000240", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUTNG", "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": "940GZZLUTNG", "lineIdentifier": ["district"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["district"]}], "status": true, "id": "9400ZZLUTNG3", "commonName": "Turnham 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": "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": "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": "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": "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": "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": "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": "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": "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": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}], "children": [], "lat": 51.495263, "lon": -0.254464}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUTNG4", "modes": ["tube"], "icsCode": "1000240", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUTNG", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "9400ZZLUTNG4", "commonName": "Turnham 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": "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": "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": "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": "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": "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": "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": "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": "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.495262, "lon": -0.254377}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUTPN", "modes": ["tube"], "icsCode": "1000241", "stopType": "NaptanMetroAccessArea", "stationNaptan": "940GZZLUTPN", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "9400ZZLUTPN", "commonName": "Turnpike Lane 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": "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": "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": "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": "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": "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": "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": "Other Facilities", "sourceSystemKey": "StaticObjects", "value": "post office style queuing for tickets, subway to street, routeways platform to ticket hall."}], "children": [], "lat": 51.590272, "lon": -0.102953}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUTPN1", "modes": ["tube"], "icsCode": "1000241", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUTPN", "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": "940GZZLUTPN", "lineIdentifier": ["piccadilly"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["piccadilly"]}], "status": true, "id": "9400ZZLUTPN1", "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": "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": "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": "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, 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": "Turnpike Lane Station,London Underground Ltd.,Westbury Avenue,London,N15 3NX"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.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": "5"}], "children": [], "lat": 51.590046, "lon": -0.10289}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUTPN2", "modes": ["tube"], "icsCode": "1000241", "stopType": "NaptanRailAccessArea", "stationNaptan": "940GZZLUTPN", "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": "940GZZLUTPN", "lineIdentifier": ["piccadilly"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["piccadilly"]}], "status": true, "id": "9400ZZLUTPN2", "commonName": "Turnpike Lane 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": "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": "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": "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": "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": "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": "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": "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": "Bridge", "sourceSystemKey": "StaticObjects", "value": "no"}], "children": [], "lat": 51.590046, "lon": -0.102876}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUTWH", "modes": ["tube"], "icsCode": "1000238", "stopType": "NaptanMetroAccessArea", "stationNaptan": "940GZZLUTWH", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "9400ZZLUTWH", "commonName": "Tower 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": "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": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$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": "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": "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": "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": "15"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}], "children": [], "lat": 51.509971, "lon": -0.076546}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUTWH1", "modes": ["tube"], "icsCode": "1000238", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUTWH", "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": "940GZZLUTWH", "lineIdentifier": ["circle", "district"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["circle", "district"]}], "status": true, "id": "9400ZZLUTWH1", "commonName": "Tower Hill Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$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": "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": "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": "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": "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": "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"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "1"}], "children": [], "lat": 51.509663, "lon": -0.076991}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUTWH2", "modes": ["tube"], "icsCode": "1000238", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUTWH", "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": "940GZZLUTWH", "lineIdentifier": ["district", "circle"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["district", "circle"]}], "status": true, "id": "9400ZZLUTWH2", "commonName": "Tower Hill Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$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": "Gates", "sourceSystemKey": "StaticObjects", "value": "15"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.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": "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": "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": "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": "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": "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.50962, "lon": -0.077108}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUTWH3", "indicator": "westbound", "modes": ["tube"], "icsCode": "1000238", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUTWH", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "9400ZZLUTWH3", "commonName": "Tower Hill 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": "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": "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": "Help Points", "sourceSystemKey": "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": "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": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "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": "Tower Hill Station,London Underground Ltd.,Trinity Square,London,EC3N 4DJ"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "15"}], "children": [], "lat": 51.509707, "lon": -0.076917}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUUPB", "modes": ["tube"], "icsCode": "1000243", "stopType": "NaptanMetroAccessArea", "stationNaptan": "940GZZLUUPB", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "9400ZZLUUPB", "commonName": "Upminster Bridge 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 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": "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": "canopies over platform."}, {"$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": "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": "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": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "0"}], "children": [], "lat": 51.55856, "lon": 0.235809}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUUPB1", "modes": ["tube"], "icsCode": "1000243", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUUPB", "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": "940GZZLUUPB", "lineIdentifier": ["district"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["district"]}], "status": true, "id": "9400ZZLUUPB1", "commonName": "Upminster Bridge 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": "Help Points", "sourceSystemKey": "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": "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": "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": "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": "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": "Other Facilities", "sourceSystemKey": "StaticObjects", "value": "canopies over platform."}], "children": [], "lat": 51.558254, "lon": 0.234857}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUUPB2", "modes": ["tube"], "icsCode": "1000243", "stopType": "NaptanRailAccessArea", "stationNaptan": "940GZZLUUPB", "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": "940GZZLUUPB", "lineIdentifier": ["district"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["district"]}], "status": true, "id": "9400ZZLUUPB2", "commonName": "Upminster Bridge", "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": "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": "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": "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": "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": "0"}, {"$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": "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"}], "children": [], "lat": 51.558263, "lon": 0.234872}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUUPK", "modes": ["tube"], "icsCode": "1000245", "stopType": "NaptanMetroAccessArea", "stationNaptan": "940GZZLUUPK", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "9400ZZLUUPK", "commonName": "Upton Park Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$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": "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": "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": "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": "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": "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"}], "children": [], "lat": 51.53534, "lon": 0.035263}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUUPK1", "modes": ["tube"], "icsCode": "1000245", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUUPK", "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": "940GZZLUUPK", "lineIdentifier": ["district", "hammersmith-city"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["district", "hammersmith-city"]}], "status": true, "id": "9400ZZLUUPK1", "commonName": "Upton 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": "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": "Other Facilities", "sourceSystemKey": "StaticObjects", "value": "canopies over platform."}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.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": "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": "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": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$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"}], "children": [], "lat": 51.53516, "lon": 0.034274}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUUPK2", "modes": ["tube"], "icsCode": "1000245", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUUPK", "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": "940GZZLUUPK", "lineIdentifier": ["district", "hammersmith-city"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["district", "hammersmith-city"]}], "status": true, "id": "9400ZZLUUPK2", "commonName": "Upton Park 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": "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": "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": "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": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.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": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}], "children": [], "lat": 51.53516, "lon": 0.034289}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUUPM", "modes": ["tube"], "icsCode": "1000242", "stopType": "NaptanMetroAccessArea", "stationNaptan": "940GZZLUUPM", "hubNaptanCode": "HUBUPM", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "9400ZZLUUPM", "commonName": "Upminster 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": "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": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$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": "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": "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": "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": "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": "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"}], "children": [], "lat": 51.559063, "lon": 0.250882}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUUPM1", "modes": ["tube"], "icsCode": "1000242", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUUPM", "hubNaptanCode": "HUBUPM", "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": "940GZZLUUPM", "lineIdentifier": ["district"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["district"]}], "status": true, "id": "9400ZZLUUPM1", "commonName": "Upminster 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": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$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": "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": "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": "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": "Opening Time", "key": "MonFriTo", "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": "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": "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": "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": "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": "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": "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"}], "children": [], "lat": 51.559335, "lon": 0.25127}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUUPM2", "modes": ["tube"], "icsCode": "1000242", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUUPM", "hubNaptanCode": "HUBUPM", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "9400ZZLUUPM2", "commonName": "Upminster Underground 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": "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": "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": "Opening Time", "key": "MonFriTo", "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": "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": "Gates", "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": "Refreshment facilities"}, {"$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": "Facility", "key": "Help 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": "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": "22:00"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Opening Time", "key": "SunFrom", "sourceSystemKey": "StaticObjects", "value": "06:45"}], "children": [], "lat": 51.559333, "lon": 0.251357}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUUPY", "modes": ["tube"], "icsCode": "1000244", "stopType": "NaptanMetroAccessArea", "stationNaptan": "940GZZLUUPY", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "9400ZZLUUPY", "commonName": "Upney 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": "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": "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": "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": "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": "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": "Opening Time", "key": "MonFriTo", "sourceSystemKey": "StaticObjects", "value": "09:45"}, {"$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": "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": "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": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "yes"}], "children": [], "lat": 51.538372, "lon": 0.10153}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUUPY1", "modes": ["tube"], "icsCode": "1000244", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUUPY", "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": "940GZZLUUPY", "lineIdentifier": ["district"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["district"]}], "status": true, "id": "9400ZZLUUPY1", "commonName": "Upney 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": "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": "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": "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": "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": "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": "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": "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": "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": "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"}], "children": [], "lat": 51.538371, "lon": 0.100045}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUUPY2", "modes": ["tube"], "icsCode": "1000244", "stopType": "NaptanRailAccessArea", "stationNaptan": "940GZZLUUPY", "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": "940GZZLUUPY", "lineIdentifier": ["district"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["district"]}], "status": true, "id": "9400ZZLUUPY2", "commonName": "Upney Station", "placeType": "StopPoint", "additionalProperties": [{"$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": "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": "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": "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": "Opening Time", "key": "SatFrom", "sourceSystemKey": "StaticObjects", "value": "13:30"}, {"$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": "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": "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": "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": "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"}], "children": [], "lat": 51.538371, "lon": 0.10003}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUUXB", "modes": ["tube"], "icsCode": "1000246", "stopType": "NaptanMetroAccessArea", "stationNaptan": "940GZZLUUXB", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "9400ZZLUUXB", "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": "Help Points", "sourceSystemKey": "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": "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": "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": "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": "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": "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": "Boarding Ramps", "sourceSystemKey": "StaticObjects", "value": "yes Metropolitan only"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, 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": "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": "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.546565, "lon": -0.477949}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUUXB1", "modes": ["tube"], "icsCode": "1000246", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUUXB", "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": "940GZZLUUXB", "lineIdentifier": ["piccadilly", "metropolitan"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["piccadilly", "metropolitan"]}], "status": true, "id": "9400ZZLUUXB1", "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": "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": "Uxbridge Station,London Underground Ltd.,High St,Uxbridge,Middx,UB8 1JZ"}, {"$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": "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": "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"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.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": "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": "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": "no"}], "children": [], "lat": 51.546807, "lon": -0.477191}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUUXB2", "modes": ["tube"], "icsCode": "1000246", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUUXB", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "9400ZZLUUXB2", "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": "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": "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": "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": "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": "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": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.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": "Payphones", "sourceSystemKey": "StaticObjects", "value": "4"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "yes"}], "children": [], "lat": 51.546833, "lon": -0.477132}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUVIC", "modes": ["tube"], "icsCode": "1000248", "stopType": "NaptanMetroAccessArea", "stationNaptan": "940GZZLUVIC", "hubNaptanCode": "HUBVIC", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "9400ZZLUVIC", "commonName": "Victoria 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": "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": "Boarding Ramps", "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": "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": "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": "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": "Help Points", "sourceSystemKey": "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, taxi ranks outside station, 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": "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"}], "children": [], "lat": 51.496359, "lon": -0.143102}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUVIC1", "modes": ["tube"], "icsCode": "1000248", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUVIC", "hubNaptanCode": "HUBVIC", "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": "940GZZLUVIC", "lineIdentifier": ["circle", "district"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["circle", "district"]}], "status": true, "id": "9400ZZLUVIC1", "commonName": "Victoria 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": "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": "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": "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"}, {"$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": "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": "Help 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": "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": "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": "Payphones", "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"}], "children": [], "lat": 51.49645, "lon": -0.144899}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUVIC2", "modes": ["tube"], "icsCode": "1000248", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUVIC", "hubNaptanCode": "HUBVIC", "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": "940GZZLUVIC", "lineIdentifier": ["victoria"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["victoria"]}], "status": true, "id": "9400ZZLUVIC2", "commonName": "Victoria 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": "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": "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": "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": "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": "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": "Toilets", "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": "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"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}], "children": [], "lat": 51.49712, "lon": -0.14346}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUVIC3", "modes": ["tube"], "icsCode": "1000248", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUVIC", "hubNaptanCode": "HUBVIC", "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": "940GZZLUVIC", "lineIdentifier": ["victoria"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["victoria"]}], "status": true, "id": "9400ZZLUVIC3", "commonName": "Victoria 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": "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": "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": "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": "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": "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": "Boarding Ramps", "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": "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": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Victoria Underground Station,London Underground Ltd.,Victoria St,London,SW1E 5ND"}], "children": [], "lat": 51.497031, "lon": -0.143536}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUVIC4", "modes": ["tube"], "icsCode": "1000248", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUVIC", "hubNaptanCode": "HUBVIC", "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": "940GZZLUVIC", "lineIdentifier": ["district", "circle"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["district", "circle"]}], "status": true, "id": "9400ZZLUVIC4", "commonName": "Victoria 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": "Facility", "key": "Help Points", "sourceSystemKey": "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": "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"}, {"$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": "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, 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": "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": "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": "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"}], "children": [], "lat": 51.496969, "lon": -0.143596}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUVXL", "modes": ["tube"], "icsCode": "1000247", "stopType": "NaptanMetroAccessArea", "stationNaptan": "940GZZLUVXL", "hubNaptanCode": "HUBVXH", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "9400ZZLUVXL", "commonName": "Vauxhall 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": "Escalators", "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": "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": "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": "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": "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": "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": "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": "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"}], "children": [], "lat": 51.485743, "lon": -0.124204}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUVXL1", "modes": ["tube"], "icsCode": "1000247", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUVXL", "hubNaptanCode": "HUBVXH", "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": "940GZZLUVXL", "lineIdentifier": ["victoria"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["victoria"]}], "status": true, "id": "9400ZZLUVXL1", "commonName": "Vauxhall Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$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": "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": "Bridge", "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": "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": "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": "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": "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": "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": "Help Points", "sourceSystemKey": "StaticObjects", "value": "4 on platforms, 0 in ticket halls, 1 elsewhere"}], "children": [], "lat": 51.486216, "lon": -0.12453}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUVXL2", "modes": ["tube"], "icsCode": "1000247", "stopType": "NaptanRailAccessArea", "stationNaptan": "940GZZLUVXL", "hubNaptanCode": "HUBVXH", "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": "940GZZLUVXL", "lineIdentifier": ["victoria"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["victoria"]}], "status": true, "id": "9400ZZLUVXL2", "commonName": "Vauxhall", "placeType": "StopPoint", "additionalProperties": [{"$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": "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": "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, 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": "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": "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": "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": "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": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}], "children": [], "lat": 51.486216, "lon": -0.124516}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUWAF", "modes": ["tube"], "icsCode": "1000255", "stopType": "NaptanMetroAccessArea", "stationNaptan": "940GZZLUWAF", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "9400ZZLUWAF", "commonName": "Watford 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": "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": "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": "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": "7 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": "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": "Car park", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$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": "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": "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.657446, "lon": -0.417377}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUWAF1", "modes": ["tube"], "icsCode": "1000255", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUWAF", "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": "940GZZLUWAF", "lineIdentifier": ["metropolitan"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["metropolitan"]}], "status": true, "id": "9400ZZLUWAF1", "commonName": "Watford 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": "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": "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": "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": "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": "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": "7 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": "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": "Euro Cash Machines", "sourceSystemKey": "StaticObjects", "value": "yes"}], "children": [], "lat": 51.657327, "lon": -0.41861}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUWBN", "modes": ["tube"], "icsCode": "1000260", "stopType": "NaptanMetroAccessArea", "stationNaptan": "940GZZLUWBN", "hubNaptanCode": "HUBWBP", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "9400ZZLUWBN", "commonName": "West Brompton 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": "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"}, {"$type": "Tfl.Api.Presentation.Entities.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)."}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.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": "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": "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": "Gates", "sourceSystemKey": "StaticObjects", "value": "3"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "2"}], "children": [], "lat": 51.487268, "lon": -0.195599}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUWBN1", "modes": ["tube"], "icsCode": "1000260", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUWBN", "hubNaptanCode": "HUBWBP", "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": "940GZZLUWBN", "lineIdentifier": ["district"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["district"]}], "status": true, "id": "9400ZZLUWBN1", "commonName": "West Brompton 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": "Help Points", "sourceSystemKey": "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": "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": "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": "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": "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": "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"}], "children": [], "lat": 51.486962, "lon": -0.195006}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUWBN2", "modes": ["tube"], "icsCode": "1000260", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUWBN", "hubNaptanCode": "HUBWBP", "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": "940GZZLUWBN", "lineIdentifier": ["district"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["district"]}], "status": true, "id": "9400ZZLUWBN2", "commonName": "West Brompton 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": "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": "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": "Facility", "key": "Photo 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": "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": "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": "Car park", "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.486916, "lon": -0.194921}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUWCY", "modes": ["tube"], "icsCode": "1000269", "stopType": "NaptanMetroAccessArea", "stationNaptan": "940GZZLUWCY", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "9400ZZLUWCY", "commonName": "White City 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": "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": "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": "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": "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": "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": "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.511959, "lon": -0.224297}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUWCY1", "modes": ["tube"], "icsCode": "1000269", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUWCY", "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": "940GZZLUWCY", "lineIdentifier": ["central"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["central"]}], "status": true, "id": "9400ZZLUWCY1", "commonName": "White City 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": "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": "White City Station,London Underground Ltd.,Wood Lane,London,W12 7RH"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.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": "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": "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": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "2"}], "children": [], "lat": 51.511991, "lon": -0.224022}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUWCY2", "modes": ["tube"], "icsCode": "1000269", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUWCY", "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": "940GZZLUWCY", "lineIdentifier": ["central"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["central"]}], "status": true, "id": "9400ZZLUWCY2", "commonName": "White City 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": "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": "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": "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": "0"}, {"$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": "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": "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": "Bridge", "sourceSystemKey": "StaticObjects", "value": "no"}], "children": [], "lat": 51.511967, "lon": -0.224239}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUWFN", "modes": ["tube"], "icsCode": "1000261", "stopType": "NaptanMetroAccessArea", "stationNaptan": "940GZZLUWFN", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "9400ZZLUWFN", "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": "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 Finchley Station,London Underground Ltd.,Nether Street,London,N3 1NT"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.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": "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": "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)"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.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": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "0 on platforms, 0 in ticket halls, 0 elsewhere"}], "children": [], "lat": 51.609426, "lon": -0.188362}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUWFN1", "modes": ["tube"], "icsCode": "1000261", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUWFN", "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": "940GZZLUWFN", "lineIdentifier": ["northern"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["northern"]}], "status": true, "id": "9400ZZLUWFN1", "commonName": "West Finchley 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": "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": "Boarding Ramps", "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": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "4"}, {"$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": "Help Points", "sourceSystemKey": "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": "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"}], "children": [], "lat": 51.60941, "lon": -0.188449}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUWFN2", "modes": ["tube"], "icsCode": "1000261", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUWFN", "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": "940GZZLUWFN", "lineIdentifier": ["northern"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["northern"]}], "status": true, "id": "9400ZZLUWFN2", "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": "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": "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": "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": "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": "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"}], "children": [], "lat": 51.609356, "lon": -0.188466}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUWHM", "modes": ["tube"], "icsCode": "1000262", "stopType": "NaptanMetroAccessArea", "stationNaptan": "940GZZLUWHM", "hubNaptanCode": "HUBWEH", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "9400ZZLUWHM", "commonName": "West Ham 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": "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": "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": "2/3"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "West Ham Underground Station,London Underground Ltd.,Manor Rd,London,E15 3BN"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.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": "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": "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": "Photo 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.528136, "lon": 0.005055}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUWHM1", "indicator": "Platform 1", "stopLetter": "1", "modes": ["tube"], "icsCode": "1000262", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUWHM", "hubNaptanCode": "HUBWEH", "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": "940GZZLUWHM", "lineIdentifier": ["hammersmith-city", "district"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["hammersmith-city", "district"]}], "status": true, "id": "9400ZZLUWHM1", "commonName": "West Ham Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "West Ham Underground Station,London Underground Ltd.,Manor Rd,London,E15 3BN"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.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": "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": "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": "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": "Photo 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": "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": "Escalators", "sourceSystemKey": "StaticObjects", "value": "6"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "2"}], "children": [], "lat": 51.528558, "lon": 0.005593}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUWHM2", "indicator": "Platform 2", "stopLetter": "2", "modes": ["tube"], "icsCode": "1000262", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUWHM", "hubNaptanCode": "HUBWEH", "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": "940GZZLUWHM", "lineIdentifier": ["jubilee"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["jubilee"]}], "status": true, "id": "9400ZZLUWHM2", "commonName": "West Ham 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": "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": "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": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "West Ham Underground Station,London Underground Ltd.,Manor Rd,London,E15 3BN"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.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": "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": "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": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "0"}], "children": [], "lat": 51.528648, "lon": 0.005597}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUWHM3", "indicator": "Platform 5", "stopLetter": "5", "modes": ["tube"], "icsCode": "1000262", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUWHM", "hubNaptanCode": "HUBWEH", "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": "940GZZLUWHM", "lineIdentifier": ["district", "hammersmith-city"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["district", "hammersmith-city"]}], "status": true, "id": "9400ZZLUWHM3", "commonName": "West Ham 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": "Facility", "key": "Toilets", "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": "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": "Photo 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": "West Ham Underground Station,London Underground Ltd.,Manor Rd,London,E15 3BN"}, {"$type": "Tfl.Api.Presentation.Entities.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/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": "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.527511, "lon": 0.004264}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUWHM4", "indicator": "Platform 6", "stopLetter": "6", "modes": ["tube"], "icsCode": "1000262", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUWHM", "hubNaptanCode": "HUBWEH", "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": "940GZZLUWHM", "lineIdentifier": ["jubilee"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["jubilee"]}], "status": true, "id": "9400ZZLUWHM4", "commonName": "West Ham 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": "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": "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": "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": "Boarding Ramps", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "West Ham Underground Station,London Underground Ltd.,Manor Rd,London,E15 3BN"}, {"$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": "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": "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"}], "children": [], "lat": 51.527514, "lon": 0.00412}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUWHP", "modes": ["tube"], "icsCode": "1000263", "stopType": "NaptanMetroAccessArea", "stationNaptan": "940GZZLUWHP", "hubNaptanCode": "HUBWHD", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "9400ZZLUWHP", "commonName": "West Hampstead 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": "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": "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": "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": "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": "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": "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.546638, "lon": -0.191059}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUWHP1", "modes": ["tube"], "icsCode": "1000263", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUWHP", "hubNaptanCode": "HUBWHD", "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": "940GZZLUWHP", "lineIdentifier": ["jubilee"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["jubilee"]}], "status": true, "id": "9400ZZLUWHP1", "commonName": "West Hampstead 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": "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": "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": "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": "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": "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": "Escalators", "sourceSystemKey": "StaticObjects", "value": "0"}], "children": [], "lat": 51.5468, "lon": -0.190475}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUWHP2", "modes": ["tube"], "icsCode": "1000263", "stopType": "NaptanRailAccessArea", "stationNaptan": "940GZZLUWHP", "hubNaptanCode": "HUBWHD", "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": "940GZZLUWHP", "lineIdentifier": ["jubilee"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["jubilee"]}], "status": true, "id": "9400ZZLUWHP2", "commonName": "West Hampstead 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": "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": "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": "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": "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": "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": "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": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$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"}], "children": [], "lat": 51.546809, "lon": -0.190475}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUWHW", "modes": ["tube"], "icsCode": "1000264", "stopType": "NaptanMetroAccessArea", "stationNaptan": "940GZZLUWHW", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "9400ZZLUWHW", "commonName": "West Harrow Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$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": "Gates", "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": "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": "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": "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": "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"}], "children": [], "lat": 51.57971, "lon": -0.3534}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUWHW1", "modes": ["tube"], "icsCode": "1000264", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUWHW", "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": "940GZZLUWHW", "lineIdentifier": ["metropolitan"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["metropolitan"]}], "status": true, "id": "9400ZZLUWHW1", "commonName": "West Harrow Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$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": "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": "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": "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": "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": "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": "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"}], "children": [], "lat": 51.579811, "lon": -0.353497}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUWHW2", "modes": ["tube"], "icsCode": "1000264", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUWHW", "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": "940GZZLUWHW", "lineIdentifier": ["metropolitan"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["metropolitan"]}], "status": true, "id": "9400ZZLUWHW2", "commonName": "West Harrow 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": "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": "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": "Payphones", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$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": "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": "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.579767, "lon": -0.353585}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUWIG", "modes": ["tube"], "icsCode": "1000270", "stopType": "NaptanMetroAccessArea", "stationNaptan": "940GZZLUWIG", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "9400ZZLUWIG", "commonName": "Willesden Green 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": "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": "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": "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": "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": "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": "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": "Help Points", "sourceSystemKey": "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": "0"}], "children": [], "lat": 51.549146, "lon": -0.221537}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUWIG1", "modes": ["tube"], "icsCode": "1000270", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUWIG", "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": "940GZZLUWIG", "lineIdentifier": ["jubilee"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["jubilee"]}], "status": true, "id": "9400ZZLUWIG1", "commonName": "Willesden Green 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": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$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": "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": "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": "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": "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": "2+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": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}], "children": [], "lat": 51.549348, "lon": -0.221846}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUWIG2", "modes": ["tube"], "icsCode": "1000270", "stopType": "NaptanRailAccessArea", "stationNaptan": "940GZZLUWIG", "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": "940GZZLUWIG", "lineIdentifier": ["jubilee"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["jubilee"]}], "status": true, "id": "9400ZZLUWIG2", "commonName": "Willesden Green 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": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$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": "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": "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": "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": "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": "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.549348, "lon": -0.221846}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUWIM", "modes": ["tube"], "icsCode": "1000272", "stopType": "NaptanMetroAccessArea", "stationNaptan": "940GZZLUWIM", "hubNaptanCode": "HUBWIM", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "9400ZZLUWIM", "commonName": "Wimbledon 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": "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": "Wimbledon,London Underground Ltd.,The Broadway,London,SW19 7NL"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.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": "Facility", "key": "Help Points", "sourceSystemKey": "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": "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": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.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": "Gates", "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.421207, "lon": -0.206573}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUWIM1", "modes": ["tube"], "icsCode": "1000272", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUWIM", "hubNaptanCode": "HUBWIM", "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": "940GZZLUWIM", "lineIdentifier": ["district"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["district"]}], "status": true, "id": "9400ZZLUWIM1", "commonName": "Wimbledon 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": "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": "Toilets", "sourceSystemKey": "StaticObjects", "value": "yes (male, female)"}, {"$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": "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": "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": "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": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Wimbledon,London Underground Ltd.,The Broadway,London,SW19 7NL"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "0"}], "children": [], "lat": 51.421342, "lon": -0.206625}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUWIP", "modes": ["tube"], "icsCode": "1000273", "stopType": "NaptanMetroAccessArea", "stationNaptan": "940GZZLUWIP", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "9400ZZLUWIP", "commonName": "Wimbledon 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": "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": "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": "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": "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": "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": "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"}], "children": [], "lat": 51.434573, "lon": -0.199719}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUWIP1", "modes": ["tube"], "icsCode": "1000273", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUWIP", "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": "940GZZLUWIP", "lineIdentifier": ["district"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["district"]}], "status": true, "id": "9400ZZLUWIP1", "commonName": "Wimbledon Park 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": "no"}, {"$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": "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": "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": "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.434323, "lon": -0.199311}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUWJN", "modes": ["tube"], "icsCode": "1000271", "stopType": "NaptanMetroAccessArea", "stationNaptan": "940GZZLUWJN", "hubNaptanCode": "HUBWIJ", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "9400ZZLUWJN", "commonName": "Willesden Junction 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": "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": "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": "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": "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": "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": "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": "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": "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"}], "children": [], "lat": 51.532259, "lon": -0.244283}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUWJN1", "modes": ["tube"], "icsCode": "1000271", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUWJN", "hubNaptanCode": "HUBWIJ", "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": "940GZZLUWJN", "lineIdentifier": ["bakerloo"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["bakerloo"]}], "status": true, "id": "9400ZZLUWJN1", "commonName": "Willesden Junction 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": "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": "Willesden Junction,London Overground Ltd.,Station Approach,Harlesden,NW10 4UY"}, {"$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": "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": "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": "Lifts", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$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": "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": "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": "18: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": "Car park", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$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": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "no"}], "children": [], "lat": 51.532496, "lon": -0.24449}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUWJN2", "modes": ["tube"], "icsCode": "1000271", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUWJN", "hubNaptanCode": "HUBWIJ", "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": "940GZZLUWJN", "lineIdentifier": ["bakerloo"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["bakerloo"]}], "status": true, "id": "9400ZZLUWJN2", "commonName": "Willesden Junction 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": "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": "Opening Time", "key": "MonFriFrom", "sourceSystemKey": "StaticObjects", "value": "06: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": "Opening Time", "key": "SunFrom", "sourceSystemKey": "StaticObjects", "value": "09:15"}, {"$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": "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": "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": "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": "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": "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": "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": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}], "children": [], "lat": 51.532398, "lon": -0.244537}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUWJN3", "modes": ["tube"], "icsCode": "1000271", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUWJN", "hubNaptanCode": "HUBWIJ", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "9400ZZLUWJN3", "commonName": "Willesden Junction 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": "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": "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": "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": "Help Points", "sourceSystemKey": "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": "09:15"}, {"$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": "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 London Overground only"}, {"$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": "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": "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": "Opening Time", "key": "MonFriFrom", "sourceSystemKey": "StaticObjects", "value": "06:30"}], "children": [], "lat": 51.532325, "lon": -0.244468}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUWKA", "modes": ["tube"], "icsCode": "1000253", "stopType": "NaptanMetroAccessArea", "stationNaptan": "940GZZLUWKA", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "9400ZZLUWKA", "commonName": "Warwick Avenue 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": "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": "Waiting Room", "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": "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": "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": "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": "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.523263, "lon": -0.183783}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUWKA1", "modes": ["tube"], "icsCode": "1000253", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUWKA", "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": "940GZZLUWKA", "lineIdentifier": ["bakerloo"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["bakerloo"]}], "status": true, "id": "9400ZZLUWKA1", "commonName": "Warwick Avenue Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$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": "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": "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": "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": "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": "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": "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"}], "children": [], "lat": 51.522973, "lon": -0.183103}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUWKA2", "modes": ["tube"], "icsCode": "1000253", "stopType": "NaptanRailAccessArea", "stationNaptan": "940GZZLUWKA", "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": "940GZZLUWKA", "lineIdentifier": ["bakerloo"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["bakerloo"]}], "status": true, "id": "9400ZZLUWKA2", "commonName": "Warwick Avenue", "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": "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": "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": "Bridge", "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": "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": "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": "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": "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.522973, "lon": -0.183103}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUWKN", "modes": ["tube"], "icsCode": "1000265", "stopType": "NaptanMetroAccessArea", "stationNaptan": "940GZZLUWKN", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "9400ZZLUWKN", "commonName": "West Kensington 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": "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": "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": "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": "Help 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": "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, post office style queuing for tickets, routeways platform to ticket hall."}], "children": [], "lat": 51.490459, "lon": -0.206636}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUWKN1", "modes": ["tube"], "icsCode": "1000265", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUWKN", "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": "940GZZLUWKN", "lineIdentifier": ["district"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["district"]}], "status": true, "id": "9400ZZLUWKN1", "commonName": "West Kensington 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": "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": "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": "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": "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": "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": "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": "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"}], "children": [], "lat": 51.49083, "lon": -0.20619}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUWKN2", "modes": ["tube"], "icsCode": "1000265", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUWKN", "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": "940GZZLUWKN", "lineIdentifier": ["district"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["district"]}], "status": true, "id": "9400ZZLUWKN2", "commonName": "West Kensington 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": "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": "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": "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": "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": "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": "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": "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.490846, "lon": -0.206088}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUWLA", "modes": ["tube"], "icsCode": "1000278", "stopType": "NaptanMetroAccessArea", "stationNaptan": "940GZZLUWLA", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "9400ZZLUWLA", "commonName": "Wood Lane 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": "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": "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": "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": "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": "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": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.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": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "2"}], "children": [], "lat": 51.509669, "lon": -0.22453}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUWLA1", "modes": ["tube"], "icsCode": "1000278", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUWLA", "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": "940GZZLUWLA", "lineIdentifier": ["circle", "hammersmith-city"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["circle", "hammersmith-city"]}], "status": true, "id": "9400ZZLUWLA1", "commonName": "Wood Lane 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": "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": "Car park", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$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": "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": "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": "Toilets", "sourceSystemKey": "StaticObjects", "value": "no"}], "children": [], "lat": 51.509658, "lon": -0.224401}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUWLA2", "modes": ["tube"], "icsCode": "1000278", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUWLA", "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": "940GZZLUWLA", "lineIdentifier": ["circle", "hammersmith-city"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["circle", "hammersmith-city"]}], "status": true, "id": "9400ZZLUWLA2", "commonName": "Wood 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": "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": "Help Points", "sourceSystemKey": "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": "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": "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": "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": "Payphones", "sourceSystemKey": "StaticObjects", "value": "0"}], "children": [], "lat": 51.509639, "lon": -0.224329}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUWLO", "modes": ["tube"], "icsCode": "1000254", "stopType": "NaptanMetroAccessArea", "stationNaptan": "940GZZLUWLO", "hubNaptanCode": "HUBWAT", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "9400ZZLUWLO", "commonName": "Waterloo 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": "Escalators", "sourceSystemKey": "StaticObjects", "value": "23"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.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": "46"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo 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": "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": "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": "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": "Help 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": "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": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "3"}], "children": [], "lat": 51.503299, "lon": -0.11478}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUWLO1", "modes": ["tube"], "icsCode": "1000254", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUWLO", "hubNaptanCode": "HUBWAT", "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": "940GZZLUWLO", "lineIdentifier": ["bakerloo"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["bakerloo"]}], "status": true, "id": "9400ZZLUWLO1", "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": "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": "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": "Help Points", "sourceSystemKey": "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": "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": "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": "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": "Ticket Halls", "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": "yes"}], "children": [], "lat": 51.503097, "lon": -0.11512}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUWLO2", "modes": ["tube"], "icsCode": "1000254", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUWLO", "hubNaptanCode": "HUBWAT", "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": "940GZZLUWLO", "lineIdentifier": ["bakerloo"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["bakerloo"]}], "status": true, "id": "9400ZZLUWLO2", "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": "Photo 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": "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": "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": "Payphones", "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": "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": "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": "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": "Car park", "sourceSystemKey": "StaticObjects", "value": "no"}], "children": [], "lat": 51.503052, "lon": -0.115093}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUWLO3", "modes": ["tube"], "icsCode": "1000254", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUWLO", "hubNaptanCode": "HUBWAT", "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": "940GZZLUWLO", "lineIdentifier": ["northern"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["northern"]}], "status": true, "id": "9400ZZLUWLO3", "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": "Facility", "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": "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": "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": "Help 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": "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": "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": "Escalators", "sourceSystemKey": "StaticObjects", "value": "23"}, {"$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": "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": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}], "children": [], "lat": 51.503189, "lon": -0.113574}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUWLO4", "modes": ["tube"], "icsCode": "1000254", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUWLO", "hubNaptanCode": "HUBWAT", "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": "940GZZLUWLO", "lineIdentifier": ["jubilee"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["jubilee"]}], "status": true, "id": "9400ZZLUWLO4", "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": "Photo 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": "Waterloo Underground Station,London Underground Ltd.,York Rd,London,SE1 7ND"}, {"$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": "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": "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": "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": "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": "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.503333, "lon": -0.113021}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUWLO5", "modes": ["tube"], "icsCode": "1000254", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUWLO", "hubNaptanCode": "HUBWAT", "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": "940GZZLUWLO", "lineIdentifier": ["waterloo-city"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["waterloo-city"]}], "status": true, "id": "9400ZZLUWLO5", "commonName": "Waterloo 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": "Payphones", "sourceSystemKey": "StaticObjects", "value": "6"}, {"$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": "Gates", "sourceSystemKey": "StaticObjects", "value": "46"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo 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": "Waterloo Underground Station,London Underground Ltd.,York Rd,London,SE1 7ND"}, {"$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": "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": "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, post office style queuing for tickets, routeways platform to ticket hall."}], "children": [], "lat": 51.502683, "lon": -0.112875}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUWLO6", "modes": ["tube"], "icsCode": "1000254", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUWLO", "hubNaptanCode": "HUBWAT", "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": "940GZZLUWLO", "lineIdentifier": ["waterloo-city"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["waterloo-city"]}], "status": true, "id": "9400ZZLUWLO6", "commonName": "Waterloo Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$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": "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": "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": "Payphones", "sourceSystemKey": "StaticObjects", "value": "6"}, {"$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": "Help Points", "sourceSystemKey": "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": "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": "23"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "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.502738, "lon": -0.11293}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUWOF", "modes": ["tube"], "icsCode": "1000274", "stopType": "NaptanMetroAccessArea", "stationNaptan": "940GZZLUWOF", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "9400ZZLUWOF", "commonName": "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, subway to street."}, {"$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": "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": "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": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$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": "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": "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": "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": "Gates", "sourceSystemKey": "StaticObjects", "value": "6"}], "children": [], "lat": 51.606899, "lon": 0.03397}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUWOF1", "modes": ["tube"], "icsCode": "1000274", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUWOF", "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": "940GZZLUWOF", "lineIdentifier": ["central"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["central"]}], "status": true, "id": "9400ZZLUWOF1", "commonName": "Woodford 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": "post office style queuing for tickets, subway to street."}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, 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": "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": "Payphones", "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": "Help Points", "sourceSystemKey": "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": "Boarding Ramps", "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": "Facility", "key": "Lifts", "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": "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": "Toilets", "sourceSystemKey": "StaticObjects", "value": "yes (male, female)"}], "children": [], "lat": 51.607181, "lon": 0.033781}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUWOF2", "modes": ["tube"], "icsCode": "1000274", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUWOF", "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": "940GZZLUWOF", "lineIdentifier": ["central"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["central"]}], "status": true, "id": "9400ZZLUWOF2", "commonName": "Woodford 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": "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": "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": "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": "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": "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": "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": "Help Points", "sourceSystemKey": "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": "Woodford Station,London Underground Ltd.,Snakes Lane,Woodford Green,Essex"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.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"}], "children": [], "lat": 51.607128, "lon": 0.03375}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUWOG", "modes": ["tube"], "icsCode": "1000275", "stopType": "NaptanMetroAccessArea", "stationNaptan": "940GZZLUWOG", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "9400ZZLUWOG", "commonName": "Wood Green 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": "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": "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": "Lifts", "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": "Escalators", "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": "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": "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": "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"}], "children": [], "lat": 51.597479, "lon": -0.109886}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUWOG1", "modes": ["tube"], "icsCode": "1000275", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUWOG", "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": "940GZZLUWOG", "lineIdentifier": ["piccadilly"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["piccadilly"]}], "status": true, "id": "9400ZZLUWOG1", "commonName": "Wood Green Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$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": "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": "Help Points", "sourceSystemKey": "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"}, {"$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": "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": "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": "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": "Gates", "sourceSystemKey": "StaticObjects", "value": "7"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "no"}], "children": [], "lat": 51.597437, "lon": -0.11009}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUWOG2", "modes": ["tube"], "icsCode": "1000275", "stopType": "NaptanRailAccessArea", "stationNaptan": "940GZZLUWOG", "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": "940GZZLUWOG", "lineIdentifier": ["piccadilly"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["piccadilly"]}], "status": true, "id": "9400ZZLUWOG2", "commonName": "Wood 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": "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": "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": "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": "Photo Booths", "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": "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": "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": "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": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "no"}], "children": [], "lat": 51.597428, "lon": -0.110091}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUWOP", "modes": ["tube"], "icsCode": "1000276", "stopType": "NaptanMetroAccessArea", "stationNaptan": "940GZZLUWOP", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "9400ZZLUWOP", "commonName": "Woodside 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": "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": "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": "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": "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": "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": "Payphones", "sourceSystemKey": "StaticObjects", "value": "0"}], "children": [], "lat": 51.618014, "lon": -0.18542}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUWOP1", "modes": ["tube"], "icsCode": "1000276", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUWOP", "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": "940GZZLUWOP", "lineIdentifier": ["northern"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["northern"]}], "status": true, "id": "9400ZZLUWOP1", "commonName": "Woodside 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": "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"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.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": "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": "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": "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": "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.617783, "lon": -0.185602}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUWOP2", "modes": ["tube"], "icsCode": "1000276", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUWOP", "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": "940GZZLUWOP", "lineIdentifier": ["northern"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["northern"]}], "status": true, "id": "9400ZZLUWOP2", "commonName": "Woodside 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": "Escalators", "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": "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": "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": "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": "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"}], "children": [], "lat": 51.61787, "lon": -0.185454}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUWPL", "modes": ["tube"], "icsCode": "1000268", "stopType": "NaptanMetroAccessArea", "stationNaptan": "940GZZLUWPL", "hubNaptanCode": "HUBZWL", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "9400ZZLUWPL", "commonName": "Whitechapel 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": "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": "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": "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": "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": "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": "Help Points", "sourceSystemKey": "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": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.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"}], "children": [], "lat": 51.519518, "lon": -0.059971}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUWPL1", "modes": ["tube"], "icsCode": "1000268", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUWPL", "hubNaptanCode": "HUBZWL", "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": "940GZZLUWPL", "lineIdentifier": ["hammersmith-city", "district"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["hammersmith-city", "district"]}], "status": true, "id": "9400ZZLUWPL1", "commonName": "Whitechapel 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, 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": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$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": "Help 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": "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": "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": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}], "children": [], "lat": 51.519398, "lon": -0.060884}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUWPL2", "modes": ["tube"], "icsCode": "1000268", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUWPL", "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"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "940GZZLUWPL", "lineIdentifier": ["district", "hammersmith-city"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["district", "hammersmith-city"]}], "status": true, "id": "9400ZZLUWPL2", "commonName": "Whitechapel 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": "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": "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": "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": "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": "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": "Help 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": "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": "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.519414, "lon": -0.060797}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUWPL3", "modes": ["tube"], "stopType": "NaptanMetroPlatform", "lines": [], "lineGroup": [], "lineModeGroups": [], "id": "9400ZZLUWPL3", "commonName": "Whitechapel Underground Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.519715, "lon": -0.05992}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUWPL4", "modes": ["tube"], "stopType": "NaptanMetroPlatform", "lines": [], "lineGroup": [], "lineModeGroups": [], "id": "9400ZZLUWPL4", "commonName": "Whitechapel Underground Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.519659, "lon": -0.05985}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUWR1", "modes": ["tube"], "stopType": "NaptanMetroPlatform", "lines": [], "lineGroup": [], "lineModeGroups": [], "id": "9400ZZLUWR1", "commonName": "Bow Road Underground Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.526956, "lon": -0.025026}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUWRP", "modes": ["tube"], "icsCode": "1000267", "stopType": "NaptanMetroAccessArea", "stationNaptan": "940GZZLUWRP", "hubNaptanCode": "HUBWRU", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "9400ZZLUWRP", "commonName": "West Ruislip 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": "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": "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": "Toilets", "sourceSystemKey": "StaticObjects", "value": "yes (male, female)"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "West Ruislip Station,London Underground Ltd.,Ickenham Rd,West Ruislip,Middlesex"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.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, 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": "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": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "6"}], "children": [], "lat": 51.569688, "lon": -0.437886}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUWRP1", "modes": ["tube"], "icsCode": "1000267", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUWRP", "hubNaptanCode": "HUBWRU", "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": "940GZZLUWRP", "lineIdentifier": ["central"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["central"]}], "status": true, "id": "9400ZZLUWRP1", "commonName": "West Ruislip 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": "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": "Bridge", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "West Ruislip Station,London Underground Ltd.,Ickenham Rd,West Ruislip,Middlesex"}, {"$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": "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 (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": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "6"}], "children": [], "lat": 51.56951, "lon": -0.437343}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUWRR", "modes": ["tube"], "icsCode": "1000252", "stopType": "NaptanMetroAccessArea", "stationNaptan": "940GZZLUWRR", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "9400ZZLUWRR", "commonName": "Warren Street 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": "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, 5 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": "Gates", "sourceSystemKey": "StaticObjects", "value": "10"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.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": "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": "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": "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": "Car park", "sourceSystemKey": "StaticObjects", "value": "no"}], "children": [], "lat": 51.524951, "lon": -0.138321}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUWRR1", "modes": ["tube"], "icsCode": "1000252", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUWRR", "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": "940GZZLUWRR", "lineIdentifier": ["northern"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["northern"]}], "status": true, "id": "9400ZZLUWRR1", "commonName": "Warren Street 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": "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": "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": "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": "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": "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": "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": "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": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "1"}], "children": [], "lat": 51.524331, "lon": -0.137784}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUWRR2", "modes": ["tube"], "icsCode": "1000252", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUWRR", "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": "940GZZLUWRR", "lineIdentifier": ["northern"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["northern"]}], "status": true, "id": "9400ZZLUWRR2", "commonName": "Warren 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": "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": "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": "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": "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": "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": "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": "10"}, {"$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."}], "children": [], "lat": 51.524276, "lon": -0.137757}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUWRR3", "modes": ["tube"], "icsCode": "1000252", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUWRR", "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": "940GZZLUWRR", "lineIdentifier": ["victoria"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["victoria"]}], "status": true, "id": "9400ZZLUWRR3", "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": "Facility", "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": "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": "Cash Machines", "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": "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"}, {"$type": "Tfl.Api.Presentation.Entities.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": "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": "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"}], "children": [], "lat": 51.524084, "lon": -0.138688}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUWRR4", "modes": ["tube"], "icsCode": "1000252", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUWRR", "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": "940GZZLUWRR", "lineIdentifier": ["victoria"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["victoria"]}], "status": true, "id": "9400ZZLUWRR4", "commonName": "Warren Street 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": "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": "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": "Escalators", "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": "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": "1"}, {"$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": "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": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "no"}], "children": [], "lat": 51.524031, "lon": -0.138719}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUWSD", "modes": ["tube"], "icsCode": "1000250", "stopType": "NaptanMetroAccessArea", "stationNaptan": "940GZZLUWSD", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "9400ZZLUWSD", "commonName": "Wanstead 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": "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": "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": "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": "4"}, {"$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": "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": "Escalators", "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": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "no"}], "children": [], "lat": 51.575501, "lon": 0.028527}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUWSD1", "modes": ["tube"], "icsCode": "1000250", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUWSD", "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": "940GZZLUWSD", "lineIdentifier": ["central"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["central"]}], "status": true, "id": "9400ZZLUWSD1", "commonName": "Wanstead 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": "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": "Wanstead Underground Station,London Underground Ltd.,The Green,London,E11 2NT"}, {"$type": "Tfl.Api.Presentation.Entities.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": "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": "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": "Gates", "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": "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": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}], "children": [], "lat": 51.575663, "lon": 0.029069}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUWSD2", "modes": ["tube"], "icsCode": "1000250", "stopType": "NaptanRailAccessArea", "stationNaptan": "940GZZLUWSD", "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": "940GZZLUWSD", "lineIdentifier": ["central"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["central"]}], "status": true, "id": "9400ZZLUWSD2", "commonName": "Wanstead 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": "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": "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": "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": "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": "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": "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": "Payphones", "sourceSystemKey": "StaticObjects", "value": "0"}], "children": [], "lat": 51.575672, "lon": 0.029069}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUWSM", "modes": ["tube"], "icsCode": "1000266", "stopType": "NaptanMetroAccessArea", "stationNaptan": "940GZZLUWSM", "hubNaptanCode": "HUBWSM", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "9400ZZLUWSM", "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": "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": "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": "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": "Help 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": "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": "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": "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": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}], "children": [], "lat": 51.50132, "lon": -0.124861}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUWSM1", "modes": ["tube"], "icsCode": "1000266", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUWSM", "hubNaptanCode": "HUBWSM", "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": "940GZZLUWSM", "lineIdentifier": ["district", "circle"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["district", "circle"]}], "status": true, "id": "9400ZZLUWSM1", "commonName": "Westminster 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": "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": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "4"}, {"$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": "Facility", "key": "WiFi", "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": "Facility", "key": "Help 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": "Westminster Station,London Underground Ltd.,Bridge St,London,SW1A 2JR"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.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": "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": "15"}], "children": [], "lat": 51.501284, "lon": -0.124877}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUWSM2", "modes": ["tube"], "icsCode": "1000266", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUWSM", "hubNaptanCode": "HUBWSM", "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": "940GZZLUWSM", "lineIdentifier": ["district", "circle"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["district", "circle"]}], "status": true, "id": "9400ZZLUWSM2", "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": "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": "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": "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": "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": "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": "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": "Euro Cash Machines", "sourceSystemKey": "StaticObjects", "value": "yes"}], "children": [], "lat": 51.501185, "lon": -0.124838}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUWSM3", "modes": ["tube"], "icsCode": "1000266", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUWSM", "hubNaptanCode": "HUBWSM", "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": "940GZZLUWSM", "lineIdentifier": ["jubilee"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["jubilee"]}], "status": true, "id": "9400ZZLUWSM3", "commonName": "Westminster 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": "Boarding Ramps", "sourceSystemKey": "StaticObjects", "value": "yes Circle and District lines 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": "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": "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": "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": "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": "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": "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": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$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": "subway to street, routeways platform to ticket hall."}], "children": [], "lat": 51.501004, "lon": -0.124773}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUWSM4", "modes": ["tube"], "icsCode": "1000266", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUWSM", "hubNaptanCode": "HUBWSM", "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": "940GZZLUWSM", "lineIdentifier": ["jubilee"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["jubilee"]}], "status": true, "id": "9400ZZLUWSM4", "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": "Payphones", "sourceSystemKey": "StaticObjects", "value": "4"}, {"$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": "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": "17"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, 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": "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": "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"}], "children": [], "lat": 51.501006, "lon": -0.124932}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUWSP", "modes": ["tube"], "icsCode": "1000259", "stopType": "NaptanMetroAccessArea", "stationNaptan": "940GZZLUWSP", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "9400ZZLUWSP", "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": "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": "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": "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": "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": "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": "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.52111, "lon": -0.201065}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUWSP1", "modes": ["tube"], "icsCode": "1000259", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUWSP", "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": "940GZZLUWSP", "lineIdentifier": ["circle", "hammersmith-city"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["circle", "hammersmith-city"]}], "status": true, "id": "9400ZZLUWSP1", "commonName": "Westbourne Park Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$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": "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": "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, 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": "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": "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"}], "children": [], "lat": 51.520984, "lon": -0.201647}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUWSP2", "modes": ["tube"], "icsCode": "1000259", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUWSP", "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": "940GZZLUWSP", "lineIdentifier": ["circle", "hammersmith-city"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["circle", "hammersmith-city"]}], "status": true, "id": "9400ZZLUWSP2", "commonName": "Westbourne 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": "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": "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": "Westbourne Park Station,London Underground Ltd.,Western Rd,London,W11 1AB"}, {"$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": "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": "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"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.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.520973, "lon": -0.201546}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUWTA", "modes": ["tube"], "icsCode": "1000258", "stopType": "NaptanMetroAccessArea", "stationNaptan": "940GZZLUWTA", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "9400ZZLUWTA", "commonName": "West Acton 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": "3"}, {"$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": "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": "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": "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": "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": "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"}], "children": [], "lat": 51.518001, "lon": -0.28098}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUWTA1", "modes": ["tube"], "icsCode": "1000258", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUWTA", "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": "940GZZLUWTA", "lineIdentifier": ["central"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["central"]}], "status": true, "id": "9400ZZLUWTA1", "commonName": "West Acton 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": "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": "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": "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": "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": "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": "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": "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.518194, "lon": -0.280641}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUWTA2", "modes": ["tube"], "icsCode": "1000258", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUWTA", "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": "940GZZLUWTA", "lineIdentifier": ["central"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["central"]}], "status": true, "id": "9400ZZLUWTA2", "commonName": "West Acton 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": "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": "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"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.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": "Help Points", "sourceSystemKey": "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": "West Acton Station,London Underground Ltd.,Princes Gardens,London,W3 0LG"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}], "children": [], "lat": 51.518159, "lon": -0.2807}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUWWL", "modes": ["tube"], "icsCode": "1000249", "stopType": "NaptanMetroAccessArea", "stationNaptan": "940GZZLUWWL", "hubNaptanCode": "HUBWHC", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "9400ZZLUWWL", "commonName": "Walthamstow Central 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": "Toilets", "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": "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": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.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": "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": "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": "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"}], "children": [], "lat": 51.582965, "lon": -0.019885}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUWWL1", "modes": ["tube"], "icsCode": "1000249", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUWWL", "hubNaptanCode": "HUBWHC", "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": "940GZZLUWWL", "lineIdentifier": ["victoria"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["victoria"]}], "status": true, "id": "9400ZZLUWWL1", "commonName": "Walthamstow Central 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": "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 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, 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": "Lifts", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$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": "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": "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": "Help Points", "sourceSystemKey": "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"}], "children": [], "lat": 51.583067, "lon": -0.01952}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUWYC", "modes": ["tube"], "icsCode": "1000256", "stopType": "NaptanMetroAccessArea", "stationNaptan": "940GZZLUWYC", "hubNaptanCode": "HUBWMB", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "9400ZZLUWYC", "commonName": "Wembley Central Underground 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": "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": "12"}, {"$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": "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": "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": "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": "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": "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": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "yes"}], "children": [], "lat": 51.552304, "lon": -0.296852}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUWYC1", "modes": ["tube"], "icsCode": "1000256", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUWYC", "hubNaptanCode": "HUBWMB", "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": "940GZZLUWYC", "lineIdentifier": ["bakerloo"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["bakerloo"]}], "status": true, "id": "9400ZZLUWYC1", "commonName": "Wembley Central 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": "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": "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": "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": "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"}, {"$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": "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": "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": "Car park", "sourceSystemKey": "StaticObjects", "value": "no"}], "children": [], "lat": 51.551739, "lon": -0.29631}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUWYC2", "indicator": "southbound", "modes": ["tube"], "icsCode": "1000256", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUWYC", "hubNaptanCode": "HUBWMB", "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": "940GZZLUWYC", "lineIdentifier": ["bakerloo"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["bakerloo"]}], "status": true, "id": "9400ZZLUWYC2", "commonName": "Wembley Central 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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "yes"}], "children": [], "lat": 51.552312, "lon": -0.296794}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUWYP", "modes": ["tube"], "icsCode": "1000257", "stopType": "NaptanMetroAccessArea", "stationNaptan": "940GZZLUWYP", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "9400ZZLUWYP", "commonName": "Wembley 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": "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": "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": "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": "5"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, 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": "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": "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": "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": "Gates", "sourceSystemKey": "StaticObjects", "value": "33"}], "children": [], "lat": 51.563198, "lon": -0.279262}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUWYP1", "modes": ["tube"], "icsCode": "1000257", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUWYP", "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": "940GZZLUWYP", "lineIdentifier": ["jubilee"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["jubilee"]}], "status": true, "id": "9400ZZLUWYP1", "commonName": "Wembley 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": "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": "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": "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": "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": "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": "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": "4"}], "children": [], "lat": 51.563518, "lon": -0.279596}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUWYP2", "modes": ["tube"], "icsCode": "1000257", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUWYP", "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": "940GZZLUWYP", "lineIdentifier": ["jubilee"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["jubilee"]}], "status": true, "id": "9400ZZLUWYP2", "commonName": "Wembley Park Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$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": "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": "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": "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": "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": "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": "Facility", "key": "Help Points", "sourceSystemKey": "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": "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, disabled/baby-changing facilities)"}], "children": [], "lat": 51.563518, "lon": -0.279581}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUWYP3", "modes": ["tube"], "icsCode": "1000257", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUWYP", "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": "940GZZLUWYP", "lineIdentifier": ["metropolitan"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["metropolitan"]}], "status": true, "id": "9400ZZLUWYP3", "commonName": "Wembley 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": "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": "Gates", "sourceSystemKey": "StaticObjects", "value": "33"}, {"$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": "5"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.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": "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": "Help Points", "sourceSystemKey": "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": "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)"}], "children": [], "lat": 51.563509, "lon": -0.279596}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUWYP4", "modes": ["tube"], "icsCode": "1000257", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUWYP", "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": "940GZZLUWYP", "lineIdentifier": ["metropolitan"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["metropolitan"]}], "status": true, "id": "9400ZZLUWYP4", "commonName": "Wembley 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": "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": "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": "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": "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": "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": "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": "Waiting Room", "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": "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": "2"}], "children": [], "lat": 51.563517, "lon": -0.279567}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUWYP6", "indicator": "southbound", "modes": ["tube"], "icsCode": "1000257", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUWYP", "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": "940GZZLUWYP", "lineIdentifier": ["metropolitan"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["metropolitan"]}], "status": true, "id": "9400ZZLUWYP6", "commonName": "Wembley 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": "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": "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": "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": "Lifts", "sourceSystemKey": "StaticObjects", "value": "5"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.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": "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": "4"}, {"$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": "Boarding Ramps", "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": "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.565944, "lon": -0.279504}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZNEUGST", "indicator": "N/A", "stopLetter": "N/A", "modes": ["tube"], "icsCode": "1002196", "stopType": "NaptanMetroAccessArea", "stationNaptan": "940GZZNEUGST", "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": "940GZZNEUGST", "lineIdentifier": ["northern"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["northern"]}], "status": true, "id": "9400ZZNEUGST", "commonName": "Nine Elms Underground Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.479912, "lon": -0.128476}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "940GZZBPSUST", "modes": ["tube", "bus"], "icsCode": "1002195", "stopType": "NaptanMetroStation", "stationNaptan": "940GZZBPSUST", "lines": [{"$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": "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": "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": "436", "name": "436", "uri": "/Line/436", "type": "Line", "crowding": {"$type": "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": "490012196S", "stationAtcoCode": "490G02195E", "lineIdentifier": ["344", "156", "211", "436"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490012196E", "stationAtcoCode": "490G02195E", "lineIdentifier": ["344", "156", "211", "436"]}, {"$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": "bus", "lineIdentifier": ["344", "156", "211", "436"]}, {"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["northern"]}], "status": true, "id": "940GZZBPSUST", "commonName": "Battersea Power Station Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$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_183"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_631"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_800"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_817"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_834"}], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490G02195E", "modes": ["bus"], "icsCode": "1002195", "stopType": "NaptanOnstreetBusCoachStopCluster", "stationNaptan": "490G02195E", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490G02195E", "commonName": "Battersea Power Station", "placeType": "StopPoint", "additionalProperties": [], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490012196E", "indicator": "Stop A", "stopLetter": "A", "modes": ["bus"], "icsCode": "1002195", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G02195E", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490012196E", "commonName": "Battersea Power Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.479872, "lon": -0.141309}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490012196S", "indicator": "Stop F", "stopLetter": "F", "modes": ["bus"], "icsCode": "1002195", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G02195E", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490012196S", "commonName": "Battersea Power Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.479735, "lon": -0.141156}], "lat": 51.479735, "lon": -0.141156}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "4900ZZBPSUST", "indicator": "Entrance 1", "stopLetter": "1", "modes": ["bus"], "icsCode": "1002195", "stopType": "NaptanMetroEntrance", "stationNaptan": "940GZZBPSUST", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "4900ZZBPSUST", "commonName": "Battersea Power Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.479745, "lon": -0.14238}, {"$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}], "lat": 51.479932, "lon": -0.142142}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "940GZZLUACT", "modes": ["bus", "tube"], "icsCode": "1000002", "stopType": "NaptanMetroStation", "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"}, {"$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": "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": "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": "e3", "name": "E3", "uri": "/Line/e3", "type": "Line", "crowding": {"$type": "Tfl.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"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "940GZZLUACT", "lineIdentifier": ["district"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490000002A", "stationAtcoCode": "490G0000S", "lineIdentifier": ["n11", "e3"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490000002B", "stationAtcoCode": "490G0000S", "lineIdentifier": ["n11", "70", "e3"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["piccadilly", "district"]}, {"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "bus", "lineIdentifier": ["n11", "70", "e3"]}], "status": true, "id": "940GZZLUACT", "commonName": "Acton Town 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": "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": "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": "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": "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": "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": "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": "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": "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"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.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"}], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490G0000S", "modes": ["bus"], "icsCode": "1000002", "stopType": "NaptanOnstreetBusCoachStopCluster", "stationNaptan": "490G0000S", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490G0000S", "commonName": "Acton Town Station", "placeType": "StopPoint", "additionalProperties": [], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000002A", "indicator": "Stop R", "stopLetter": "R", "modes": ["bus"], "icsCode": "1000002", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G0000S", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000002A", "commonName": "Acton Town Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.502731, "lon": -0.281007}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000002B", "indicator": "Stop S", "stopLetter": "S", "modes": ["bus"], "icsCode": "1000002", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G0000S", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000002B", "commonName": "Acton Town Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.504018, "lon": -0.279864}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000002RB7", "indicator": "->S", "stopLetter": "->S", "modes": ["bus"], "icsCode": "1000002", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G0000S", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000002RB7", "commonName": "Acton Town Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.502933, "lon": -0.280711}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "49000002SE", "indicator": "->SE", "modes": ["bus"], "icsCode": "1000002", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G0000S", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "49000002SE", "commonName": "Acton Town Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.502804, "lon": -0.279246}], "lat": 51.504018, "lon": -0.279864}, {"$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": "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}], "lat": 51.503057, "lon": -0.280462}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "940GZZLUACY", "modes": ["tube", "bus"], "icsCode": "1000008", "stopType": "NaptanMetroStation", "stationNaptan": "940GZZLUACY", "lines": [{"$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": "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": "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": "w5", "name": "W5", "uri": "/Line/w5", "type": "Line", "crowding": {"$type": "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": "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": "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": "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": "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": "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": "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": "4", "name": "4", "uri": "/Line/4", "type": "Line", "crowding": {"$type": "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": "490000008C", "stationAtcoCode": "490G00008O", "lineIdentifier": ["210", "c11", "w5", "263", "n271", "143", "4"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490000008W", "stationAtcoCode": "490G00008O", "lineIdentifier": ["210", "390", "234", "41", "n20", "134"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490000008NW", "stationAtcoCode": "490G00008O", "lineIdentifier": ["c11", "w5", "263", "n271", "143", "4"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490000008U", "stationAtcoCode": "490G00008O", "lineIdentifier": ["390", "n20", "134"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490000008Z", "stationAtcoCode": "490G00008O", "lineIdentifier": ["w5", "234", "41"]}, {"$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": "bus", "lineIdentifier": ["210", "c11", "390", "w5", "234", "41", "263", "n20", "n271", "143", "134", "4"]}, {"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["northern"]}], "status": true, "id": "940GZZLUACY", "commonName": "Archway 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": "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."}, {"$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": "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": "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": "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": "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": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5786"}], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490G00008O", "modes": ["bus"], "icsCode": "1000008", "stopType": "NaptanOnstreetBusCoachStopCluster", "stationNaptan": "490G00008O", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490G00008O", "commonName": "Archway Station", "placeType": "StopPoint", "additionalProperties": [], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000008C", "indicator": "Stop C", "stopLetter": "C", "modes": ["bus"], "icsCode": "1000008", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00008O", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000008C", "commonName": "Archway Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.566436, "lon": -0.136338}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000008NW", "indicator": "Stop E", "stopLetter": "E", "modes": ["bus"], "icsCode": "1000008", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00008O", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000008NW", "commonName": "Archway Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.566103, "lon": -0.135197}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000008RR", "indicator": "Stop G", "stopLetter": "G", "modes": ["bus"], "icsCode": "1000008", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00008O", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000008RR", "commonName": "Archway Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.564909, "lon": -0.134785}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000008U", "indicator": "Stop U", "stopLetter": "U", "modes": ["bus"], "icsCode": "1000008", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00008O", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000008U", "commonName": "Archway Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.56493, "lon": -0.134957}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000008W", "indicator": "Stop W", "stopLetter": "W", "modes": ["bus"], "icsCode": "1000008", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00008O", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000008W", "commonName": "Archway Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.564829, "lon": -0.134817}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000008Z", "indicator": "Stop G", "stopLetter": "G", "modes": ["bus"], "icsCode": "1000008", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00008O", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000008Z", "commonName": "Archway Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.56639, "lon": -0.135142}], "lat": 51.566436, "lon": -0.136338}, {"$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": "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}], "lat": 51.565478, "lon": -0.134819}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "940GZZLUADE", "modes": ["tube", "bus"], "icsCode": "1000004", "stopType": "NaptanMetroStation", "stationNaptan": "940GZZLUADE", "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": "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": "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": "115", "name": "115", "uri": "/Line/115", "type": "Line", "crowding": {"$type": "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": "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": "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": "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": "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": "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": "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": "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"}, {"$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"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490000004W", "stationAtcoCode": "490G00004G", "lineIdentifier": ["135", "254", "n15", "115", "n25", "15", "n550", "205", "242", "25", "n205", "n253"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490000004Z", "stationAtcoCode": "490G00004G", "lineIdentifier": ["135", "n15", "115", "n550", "15"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490000004E", "stationAtcoCode": "490G00004G", "lineIdentifier": ["254", "n25", "205", "25", "n205", "n253"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490019414S", "stationAtcoCode": "490G00004G", "lineIdentifier": ["242"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490000004N", "stationAtcoCode": "490G00004G", "lineIdentifier": ["242"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "940GZZLUADE", "lineIdentifier": ["hammersmith-city", "district"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "bus", "lineIdentifier": ["135", "254", "n15", "115", "n25", "n550", "15", "205", "242", "25", "n205", "n253"]}, {"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["hammersmith-city", "district"]}], "status": true, "id": "940GZZLUADE", "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": "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": "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": "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"}, {"$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": "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": "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"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_33"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_102"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_115"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_200"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_202"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_236"}, {"$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_537"}, {"$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_5902"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5903"}], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490G00004G", "modes": ["bus"], "icsCode": "1000004", "stopType": "NaptanOnstreetBusCoachStopCluster", "stationNaptan": "490G00004G", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490G00004G", "commonName": "Aldgate East Station", "placeType": "StopPoint", "additionalProperties": [], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000004E", "indicator": "Stop E", "stopLetter": "E", "modes": ["bus"], "icsCode": "1000004", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00004G", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000004E", "commonName": "Aldgate East Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.515496, "lon": -0.071427}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000004N", "indicator": "Stop F", "stopLetter": "F", "modes": ["bus"], "icsCode": "1000004", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00004G", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000004N", "commonName": "Aldgate East Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.515719, "lon": -0.072384}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000004W", "indicator": "Stop J", "stopLetter": "J", "modes": ["bus"], "icsCode": "1000004", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00004G", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000004W", "commonName": "Aldgate East Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.514653, "lon": -0.073207}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000004Y", "indicator": "->S", "stopLetter": "->S", "modes": ["bus"], "icsCode": "1000004", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00004G", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000004Y", "commonName": "Aldgate East Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.514922, "lon": -0.071509}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000004Z", "indicator": "Stop H", "stopLetter": "H", "modes": ["bus"], "icsCode": "1000004", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00004G", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000004Z", "commonName": "Aldgate East Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.515324, "lon": -0.070238}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490019414S", "indicator": "Stop C", "stopLetter": "C", "modes": ["bus"], "icsCode": "1000004", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00004G", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490019414S", "commonName": "Aldgate East Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.515769, "lon": -0.072165}], "lat": 51.514653, "lon": -0.073207}, {"$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": "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}], "lat": 51.515037, "lon": -0.072384}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "940GZZLUAGL", "modes": ["bus", "tube"], "icsCode": "1000007", "stopType": "NaptanMetroStation", "stationNaptan": "940GZZLUAGL", "lines": [{"$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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "n38", "name": "N38", "uri": "/Line/n38", "type": "Line", "crowding": {"$type": "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": "490015108S", "stationAtcoCode": "490G00007G", "lineIdentifier": ["214", "n205", "205"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490000007Y", "stationAtcoCode": "490G00007G", "lineIdentifier": ["19", "30", "43", "n19", "4", "n41"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490000007F", "stationAtcoCode": "490G00007G", "lineIdentifier": ["19", "n73", "n277", "30", "38", "73", "476", "341", "n19", "n41", "n38"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490000007X", "stationAtcoCode": "490G00007G", "lineIdentifier": ["n73", "n277", "38", "73", "476", "341", "56", "n38"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "940GZZLUAGL", "lineIdentifier": ["northern"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490000007G", "stationAtcoCode": "490G00007G", "lineIdentifier": ["43", "56", "4"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "bus", "lineIdentifier": ["214", "19", "n73", "n277", "30", "38", "73", "476", "n205", "341", "43", "56", "n19", "205", "4", "n41", "n38"]}, {"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["northern"]}], "status": true, "id": "940GZZLUAGL", "commonName": "Angel 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": "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": "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": "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": "Angel Station,London Underground Ltd.,High Street,London,N1 9LQ"}, {"$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": "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": "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": "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": "Photo 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": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_75"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_93"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_123"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_189"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_234"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_254"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_326"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_339"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_365"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_695"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5720"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5384"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5435"}], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490G00007G", "modes": ["bus"], "icsCode": "1000007", "stopType": "NaptanOnstreetBusCoachStopCluster", "stationNaptan": "490G00007G", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490G00007G", "commonName": "Angel Station", "placeType": "StopPoint", "additionalProperties": [], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000007F", "indicator": "Stop F", "stopLetter": "F", "modes": ["bus"], "icsCode": "1000007", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00007G", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000007F", "commonName": "Angel Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.533739, "lon": -0.105463}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000007G", "indicator": "Stop G", "stopLetter": "G", "modes": ["bus"], "icsCode": "1000007", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00007G", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000007G", "commonName": "Angel Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.533373, "lon": -0.105637}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000007X", "indicator": "Stop X", "stopLetter": "X", "modes": ["bus"], "icsCode": "1000007", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00007G", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000007X", "commonName": "Angel Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.533957, "lon": -0.105584}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000007Y", "indicator": "Stop Y", "stopLetter": "Y", "modes": ["bus"], "icsCode": "1000007", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00007G", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000007Y", "commonName": "Angel Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.534304, "lon": -0.105367}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490015108S", "indicator": "Stop S", "stopLetter": "S", "modes": ["bus"], "icsCode": "1000007", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00007G", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490015108S", "commonName": "Angel Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.531914, "lon": -0.107673}], "lat": 51.534304, "lon": -0.105367}, {"$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": "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}], "lat": 51.532624, "lon": -0.105898}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "940GZZLUALD", "modes": ["bus", "tube"], "icsCode": "1000003", "stopType": "NaptanMetroStation", "stationNaptan": "940GZZLUALD", "lines": [{"$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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "115", "name": "115", "uri": "/Line/115", "type": "Line", "crowding": {"$type": "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"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490000003R", "stationAtcoCode": "490G00003N", "lineIdentifier": ["n551", "343", "42", "242", "25", "100", "n253", "n25", "15", "n550", "78", "n15", "115", "254"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490000003DS", "stationAtcoCode": "490G00003N", "lineIdentifier": ["343"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490000003Y", "stationAtcoCode": "490G00003N", "lineIdentifier": ["25", "n25", "n550"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "940GZZLUALD", "lineIdentifier": ["circle"]}, {"$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": "bus", "lineIdentifier": ["n551", "343", "42", "25", "242", "100", "n253", "n25", "15", "n550", "78", "n15", "115", "254"]}, {"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["circle", "metropolitan"]}], "status": true, "id": "940GZZLUALD", "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": "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": "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": "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": "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": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$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": "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_33"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_102"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_104"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_115"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_202"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_236"}, {"$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_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_5900"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5905"}, {"$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_5902"}, {"$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_5941"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5269"}, {"$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_5917"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "0"}], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490G00003N", "modes": ["bus"], "icsCode": "1000003", "stopType": "NaptanOnstreetBusCoachStopCluster", "stationNaptan": "490G00003N", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490G00003N", "commonName": "Aldgate Station", "placeType": "StopPoint", "additionalProperties": [], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000003DS", "indicator": "Stop", "modes": ["bus"], "icsCode": "1000003", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00003N", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000003DS", "commonName": "Aldgate Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.513556, "lon": -0.075357}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000003R", "indicator": "Stop R", "stopLetter": "R", "modes": ["bus"], "icsCode": "1000003", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00003N", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000003R", "commonName": "Aldgate Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.514079, "lon": -0.074932}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000003Y", "indicator": "Stop D", "stopLetter": "D", "modes": ["bus"], "icsCode": "1000003", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00003N", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000003Y", "commonName": "Aldgate Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.514292, "lon": -0.074735}], "lat": 51.513556, "lon": -0.075357}, {"$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": "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}], "lat": 51.514246, "lon": -0.075689}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "940GZZLUALP", "modes": ["bus", "tube"], "icsCode": "1000005", "stopType": "NaptanMetroStation", "stationNaptan": "940GZZLUALP", "lines": [{"$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": "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": "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": "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": "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": "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": "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": "245", "name": "245", "uri": "/Line/245", "type": "Line", "crowding": {"$type": "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": "490003264C", "stationAtcoCode": "490G00005N2", "lineIdentifier": ["487", "245"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490003264D", "stationAtcoCode": "490G00005N2", "lineIdentifier": ["487", "245"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490000005B", "stationAtcoCode": "490G00005N2", "lineIdentifier": ["83", "n83", "483", "224", "297"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490000005A", "stationAtcoCode": "490G00005N2", "lineIdentifier": ["83", "n83", "483", "224", "297"]}, {"$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": "bus", "lineIdentifier": ["487", "83", "n83", "483", "224", "297", "245"]}, {"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["piccadilly"]}], "status": true, "id": "940GZZLUALP", "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": "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": "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": "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": "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"}, {"$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": "Gates", "sourceSystemKey": "StaticObjects", "value": "3"}, {"$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": "490G00005N2", "modes": ["bus"], "icsCode": "1000005", "stopType": "NaptanOnstreetBusCoachStopCluster", "stationNaptan": "490G00005N2", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490G00005N2", "commonName": "Alperton Station", "placeType": "StopPoint", "additionalProperties": [], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000005A", "indicator": "Stop A", "stopLetter": "A", "modes": ["bus"], "icsCode": "1000005", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00005N2", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000005A", "commonName": "Alperton Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.540544, "lon": -0.298935}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000005B", "indicator": "Stop B", "stopLetter": "B", "modes": ["bus"], "icsCode": "1000005", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00005N2", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000005B", "commonName": "Alperton Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.540838, "lon": -0.298751}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490003264C", "indicator": "Stop C", "stopLetter": "C", "modes": ["bus"], "icsCode": "1000005", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00005N2", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490003264C", "commonName": "Alperton Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.540442, "lon": -0.301217}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490003264D", "indicator": "Stop D", "stopLetter": "D", "modes": ["bus"], "icsCode": "1000005", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00005N2", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490003264D", "commonName": "Alperton Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.540319, "lon": -0.301395}], "lat": 51.540442, "lon": -0.301217}, {"$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": "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}], "lat": 51.540627, "lon": -0.29961}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "940GZZLUAMS", "modes": ["tube"], "icsCode": "1000006", "stopType": "NaptanMetroStation", "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": "940GZZLUAMS", "commonName": "Amersham 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": "Amersham Station,Stn Approach,Amersham,Bucks HP6 5AZ"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.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": "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 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": "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": "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": "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": "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": "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": "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": [{"$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": "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}], "lat": 51.674126, "lon": -0.607714}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "940GZZLUASG", "modes": ["tube", "bus"], "icsCode": "1000009", "stopType": "NaptanMetroStation", "stationNaptan": "940GZZLUASG", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "298", "name": "298", "uri": "/Line/298", "type": "Line", "crowding": {"$type": "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": "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": "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": "sl1", "name": "SL1", "uri": "/Line/sl1", "type": "Line", "crowding": {"$type": "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": "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": "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"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490000009E1", "stationAtcoCode": "490G00009E1", "lineIdentifier": ["298", "251"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490000009W1", "stationAtcoCode": "490G00009E1", "lineIdentifier": ["298", "251"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490000009A", "stationAtcoCode": "490G00009E1", "lineIdentifier": ["34", "382", "sl1", "184", "232", "n91"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490000009W", "stationAtcoCode": "490G00009E1", "lineIdentifier": ["34", "sl1", "184", "232", "n91"]}, {"$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": "bus", "lineIdentifier": ["298", "251", "34", "382", "sl1", "184", "232", "n91"]}, {"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["piccadilly"]}], "status": true, "id": "940GZZLUASG", "commonName": "Arnos Grove 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": "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": "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": "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": "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": "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": "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": "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": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5422"}], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490G00009E1", "modes": ["bus"], "icsCode": "1000009", "stopType": "NaptanOnstreetBusCoachStopCluster", "stationNaptan": "490G00009E1", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490G00009E1", "commonName": "Arnos Grove Station", "placeType": "StopPoint", "additionalProperties": [], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000009A", "indicator": "Stop T", "stopLetter": "T", "modes": ["bus"], "icsCode": "1000009", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00009E1", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000009A", "commonName": "Arnos Grove Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.616181, "lon": -0.133463}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000009E1", "indicator": "Stop U", "stopLetter": "U", "modes": ["bus"], "icsCode": "1000009", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00009E1", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000009E1", "commonName": "Arnos Grove Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.616215, "lon": -0.133881}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000009W", "indicator": "Stop A", "stopLetter": "A", "modes": ["bus"], "icsCode": "1000009", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00009E1", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000009W", "commonName": "Arnos Grove Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.615957, "lon": -0.132952}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000009W1", "indicator": "Stop B", "stopLetter": "B", "modes": ["bus"], "icsCode": "1000009", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00009E1", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000009W1", "commonName": "Arnos Grove Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.615988, "lon": -0.13376}], "lat": 51.616215, "lon": -0.133881}, {"$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": "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}], "lat": 51.616446, "lon": -0.133062}, {"$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": "490G00010W", "modes": ["bus"], "icsCode": "1000010", "stopType": "NaptanOnstreetBusCoachStopCluster", "stationNaptan": "940GZZLUASL", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490G00010W", "commonName": "Arsenal", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.558655, "lon": -0.107457}, {"$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": "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": "940GZZLUBBB", "modes": ["tube", "bus"], "icsCode": "1000032", "stopType": "NaptanMetroStation", "stationNaptan": "940GZZLUBBB", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "323", "name": "323", "uri": "/Line/323", "type": "Line", "crowding": {"$type": "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"}, {"$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": "d8", "name": "D8", "uri": "/Line/d8", "type": "Line", "crowding": {"$type": "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": "490000032RP", "stationAtcoCode": "490G00032DS", "lineIdentifier": ["323"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490000032MO", "stationAtcoCode": "490G00032DS", "lineIdentifier": ["323"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "940GZZLUBBB", "lineIdentifier": ["district", "hammersmith-city"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490015276W", "stationAtcoCode": "490G00032MO", "lineIdentifier": ["488", "d8"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490000032X", "stationAtcoCode": "490G0032NB", "lineIdentifier": ["488", "d8"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "bus", "lineIdentifier": ["323", "488", "d8"]}, {"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["district", "hammersmith-city"]}], "status": true, "id": "940GZZLUBBB", "commonName": "Bromley-by-Bow 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": "Help Points", "sourceSystemKey": "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": "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": "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": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "5"}, {"$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": "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": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_484"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_496"}], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490G00032DS", "modes": ["bus"], "icsCode": "1000032", "stopType": "NaptanOnstreetBusCoachStopCluster", "stationNaptan": "490G00032DS", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490G00032DS", "commonName": "Bromley By Bow Station", "placeType": "StopPoint", "additionalProperties": [], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000032MO", "indicator": "Stop BH", "stopLetter": "BH", "modes": ["bus"], "icsCode": "1000032", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00032DS", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000032MO", "commonName": "Bromley By Bow Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.523309, "lon": -0.012095}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000032RP", "indicator": "Stop BN", "stopLetter": "BN", "modes": ["bus"], "icsCode": "1000032", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00032DS", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000032RP", "commonName": "Bromley By Bow Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.523277, "lon": -0.01286}], "lat": 51.523309, "lon": -0.012095}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490G00032MO", "modes": ["bus"], "icsCode": "1000032", "stopType": "NaptanOnstreetBusCoachStopCluster", "stationNaptan": "490G00032MO", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490G00032MO", "commonName": "Bromley By Bow Station", "placeType": "StopPoint", "additionalProperties": [], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490015276W", "indicator": "Stop BA", "stopLetter": "BA", "modes": ["bus"], "icsCode": "1000032", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00032MO", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490015276W", "commonName": "Bromley By Bow Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.524278, "lon": -0.010871}], "lat": 51.524278, "lon": -0.010871}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490G0032NB", "modes": ["bus"], "icsCode": "1000032", "stopType": "NaptanOnstreetBusCoachStopCluster", "stationNaptan": "490G0032NB", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490G0032NB", "commonName": "Bromley By Bow Station", "placeType": "StopPoint", "additionalProperties": [], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000032X", "indicator": "Stop BE", "stopLetter": "BE", "modes": ["bus"], "icsCode": "1000032", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G0032NB", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000032X", "commonName": "Bromley By Bow Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.52422, "lon": -0.011162}], "lat": 51.52422, "lon": -0.011162}, {"$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": "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}], "lat": 51.524839, "lon": -0.011538}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "940GZZLUBBN", "modes": ["tube", "bus"], "icsCode": "1000014", "stopType": "NaptanMetroStation", "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": "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": "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": "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": "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"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490000014A", "stationAtcoCode": "490G00014W", "lineIdentifier": ["153", "4", "56"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490000014B", "stationAtcoCode": "490G00014W", "lineIdentifier": ["153", "4", "56"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["metropolitan", "hammersmith-city", "circle"]}, {"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "bus", "lineIdentifier": ["153", "4", "56"]}], "status": true, "id": "940GZZLUBBN", "commonName": "Barbican Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$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": "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": "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": "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": "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": "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": "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_52"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_54"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_95"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_126"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_127"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_203"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_246"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_275"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_557"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5929"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5873"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5791"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5906"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5923"}], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490G00014W", "modes": ["bus"], "icsCode": "1000014", "stopType": "NaptanOnstreetBusCoachStopCluster", "stationNaptan": "490G00014W", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490G00014W", "commonName": "Barbican Station", "placeType": "StopPoint", "additionalProperties": [], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000014A", "indicator": "Stop BA", "stopLetter": "BA", "modes": ["bus"], "icsCode": "1000014", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00014W", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000014A", "commonName": "Barbican Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.520305, "lon": -0.097703}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000014B", "indicator": "Stop BB", "stopLetter": "BB", "modes": ["bus"], "icsCode": "1000014", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00014W", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000014B", "commonName": "Barbican Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.520902, "lon": -0.097376}], "lat": 51.520902, "lon": -0.097376}, {"$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": "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}], "lat": 51.520275, "lon": -0.097993}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "940GZZLUBDS", "modes": ["tube", "bus"], "icsCode": "1000028", "stopType": "NaptanMetroStation", "stationNaptan": "940GZZLUBDS", "lines": [{"$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": "299", "name": "299", "uri": "/Line/299", "type": "Line", "crowding": {"$type": "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": "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": "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": "102", "name": "102", "uri": "/Line/102", "type": "Line", "crowding": {"$type": "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": "490000028C", "stationAtcoCode": "490G00028C", "lineIdentifier": ["184", "299", "102"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490000028D", "stationAtcoCode": "490G00028C", "lineIdentifier": ["184", "299", "102"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "940GZZLUBDS", "lineIdentifier": ["piccadilly"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490000028A", "stationAtcoCode": "490G00028A", "lineIdentifier": ["n91", "221"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490000028B", "stationAtcoCode": "490G00028A", "lineIdentifier": ["n91", "221"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "bus", "lineIdentifier": ["184", "299", "n91", "221", "102"]}, {"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["piccadilly"]}], "status": true, "id": "940GZZLUBDS", "commonName": "Bounds Green 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": "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": "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": "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": "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+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": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$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": "Help Points", "sourceSystemKey": "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": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490G00028A", "modes": ["bus"], "icsCode": "1000028", "stopType": "NaptanOnstreetBusCoachStopCluster", "stationNaptan": "490G00028A", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490G00028A", "commonName": "Bounds Green Station", "placeType": "StopPoint", "additionalProperties": [], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000028A", "indicator": "Stop BA", "stopLetter": "BA", "modes": ["bus"], "icsCode": "1000028", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00028A", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000028A", "commonName": "Bounds Green Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.607038, "lon": -0.124567}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000028B", "indicator": "Stop BM", "stopLetter": "BM", "modes": ["bus"], "icsCode": "1000028", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00028A", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000028B", "commonName": "Bounds Green Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.607266, "lon": -0.125352}], "lat": 51.607266, "lon": -0.125352}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490G00028C", "modes": ["bus"], "icsCode": "1000028", "stopType": "NaptanOnstreetBusCoachStopCluster", "stationNaptan": "490G00028C", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490G00028C", "commonName": "Bounds Green Station", "placeType": "StopPoint", "additionalProperties": [], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000028C", "indicator": "Stop BN", "stopLetter": "BN", "modes": ["bus"], "icsCode": "1000028", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00028C", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000028C", "commonName": "Bounds Green Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.608056, "lon": -0.123586}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000028D", "indicator": "Stop BB", "stopLetter": "BB", "modes": ["bus"], "icsCode": "1000028", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00028C", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000028D", "commonName": "Bounds Green Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.607545, "lon": -0.12365}], "lat": 51.607545, "lon": -0.12365}, {"$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": "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}], "lat": 51.607034, "lon": -0.124235}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "940GZZLUBEC", "modes": ["bus", "tube"], "icsCode": "1000019", "stopType": "NaptanMetroStation", "stationNaptan": "940GZZLUBEC", "lines": [{"$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": "145", "name": "145", "uri": "/Line/145", "type": "Line", "crowding": {"$type": "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", "naptanIdReference": "490000019B", "stationAtcoCode": "490G00019B", "lineIdentifier": ["62", "145"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490000019A", "stationAtcoCode": "490G00019B", "lineIdentifier": ["62", "145"]}, {"$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": "bus", "lineIdentifier": ["62", "145"]}, {"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["district"]}], "status": true, "id": "940GZZLUBEC", "commonName": "Becontree 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": "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": "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": "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": "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": "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": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "5"}], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490G00019B", "modes": ["bus"], "icsCode": "1000019", "stopType": "NaptanOnstreetBusCoachStopCluster", "stationNaptan": "490G00019B", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490G00019B", "commonName": "Becontree Station", "placeType": "StopPoint", "additionalProperties": [], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000019A", "indicator": "Stop NC", "stopLetter": "NC", "modes": ["bus"], "icsCode": "1000019", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00019B", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000019A", "commonName": "Becontree Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.540134, "lon": 0.127382}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000019B", "indicator": "Stop SJ", "stopLetter": "SJ", "modes": ["bus"], "icsCode": "1000019", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00019B", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000019B", "commonName": "Becontree Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.539841, "lon": 0.1277}], "lat": 51.540134, "lon": 0.127382}, {"$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": "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}], "lat": 51.540331, "lon": 0.127016}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "940GZZLUBKE", "modes": ["tube", "bus"], "icsCode": "1000016", "stopType": "NaptanMetroStation", "stationNaptan": "940GZZLUBKE", "lines": [{"$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": "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": "169", "name": "169", "uri": "/Line/169", "type": "Line", "crowding": {"$type": "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": "490000016S", "stationAtcoCode": "490G00016SB", "lineIdentifier": ["247", "169"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490003623B", "stationAtcoCode": "490G00016SB", "lineIdentifier": ["247"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "940GZZLUBKE", "lineIdentifier": ["central"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490000016U", "stationAtcoCode": "490G00016SB", "lineIdentifier": ["169"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "bus", "lineIdentifier": ["247", "169"]}, {"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["central"]}], "status": true, "id": "940GZZLUBKE", "commonName": "Barkingside 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": "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": "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": "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": "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 (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": "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": "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": "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"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "CarParks_800491"}], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490G00016SB", "modes": ["bus"], "icsCode": "1000016", "stopType": "NaptanOnstreetBusCoachStopCluster", "stationNaptan": "490G00016SB", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490G00016SB", "commonName": "Barkingside Station", "placeType": "StopPoint", "additionalProperties": [], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000016S", "indicator": "Stop S", "stopLetter": "S", "modes": ["bus"], "icsCode": "1000016", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00016SB", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000016S", "commonName": "Barkingside Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.587251, "lon": 0.085105}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000016U", "indicator": "Stop U", "stopLetter": "U", "modes": ["bus"], "icsCode": "1000016", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00016SB", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000016U", "commonName": "Barkingside Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.587402, "lon": 0.085199}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490003623B", "indicator": "Stop W", "stopLetter": "W", "modes": ["bus"], "icsCode": "1000016", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00016SB", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490003623B", "commonName": "Barkingside Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.58777, "lon": 0.084234}], "lat": 51.58777, "lon": 0.084234}, {"$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": "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}], "lat": 51.585689, "lon": 0.088585}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "940GZZLUBKF", "modes": ["tube"], "icsCode": "1000023", "stopType": "NaptanMetroStation", "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": "940GZZLUBKF", "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": "Escalators", "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": "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": "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, 3 in ticket halls, 2 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": "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": "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": "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": "BlueBadgeCarParkSpaces", "sourceSystemKey": "LRAD", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_839"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_842"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5926"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_703"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_773"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_659"}, {"$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": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_27"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_48"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_136"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5920"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5909"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5922"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5924"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5911"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5928"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5814"}], "children": [{"$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": "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}], "lat": 51.511581, "lon": -0.103659}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "940GZZLUBKG", "modes": ["tube"], "icsCode": "1000015", "stopType": "NaptanMetroStation", "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"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "940GZZLUBKG", "lineIdentifier": ["district"]}, {"$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": ["district", "hammersmith-city"]}], "status": true, "id": "940GZZLUBKG", "commonName": "Barking 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": "Gates", "sourceSystemKey": "StaticObjects", "value": "7"}, {"$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": "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": "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": "SunTo", "sourceSystemKey": "StaticObjects", "value": "23: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": "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": "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": "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": "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": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5722"}], "children": [{"$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}], "lat": 51.539321, "lon": 0.081053}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "940GZZLUBKH", "modes": ["bus", "tube"], "icsCode": "1000033", "stopType": "NaptanMetroStation", "stationNaptan": "940GZZLUBKH", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "549", "name": "549", "uri": "/Line/549", "type": "Line", "crowding": {"$type": "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": "167", "name": "167", "uri": "/Line/167", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "677", "name": "677", "uri": "/Line/677", "type": "Line", "crowding": {"$type": "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": "1500IM359", "stationAtcoCode": "150G00003292", "lineIdentifier": ["549", "167", "677"]}, {"$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": "bus", "lineIdentifier": ["549", "167", "677"]}, {"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["central"]}], "status": true, "id": "940GZZLUBKH", "commonName": "Buckhurst Hill 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": "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": "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": "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": "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": "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": "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": "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": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "CarParks_800468"}], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "150G00003292", "modes": ["bus"], "icsCode": "1000317", "stopType": "NaptanOnstreetBusCoachStopPair", "stationNaptan": "150G00003292", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "150G00003292", "commonName": "Railway Station", "placeType": "StopPoint", "additionalProperties": [], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "1500IM359", "indicator": "o/s", "modes": ["bus"], "icsCode": "1000317", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "150G00003292", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "1500IM359", "commonName": "Buckhurst Hill Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.626505, "lon": 0.046204}], "lat": 51.626505, "lon": 0.046204}, {"$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": "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}], "lat": 51.626605, "lon": 0.046757}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "940GZZLUBLG", "modes": ["tube", "bus"], "icsCode": "1000022", "stopType": "NaptanMetroStation", "stationNaptan": "940GZZLUBLG", "lines": [{"$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": "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": "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": "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": "309", "name": "309", "uri": "/Line/309", "type": "Line", "crowding": {"$type": "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": "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": "388", "name": "388", "uri": "/Line/388", "type": "Line", "crowding": {"$type": "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": "490000022A", "stationAtcoCode": "490G00022A", "lineIdentifier": ["n253", "d3", "254", "106", "309", "d6", "388"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490000022C", "stationAtcoCode": "490G00022C", "lineIdentifier": ["n253", "254", "106"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490000022D", "stationAtcoCode": "490G00022D", "lineIdentifier": ["d3", "8", "n8", "388"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490000022B", "stationAtcoCode": "490G00022B", "lineIdentifier": ["8", "309", "d6", "n8"]}, {"$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": "bus", "lineIdentifier": ["n253", "d3", "254", "106", "8", "309", "d6", "n8", "388"]}, {"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["central"]}], "status": true, "id": "940GZZLUBLG", "commonName": "Bethnal Green 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": "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": "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": "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": "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": "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": "Toilets", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$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_446"}, {"$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_507"}, {"$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": "490G00022A", "modes": ["bus"], "icsCode": "1000022", "stopType": "NaptanOnstreetBusCoachStopCluster", "stationNaptan": "490G00022A", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490G00022A", "commonName": "Bethnal Green Station", "placeType": "StopPoint", "additionalProperties": [], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000022A", "indicator": "Stop A", "stopLetter": "A", "modes": ["bus"], "icsCode": "1000022", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00022A", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000022A", "commonName": "Bethnal Green Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.528131, "lon": -0.055107}], "lat": 51.528131, "lon": -0.055107}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490G00022B", "modes": ["bus"], "icsCode": "1000022", "stopType": "NaptanOnstreetBusCoachStopCluster", "stationNaptan": "490G00022B", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490G00022B", "commonName": "Bethnal Green Station", "placeType": "StopPoint", "additionalProperties": [], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000022B", "indicator": "Stop B", "stopLetter": "B", "modes": ["bus"], "icsCode": "1000022", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00022B", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000022B", "commonName": "Bethnal Green Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.527402, "lon": -0.054547}], "lat": 51.527402, "lon": -0.054547}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490G00022C", "modes": ["bus"], "icsCode": "1000022", "stopType": "NaptanOnstreetBusCoachStopCluster", "stationNaptan": "490G00022C", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490G00022C", "commonName": "Bethnal Green Station", "placeType": "StopPoint", "additionalProperties": [], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000022C", "indicator": "Stop C", "stopLetter": "C", "modes": ["bus"], "icsCode": "1000022", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00022C", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000022C", "commonName": "Bethnal Green Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.526881, "lon": -0.055636}], "lat": 51.526881, "lon": -0.055636}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490G00022D", "modes": ["bus"], "icsCode": "1000022", "stopType": "NaptanOnstreetBusCoachStopCluster", "stationNaptan": "490G00022D", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490G00022D", "commonName": "Bethnal Green Station", "placeType": "StopPoint", "additionalProperties": [], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000022D", "indicator": "Stop D", "stopLetter": "D", "modes": ["bus"], "icsCode": "1000022", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00022D", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000022D", "commonName": "Bethnal Green Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.527464, "lon": -0.056649}], "lat": 51.527464, "lon": -0.056649}, {"$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": "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}], "lat": 51.527222, "lon": -0.055506}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "940GZZLUBLM", "modes": ["tube"], "icsCode": "1000012", "stopType": "NaptanMetroStation", "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": "940GZZLUBLM", "commonName": "Balham 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": "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": "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": "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": "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": "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": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5665"}], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490G00012C", "modes": ["bus"], "icsCode": "1000012", "stopType": "NaptanOnstreetBusCoachStopCluster", "stationNaptan": "490G00012C", "hubNaptanCode": "HUBBAL", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490G00012C", "commonName": "Balham Station / Balham Station Road", "placeType": "StopPoint", "additionalProperties": [], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000012C", "indicator": "Stop C", "stopLetter": "C", "modes": ["bus"], "icsCode": "1000012", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00012C", "hubNaptanCode": "HUBBAL", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000012C", "commonName": "Balham Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.44391, "lon": -0.152066}], "lat": 51.44391, "lon": -0.152066}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490G00012S", "modes": ["bus"], "icsCode": "1000012", "stopType": "NaptanOnstreetBusCoachStopCluster", "stationNaptan": "490G00012S", "hubNaptanCode": "HUBBAL", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490G00012S", "commonName": "Balham Station", "placeType": "StopPoint", "additionalProperties": [], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000012A", "indicator": "Stop A", "stopLetter": "A", "modes": ["bus"], "icsCode": "1000012", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00012S", "hubNaptanCode": "HUBBAL", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000012A", "commonName": "Balham Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.443039, "lon": -0.151554}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000012B", "indicator": "Stop B", "stopLetter": "B", "modes": ["bus"], "icsCode": "1000012", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00012S", "hubNaptanCode": "HUBBAL", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000012B", "commonName": "Balham Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.442869, "lon": -0.15336}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000012J", "indicator": "Stop J", "stopLetter": "J", "modes": ["bus"], "icsCode": "1000012", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00012S", "hubNaptanCode": "HUBBAL", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000012J", "commonName": "Balham Station / Balham Station Road", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.443019, "lon": -0.150907}], "lat": 51.442869, "lon": -0.15336}, {"$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": "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}], "lat": 51.443288, "lon": -0.152997}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "940GZZLUBLR", "modes": ["tube"], "icsCode": "1000024", "stopType": "NaptanMetroStation", "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": "940GZZLUBLR", "commonName": "Blackhorse Road Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "CarParks_800466"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.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": "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": "ASDA Click and Collect", "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": "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": "ServiceInfo", "key": "Night", "sourceSystemKey": "TransXchangeETL", "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": "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": "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"}], "children": [{"$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}], "lat": 51.586919, "lon": -0.04115}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "940GZZLUBMY", "modes": ["tube", "bus"], "icsCode": "1000021", "stopType": "NaptanMetroStation", "stationNaptan": "940GZZLUBMY", "lines": [{"$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": "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": "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": "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": "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": "n199", "name": "N199", "uri": "/Line/n199", "type": "Line", "crowding": {"$type": "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": "490012729D", "stationAtcoCode": "490G00021W", "lineIdentifier": ["188", "n381", "381", "c10", "108", "n199"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490000021W", "stationAtcoCode": "490G00021W", "lineIdentifier": ["188", "n381", "381", "c10", "n199"]}, {"$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": "bus", "lineIdentifier": ["188", "n381", "381", "c10", "108", "n199"]}, {"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["jubilee"]}], "status": true, "id": "940GZZLUBMY", "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": "Accessibility", "key": "SpecificEntranceRequired", "sourceSystemKey": "LRAD", "value": "No"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_687"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_840"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_845"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "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": "LimitedCapacityLift", "sourceSystemKey": "LRAD", "value": "No"}, {"$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": "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": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$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": "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": "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": "Help Points", "sourceSystemKey": "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": "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": "3"}, {"$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": "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": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Bermondsey Station,London Underground Ltd.,142 - 154 Jamaica Rd,London,SE16 4RX"}], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490G00021W", "modes": ["bus"], "stopType": "NaptanOnstreetBusCoachStopCluster", "stationNaptan": "490G00021W", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490G00021W", "commonName": "Bermondsey Station", "placeType": "StopPoint", "additionalProperties": [], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000021W", "indicator": "Stop A", "stopLetter": "A", "modes": ["bus"], "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00021W", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000021W", "commonName": "Bermondsey Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.498049, "lon": -0.064773}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490012729D", "indicator": "Stop D", "stopLetter": "D", "modes": ["bus"], "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00021W", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490012729D", "commonName": "Bermondsey Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.498088, "lon": -0.06552}], "lat": 51.498049, "lon": -0.064773}, {"$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": "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}], "lat": 51.49775, "lon": -0.063993}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "940GZZLUBND", "modes": ["tube"], "icsCode": "1000025", "stopType": "NaptanMetroStation", "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"}, {"$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": ["jubilee"]}, {"$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": ["jubilee", "central"]}], "status": true, "id": "940GZZLUBND", "commonName": "Bond Street 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": "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": "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"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.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": "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": "Lifts", "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": "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": "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": "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": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_106"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_141"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_180"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_210"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_301"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_348"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_366"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_400"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_514"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5633"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5302"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5139"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5576"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5668"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5607"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_4334"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5862"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_4171"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_4787"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_4802"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5195"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5617"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5239"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5820"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_4676"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5565"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_4871"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5611"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5104"}], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490G00025BV", "modes": ["bus"], "icsCode": "1000025", "stopType": "NaptanOnstreetBusCoachStopCluster", "stationNaptan": "940GZZLUBND", "hubNaptanCode": "HUBBDS", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490G00025BV", "commonName": "Bond Street Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.514304, "lon": -0.149723}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490G00025BW", "modes": ["bus"], "icsCode": "1000025", "stopType": "NaptanOnstreetBusCoachStopCluster", "stationNaptan": "940GZZLUBND", "hubNaptanCode": "HUBBDS", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490G00025BW", "commonName": "Bond Street Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.514304, "lon": -0.149723}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "4900BONDST0", "indicator": "Entrance 8", "stopLetter": "8", "modes": [], "icsCode": "1000025", "stopType": "NaptanRailEntrance", "stationNaptan": "940GZZLUBND", "hubNaptanCode": "HUBBDS", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "4900BONDST0", "commonName": "Bond Street Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.513416, "lon": -0.148836}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "4900BONDST1", "indicator": "Entrance 9", "stopLetter": "9", "modes": [], "icsCode": "1000025", "stopType": "NaptanRailEntrance", "stationNaptan": "940GZZLUBND", "hubNaptanCode": "HUBBDS", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "4900BONDST1", "commonName": "Bond Street Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.514045, "lon": -0.144775}, {"$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": "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}], "lat": 51.514304, "lon": -0.149723}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "940GZZLUBNK", "modes": ["tube"], "icsCode": "1000013", "stopType": "NaptanMetroStation", "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"}, {"$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"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "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": ["central"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "940GZZLUBNK", "lineIdentifier": ["waterloo-city"]}, {"$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": ["central", "waterloo-city", "northern"]}], "status": true, "id": "940GZZLUBNK", "commonName": "Bank 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": "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"}, {"$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": "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": "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": "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": "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": "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_101"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_120"}, {"$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_427"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_579"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_587"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5907"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5901"}, {"$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_5897"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5919"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5921"}], "children": [{"$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": "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}], "lat": 51.513356, "lon": -0.088899}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "940GZZLUBOR", "modes": ["tube", "bus"], "icsCode": "1000026", "stopType": "NaptanMetroStation", "stationNaptan": "940GZZLUBOR", "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": "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": "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": "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": "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": "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": "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", "naptanIdReference": "490000026A", "stationAtcoCode": "490G00026B", "lineIdentifier": ["c10", "35", "133", "n343", "n133", "343"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490000026D", "stationAtcoCode": "490G00026B", "lineIdentifier": ["c10", "35", "n343", "343"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490000026C", "stationAtcoCode": "490G00026B", "lineIdentifier": ["133", "n133"]}, {"$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": "bus", "lineIdentifier": ["c10", "35", "133", "n343", "n133", "343"]}, {"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["northern"]}], "status": true, "id": "940GZZLUBOR", "commonName": "Borough 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": "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": "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": "Help Points", "sourceSystemKey": "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": "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": "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 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"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_125"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_194"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_196"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_249"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_269"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_295"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_317"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_645"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5578"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5502"}], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490G00026B", "modes": ["bus"], "stopType": "NaptanOnstreetBusCoachStopCluster", "stationNaptan": "490G00026B", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490G00026B", "commonName": "Borough Station", "placeType": "StopPoint", "additionalProperties": [], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000026A", "indicator": "Stop A", "stopLetter": "A", "modes": ["bus"], "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00026B", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000026A", "commonName": "Borough Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.50064, "lon": -0.093926}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000026C", "indicator": "Stop C", "stopLetter": "C", "modes": ["bus"], "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00026B", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000026C", "commonName": "Borough Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.501103, "lon": -0.093662}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000026D", "indicator": "Stop D", "stopLetter": "D", "modes": ["bus"], "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00026B", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000026D", "commonName": "Borough Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.50084, "lon": -0.094091}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000026W", "indicator": "Stop", "modes": ["bus"], "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00026B", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000026W", "commonName": "Borough Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.501375, "lon": -0.09378}], "lat": 51.50064, "lon": -0.093926}, {"$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": "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}], "lat": 51.501199, "lon": -0.09337}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "940GZZLUBOS", "modes": ["tube", "bus"], "icsCode": "1000027", "stopType": "NaptanMetroStation", "stationNaptan": "940GZZLUBOS", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "195", "name": "195", "uri": "/Line/195", "type": "Line", "crowding": {"$type": "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": "e8", "name": "E8", "uri": "/Line/e8", "type": "Line", "crowding": {"$type": "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": "490000027A", "stationAtcoCode": "490G00027A", "lineIdentifier": ["195", "e8"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490000027B", "stationAtcoCode": "490G00027A", "lineIdentifier": ["195", "e8"]}, {"$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": "bus", "lineIdentifier": ["195", "e8"]}, {"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["piccadilly"]}], "status": true, "id": "940GZZLUBOS", "commonName": "Boston Manor 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": "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": "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": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "4"}, {"$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": "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": "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"}], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490G00027A", "modes": ["bus"], "icsCode": "1000027", "stopType": "NaptanOnstreetBusCoachStopCluster", "stationNaptan": "490G00027A", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490G00027A", "commonName": "Boston Manor Station", "placeType": "StopPoint", "additionalProperties": [], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000027A", "indicator": "Stop U", "stopLetter": "U", "modes": ["bus"], "icsCode": "1000027", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00027A", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000027A", "commonName": "Boston Manor Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.495921, "lon": -0.324972}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000027B", "indicator": "Stop N", "stopLetter": "N", "modes": ["bus"], "icsCode": "1000027", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00027A", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000027B", "commonName": "Boston Manor Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.495728, "lon": -0.324014}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000027S", "indicator": "->W", "stopLetter": "->W", "modes": ["bus"], "icsCode": "1000027", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00027A", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000027S", "commonName": "Boston Manor Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.49566, "lon": -0.324319}], "lat": 51.495921, "lon": -0.324972}, {"$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": "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}], "lat": 51.495635, "lon": -0.324939}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "940GZZLUBSC", "modes": ["tube"], "icsCode": "1000017", "stopType": "NaptanMetroStation", "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"}, {"$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": ["piccadilly"]}, {"$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": ["piccadilly", "district"]}], "status": true, "id": "940GZZLUBSC", "commonName": "Barons Court 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": "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": "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": "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": "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": "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": "Toilets", "sourceSystemKey": "StaticObjects", "value": "yes - male & female coin op"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.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": "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": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_608"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_633"}, {"$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": "BikePoints_635"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_696"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_707"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_770"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_4595"}], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490G00017E", "modes": ["bus"], "icsCode": "1000017", "stopType": "NaptanOnstreetBusCoachStopCluster", "stationNaptan": "940GZZLUBSC", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490G00017E", "commonName": "Barons Court", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.490311, "lon": -0.213427}, {"$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": "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}], "lat": 51.490311, "lon": -0.213427}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "940GZZLUBST", "modes": ["bus", "tube"], "icsCode": "1000011", "stopType": "NaptanMetroStation", "stationNaptan": "940GZZLUBST", "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "205", "name": "205", "uri": "/Line/205", "type": "Line", "crowding": {"$type": "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": "490000011A", "stationAtcoCode": "490G00011B", "lineIdentifier": ["74", "189", "13", "274", "n74"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490000011D", "stationAtcoCode": "490G00011D", "lineIdentifier": ["74", "n18", "n27", "30", "27", "n205", "18", "453", "n74", "205"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "940GZZLUBST", "lineIdentifier": ["metropolitan"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490000011ZZ", "stationAtcoCode": "490G00011B", "lineIdentifier": ["139", "189", "113", "13", "274", "n113"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490000011B", "stationAtcoCode": "490G00011B", "lineIdentifier": ["139", "113", "n113"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490000011E", "stationAtcoCode": "490G00011D", "lineIdentifier": ["n18", "n27", "30", "27", "n205", "18", "453", "205"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "940GZZLUBST", "lineIdentifier": ["hammersmith-city", "circle"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "940GZZLUBST", "lineIdentifier": ["jubilee"]}, {"$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": "bus", "lineIdentifier": ["74", "139", "n18", "n27", "30", "189", "113", "27", "n205", "13", "18", "453", "274", "n74", "n113", "205"]}, {"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["metropolitan", "hammersmith-city", "circle", "jubilee", "bakerloo"]}], "status": true, "id": "940GZZLUBST", "commonName": "Baker Street Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_43"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_45"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_56"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_114"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_121"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_201"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_242"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_257"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_315"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_4975"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5590"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_4404"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5823"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5894"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "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": "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": "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": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$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": "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": "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": "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": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "21"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "ServiceInfo", "key": "Night", "sourceSystemKey": "TransXchangeETL", "value": "yes"}], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490G00011B", "modes": ["bus"], "icsCode": "1000011", "stopType": "NaptanOnstreetBusCoachStopCluster", "stationNaptan": "490G00011B", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490G00011B", "commonName": "Baker Street Station", "placeType": "StopPoint", "additionalProperties": [], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000011A", "indicator": "Stop A", "stopLetter": "A", "modes": ["bus"], "icsCode": "1000011", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00011B", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000011A", "commonName": "Baker Street Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.523508, "lon": -0.158129}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000011B", "indicator": "Stop B", "stopLetter": "B", "modes": ["bus"], "icsCode": "1000011", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00011B", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000011B", "commonName": "Baker Street Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.522566, "lon": -0.157705}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000011S1", "indicator": "->S1", "modes": ["bus"], "icsCode": "1000011", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00011B", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000011S1", "commonName": "Baker Street Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.523417, "lon": -0.158031}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000011S2", "indicator": "->S2", "modes": ["bus"], "icsCode": "1000011", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00011B", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000011S2", "commonName": "Baker Street Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.522529, "lon": -0.157606}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000011ZY", "indicator": "->S2", "modes": ["bus"], "icsCode": "1000011", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00011B", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000011ZY", "commonName": "Baker Street Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.524893, "lon": -0.159817}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000011ZZ", "indicator": "Stop C", "stopLetter": "C", "modes": ["bus"], "icsCode": "1000011", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00011B", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000011ZZ", "commonName": "Baker Street Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.522849, "lon": -0.157939}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490006135S", "indicator": "Stop S", "stopLetter": "S", "modes": ["bus"], "icsCode": "1000011", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00011B", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490006135S", "commonName": "Baker Street Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.522424, "lon": -0.160089}], "lat": 51.524893, "lon": -0.159817}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490G00011D", "modes": ["bus"], "icsCode": "1000011", "stopType": "NaptanOnstreetBusCoachStopCluster", "stationNaptan": "490G00011D", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490G00011D", "commonName": "Baker Street Station", "placeType": "StopPoint", "additionalProperties": [], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000011D", "indicator": "Stop D", "stopLetter": "D", "modes": ["bus"], "icsCode": "1000011", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00011D", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000011D", "commonName": "Baker Street Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.522418, "lon": -0.156284}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000011E", "indicator": "Stop E", "stopLetter": "E", "modes": ["bus"], "icsCode": "1000011", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00011D", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000011E", "commonName": "Baker Street Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.52222, "lon": -0.156263}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000011E1", "indicator": "Stop", "modes": ["bus"], "icsCode": "1000011", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00011D", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000011E1", "commonName": "Baker Street Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.522355, "lon": -0.156835}], "lat": 51.522418, "lon": -0.156284}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490G00011W", "modes": ["bus"], "icsCode": "1000011", "stopType": "NaptanOnstreetBusCoachStopCluster", "stationNaptan": "940GZZLUBST", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490G00011W", "commonName": "Baker Street Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.522883, "lon": -0.15713}, {"$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": "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}], "lat": 51.522883, "lon": -0.15713}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "940GZZLUBTK", "modes": ["bus", "tube"], "icsCode": "1000034", "stopType": "NaptanMetroStation", "stationNaptan": "940GZZLUBTK", "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": "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": "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": "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": "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": "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"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490000034N", "stationAtcoCode": "490G00034M", "lineIdentifier": ["114", "n5", "605", "302", "204", "251"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490000034S", "stationAtcoCode": "490G00034M", "lineIdentifier": ["114", "n5", "302"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490000034R", "stationAtcoCode": "490G00034M", "lineIdentifier": ["605", "204", "251"]}, {"$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": "bus", "lineIdentifier": ["114", "n5", "605", "302", "204", "251"]}, {"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["northern"]}], "status": true, "id": "940GZZLUBTK", "commonName": "Burnt Oak 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": "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": "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": "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": "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": "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": "Payphones", "sourceSystemKey": "StaticObjects", "value": "3"}], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490G00034M", "modes": ["bus"], "icsCode": "1000034", "stopType": "NaptanOnstreetBusCoachStopCluster", "stationNaptan": "490G00034M", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490G00034M", "commonName": "Burnt Oak Station", "placeType": "StopPoint", "additionalProperties": [], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000034N", "indicator": "Stop N", "stopLetter": "N", "modes": ["bus"], "icsCode": "1000034", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00034M", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000034N", "commonName": "Burnt Oak Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.602565, "lon": -0.264041}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000034R", "indicator": "Stop R", "stopLetter": "R", "modes": ["bus"], "icsCode": "1000034", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00034M", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000034R", "commonName": "Burnt Oak Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.601975, "lon": -0.264858}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000034S", "indicator": "Stop S", "stopLetter": "S", "modes": ["bus"], "icsCode": "1000034", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00034M", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000034S", "commonName": "Burnt Oak Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.602036, "lon": -0.264726}], "lat": 51.602036, "lon": -0.264726}, {"$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": "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}], "lat": 51.602774, "lon": -0.264048}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "940GZZLUBTX", "modes": ["bus", "tube"], "icsCode": "1000030", "stopType": "NaptanMetroStation", "stationNaptan": "940GZZLUBTX", "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": "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": "232", "name": "232", "uri": "/Line/232", "type": "Line", "crowding": {"$type": "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": "490007994Y", "stationAtcoCode": "490G00030Q", "lineIdentifier": ["112", "232"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490000030R", "stationAtcoCode": "490G00030Q", "lineIdentifier": ["210"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490000030Q", "stationAtcoCode": "490G00030Q", "lineIdentifier": ["210"]}, {"$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": "bus", "lineIdentifier": ["112", "210", "232"]}, {"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["northern"]}], "status": true, "id": "940GZZLUBTX", "commonName": "Brent Cross 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": "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": "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": "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": "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_5851"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "CarParks_800467"}], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490G00030Q", "modes": ["bus"], "icsCode": "1000030", "stopType": "NaptanOnstreetBusCoachStopCluster", "stationNaptan": "490G00030Q", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490G00030Q", "commonName": "Brent Cross Station", "placeType": "StopPoint", "additionalProperties": [], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000030Q", "indicator": "Stop Q", "stopLetter": "Q", "modes": ["bus"], "icsCode": "1000030", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00030Q", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000030Q", "commonName": "Brent Cross Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.57648, "lon": -0.213225}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000030R", "indicator": "Stop R", "stopLetter": "R", "modes": ["bus"], "icsCode": "1000030", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00030Q", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000030R", "commonName": "Brent Cross Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.576379, "lon": -0.213041}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490007994Y", "indicator": "Stop Y", "stopLetter": "Y", "modes": ["bus"], "icsCode": "1000030", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00030Q", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490007994Y", "commonName": "Brent Cross Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.5778, "lon": -0.215425}], "lat": 51.5778, "lon": -0.215425}, {"$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": "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}], "lat": 51.57665, "lon": -0.213622}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "940GZZLUBWR", "modes": ["tube", "bus"], "icsCode": "1000029", "stopType": "NaptanMetroStation", "stationNaptan": "940GZZLUBWR", "lines": [{"$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": "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"}, {"$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": "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": "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": "n25", "name": "N25", "uri": "/Line/n25", "type": "Line", "crowding": {"$type": "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": "490000029Q", "stationAtcoCode": "490G00029Q", "lineIdentifier": ["n205", "205", "25", "425", "n25"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490000029Z", "stationAtcoCode": "490G00029Q", "lineIdentifier": ["n205", "205", "25", "425", "n25"]}, {"$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": "bus", "lineIdentifier": ["n205", "205", "25", "425", "n25"]}, {"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["hammersmith-city", "district"]}], "status": true, "id": "940GZZLUBWR", "commonName": "Bow Road 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": "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": "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": "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": "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": "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": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_470"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_472"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_495"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_497"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_498"}], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490G00029Q", "modes": ["bus"], "icsCode": "1000029", "stopType": "NaptanOnstreetBusCoachStopCluster", "stationNaptan": "490G00029Q", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490G00029Q", "commonName": "Bow Road Station", "placeType": "StopPoint", "additionalProperties": [], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000029Q", "indicator": "Stop Y", "stopLetter": "Y", "modes": ["bus"], "icsCode": "1000029", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00029Q", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000029Q", "commonName": "Bow Road Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.527016, "lon": -0.026033}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000029Z", "indicator": "Stop Z", "stopLetter": "Z", "modes": ["bus"], "icsCode": "1000029", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00029Q", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000029Z", "commonName": "Bow Road Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.527351, "lon": -0.024029}], "lat": 51.527016, "lon": -0.026033}, {"$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": "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}], "lat": 51.52694, "lon": -0.025128}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "940GZZLUBWT", "modes": ["bus", "tube"], "icsCode": "1000018", "stopType": "NaptanMetroStation", "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"}, {"$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": "940GZZLUBWT", "lineIdentifier": ["district", "circle"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490000018P", "stationAtcoCode": "490G00018P", "lineIdentifier": ["70"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["district", "circle"]}, {"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "bus", "lineIdentifier": ["70"]}], "status": true, "id": "940GZZLUBWT", "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": "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": "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": "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": "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": "Other Facilities", "sourceSystemKey": "StaticObjects", "value": "electronic whiteboards in ticket hall."}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_29"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_105"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_164"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_224"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_261"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_307"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_568"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_584"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5653"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5859"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_4213"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5975"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5036"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_4529"}], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490G00018P", "modes": ["bus"], "icsCode": "1000018", "stopType": "NaptanOnstreetBusCoachStopCluster", "stationNaptan": "490G00018P", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490G00018P", "commonName": "Bayswater Station", "placeType": "StopPoint", "additionalProperties": [], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000018P", "indicator": "Stop P", "stopLetter": "P", "modes": ["bus"], "icsCode": "1000018", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00018P", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000018P", "commonName": "Bayswater Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.512602, "lon": -0.18768}], "lat": 51.512602, "lon": -0.18768}, {"$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": "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}], "lat": 51.512284, "lon": -0.187938}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "940GZZLUBXN", "modes": ["tube"], "icsCode": "1000031", "stopType": "NaptanMetroStation", "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": "940GZZLUBXN", "commonName": "Brixton 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": "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": "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": "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": "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": "Brixton Underground Station,London Underground Ltd.,Brixton Rd,London,SW9 8HE"}, {"$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": "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, 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": "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": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_831"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_832"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_833"}], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490G00031E", "modes": ["bus"], "icsCode": "1000031", "stopType": "NaptanOnstreetBusCoachStopCluster", "stationNaptan": "490G00031E", "hubNaptanCode": "HUBBRX", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490G00031E", "commonName": "Brixton Station", "placeType": "StopPoint", "additionalProperties": [], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000031E", "indicator": "Stop L", "stopLetter": "L", "modes": ["bus"], "icsCode": "1000031", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00031E", "hubNaptanCode": "HUBBRX", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000031E", "commonName": "Brixton Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.462973, "lon": -0.113592}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000031W", "indicator": "Stop LA", "stopLetter": "LA", "modes": ["bus"], "icsCode": "1000031", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00031E", "hubNaptanCode": "HUBBRX", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000031W", "commonName": "Brixton Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.463049, "lon": -0.114395}], "lat": 51.463049, "lon": -0.114395}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490G00031N", "modes": ["bus"], "icsCode": "1000031", "stopType": "NaptanOnstreetBusCoachStopCluster", "stationNaptan": "490G00031N", "hubNaptanCode": "HUBBRX", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490G00031N", "commonName": "Brixton Station", "placeType": "StopPoint", "additionalProperties": [], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000031N", "indicator": "Stop N", "stopLetter": "N", "modes": ["bus"], "icsCode": "1000031", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00031N", "hubNaptanCode": "HUBBRX", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000031N", "commonName": "Brixton Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.462117, "lon": -0.115139}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000031P", "indicator": "Stop P", "stopLetter": "P", "modes": ["bus"], "icsCode": "1000031", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00031N", "hubNaptanCode": "HUBBRX", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000031P", "commonName": "Brixton Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.461795, "lon": -0.115253}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000031Q", "indicator": "Stop Q", "stopLetter": "Q", "modes": ["bus"], "icsCode": "1000031", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00031N", "hubNaptanCode": "HUBBRX", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000031Q", "commonName": "Brixton Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.461617, "lon": -0.115361}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000031R", "indicator": "Stop R", "stopLetter": "R", "modes": ["bus"], "icsCode": "1000031", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00031N", "hubNaptanCode": "HUBBRX", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000031R", "commonName": "Brixton Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.462236, "lon": -0.115292}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000031S", "indicator": "Stop S", "stopLetter": "S", "modes": ["bus"], "icsCode": "1000031", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00031N", "hubNaptanCode": "HUBBRX", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000031S", "commonName": "Brixton Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.462137, "lon": -0.115282}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000031T", "indicator": "Stop T", "stopLetter": "T", "modes": ["bus"], "icsCode": "1000031", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00031N", "hubNaptanCode": "HUBBRX", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000031T", "commonName": "Brixton Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.461968, "lon": -0.115376}], "lat": 51.462117, "lon": -0.115139}, {"$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": "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}], "lat": 51.462618, "lon": -0.114888}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "940GZZLUBZP", "modes": ["tube", "bus"], "icsCode": "1000020", "stopType": "NaptanMetroStation", "stationNaptan": "940GZZLUBZP", "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": "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": "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": "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", "naptanIdReference": "490000020K", "stationAtcoCode": "490G00020L", "lineIdentifier": ["c11", "n5", "1"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490000020L", "stationAtcoCode": "490G00020L", "lineIdentifier": ["c11", "n5", "1"]}, {"$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": "bus", "lineIdentifier": ["c11", "n5", "1"]}, {"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["northern"]}], "status": true, "id": "940GZZLUBZP", "commonName": "Belsize Park 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": "Photo 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": "Cash Machines", "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": "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": "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": "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": "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_5609"}], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490G00020L", "modes": ["bus"], "icsCode": "1000020", "stopType": "NaptanOnstreetBusCoachStopCluster", "stationNaptan": "490G00020L", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490G00020L", "commonName": "Belsize Park Station", "placeType": "StopPoint", "additionalProperties": [], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000020K", "indicator": "Stop K", "stopLetter": "K", "modes": ["bus"], "icsCode": "1000020", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00020L", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000020K", "commonName": "Belsize Park Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.550697, "lon": -0.165281}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000020L", "indicator": "Stop L", "stopLetter": "L", "modes": ["bus"], "icsCode": "1000020", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00020L", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000020L", "commonName": "Belsize Park Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.550749, "lon": -0.165192}], "lat": 51.550697, "lon": -0.165281}, {"$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": "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}], "lat": 51.550311, "lon": -0.164648}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "940GZZLUCAL", "modes": ["tube"], "icsCode": "1000042", "stopType": "NaptanMetroStation", "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": "940GZZLUCAL", "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": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$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": "Facility", "key": "Toilets", "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": "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": "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": "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": "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": "Accessibility", "key": "AccessViaLift", "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": "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": "BlueBadgeCarParkSpaces", "sourceSystemKey": "LRAD", "value": "5"}, {"$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": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "CarParks_800440"}], "children": [{"$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": "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}], "lat": 51.667985, "lon": -0.560689}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "940GZZLUCAR", "modes": ["tube", "bus"], "icsCode": "1000035", "stopType": "NaptanMetroStation", "stationNaptan": "940GZZLUCAR", "lines": [{"$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": "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": "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"}, {"$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", "naptanIdReference": "490000035A", "stationAtcoCode": "490G00035A", "lineIdentifier": ["259", "91", "17", "n91"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490000035D", "stationAtcoCode": "490G00035A", "lineIdentifier": ["259", "91", "17", "n91"]}, {"$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": "bus", "lineIdentifier": ["259", "91", "17", "n91"]}, {"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["piccadilly"]}], "status": true, "id": "940GZZLUCAR", "commonName": "Caledonian Road 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": "Photo 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": "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": "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": "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": "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": "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": "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": "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": "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": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490G00035A", "modes": ["bus"], "icsCode": "1000035", "stopType": "NaptanOnstreetBusCoachStopCluster", "stationNaptan": "490G00035A", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490G00035A", "commonName": "Caledonian Road Station", "placeType": "StopPoint", "additionalProperties": [], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000035A", "indicator": "Stop A", "stopLetter": "A", "modes": ["bus"], "icsCode": "1000035", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00035A", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000035A", "commonName": "Caledonian Road Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.548104, "lon": -0.117962}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000035D", "indicator": "Stop D", "stopLetter": "D", "modes": ["bus"], "icsCode": "1000035", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00035A", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000035D", "commonName": "Caledonian Road Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.548125, "lon": -0.118149}], "lat": 51.548104, "lon": -0.117962}, {"$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": "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}], "lat": 51.548519, "lon": -0.118493}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "940GZZLUCFM", "modes": ["bus", "tube"], "icsCode": "1000043", "stopType": "NaptanMetroStation", "stationNaptan": "940GZZLUCFM", "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": "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": "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": "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": "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": "393", "name": "393", "uri": "/Line/393", "type": "Line", "crowding": {"$type": "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": "490000043CC", "stationAtcoCode": "490G00043CD", "lineIdentifier": ["1", "n5", "393"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490000043CD", "stationAtcoCode": "490G00043CD", "lineIdentifier": ["1", "n5", "393"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490000043CA", "stationAtcoCode": "490G00043CD", "lineIdentifier": ["n28", "31", "n31"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490000043CB", "stationAtcoCode": "490G00043CD", "lineIdentifier": ["n28", "31", "n31"]}, {"$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": "bus", "lineIdentifier": ["1", "n5", "n28", "31", "n31", "393"]}, {"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["northern"]}], "status": true, "id": "940GZZLUCFM", "commonName": "Chalk Farm 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": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5772"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5818"}, {"$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": "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": "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": "no"}, {"$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": "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": "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": "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": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490G00043CD", "modes": ["bus"], "icsCode": "1000043", "stopType": "NaptanOnstreetBusCoachStopCluster", "stationNaptan": "490G00043CD", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490G00043CD", "commonName": "Chalk Farm Station", "placeType": "StopPoint", "additionalProperties": [], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000043CA", "indicator": "Stop CA", "stopLetter": "CA", "modes": ["bus"], "icsCode": "1000043", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00043CD", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000043CA", "commonName": "Chalk Farm Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.543974, "lon": -0.154029}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000043CB", "indicator": "Stop CB", "stopLetter": "CB", "modes": ["bus"], "icsCode": "1000043", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00043CD", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000043CB", "commonName": "Chalk Farm Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.543878, "lon": -0.15422}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000043CC", "indicator": "Stop CC", "stopLetter": "CC", "modes": ["bus"], "icsCode": "1000043", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00043CD", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000043CC", "commonName": "Chalk Farm Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.544368, "lon": -0.153926}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000043CD", "indicator": "Stop CD", "stopLetter": "CD", "modes": ["bus"], "icsCode": "1000043", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00043CD", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000043CD", "commonName": "Chalk Farm Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.544644, "lon": -0.153742}], "lat": 51.543878, "lon": -0.15422}, {"$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": "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}], "lat": 51.544118, "lon": -0.153388}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "940GZZLUCGN", "modes": ["tube"], "icsCode": "1000056", "stopType": "NaptanMetroStation", "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": "940GZZLUCGN", "commonName": "Covent Garden Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5516"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5737"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5875"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5090"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5767"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5965"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5481"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_3915"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5395"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5867"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5264"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5365"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5758"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5331"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_338"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_358"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_383"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_386"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_388"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_562"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_594"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_751"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5506"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_3914"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5364"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5171"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.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": "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": "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": "Help Points", "sourceSystemKey": "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": "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": "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": "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_18"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_64"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_244"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_283"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_335"}, {"$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": "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": "Escalators", "sourceSystemKey": "StaticObjects", "value": "0"}], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490G00056E", "modes": ["bus"], "icsCode": "1000056", "stopType": "NaptanOnstreetBusCoachStopCluster", "stationNaptan": "940GZZLUCGN", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490G00056E", "commonName": "Covent Garden Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.513093, "lon": -0.124436}, {"$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": "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}], "lat": 51.513093, "lon": -0.124436}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "940GZZLUCGT", "modes": ["tube"], "icsCode": "1000039", "stopType": "NaptanMetroStation", "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": "940GZZLUCGT", "commonName": "Canning Town 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": "Cash Machines", "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": "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": "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": "10"}, {"$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": "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": "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": "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": "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": "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 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"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "ToiletNote", "sourceSystemKey": "LRAD", "value": "(bus station)"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5301"}], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "4900ZZDLCGT2", "indicator": "Entrance 1", "stopLetter": "1", "modes": [], "icsCode": "1000039", "stopType": "NaptanMetroEntrance", "stationNaptan": "940GZZLUCGT", "hubNaptanCode": "HUBCAN", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "4900ZZDLCGT2", "commonName": "Canning Town Underground Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.514584, "lon": 0.008135}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "4900ZZDLCGT3", "indicator": "Entrance 2", "stopLetter": "2", "modes": [], "icsCode": "1000039", "stopType": "NaptanMetroEntrance", "stationNaptan": "940GZZLUCGT", "hubNaptanCode": "HUBCAN", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "4900ZZDLCGT3", "commonName": "Canning Town Underground Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.514464, "lon": 0.007251}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "4900ZZDLCGT4", "indicator": "Entrance 3", "stopLetter": "3", "modes": [], "icsCode": "1000039", "stopType": "NaptanMetroEntrance", "stationNaptan": "940GZZLUCGT", "hubNaptanCode": "HUBCAN", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "4900ZZDLCGT4", "commonName": "Canning Town Underground Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.514911, "lon": 0.007948}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "4900ZZDLCGT5", "indicator": "Entrance 4", "stopLetter": "4", "modes": [], "icsCode": "1000039", "stopType": "NaptanMetroEntrance", "stationNaptan": "940GZZLUCGT", "hubNaptanCode": "HUBCAN", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "4900ZZDLCGT5", "commonName": "Canning Town Underground Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.514671, "lon": 0.008312}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "4900ZZDLCGT6", "indicator": "Entrance 5", "stopLetter": "5", "modes": [], "icsCode": "1000039", "stopType": "NaptanMetroEntrance", "stationNaptan": "940GZZLUCGT", "hubNaptanCode": "HUBCAN", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "4900ZZDLCGT6", "commonName": "Canning Town Underground Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.513885, "lon": 0.008998}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "4900ZZDLCGT7", "indicator": "Entrance 6", "stopLetter": "6", "modes": [], "icsCode": "1000039", "stopType": "NaptanMetroEntrance", "stationNaptan": "940GZZLUCGT", "hubNaptanCode": "HUBCAN", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "4900ZZDLCGT7", "commonName": "Canning Town Underground Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.513314, "lon": 0.009276}, {"$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}], "lat": 51.513584, "lon": 0.008322}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "940GZZLUCHL", "modes": ["bus", "tube"], "icsCode": "1000044", "stopType": "NaptanMetroStation", "stationNaptan": "940GZZLUCHL", "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": "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": "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": "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": "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": "59", "name": "59", "uri": "/Line/59", "type": "Line", "crowding": {"$type": "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": "490000044F", "stationAtcoCode": "490G00044E", "lineIdentifier": ["133", "n8", "n242", "n25", "8", "59"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490000044E", "stationAtcoCode": "490G00044E", "lineIdentifier": ["133", "n8", "n242", "n25", "8", "59"]}, {"$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": "bus", "lineIdentifier": ["133", "n8", "n242", "n25", "8", "59"]}, {"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["central"]}], "status": true, "id": "940GZZLUCHL", "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": "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": "Bridge", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_67"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_22"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_66"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_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": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5904"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_3528"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_4205"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5912"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5620"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_4204"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5676"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_147"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_232"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_436"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_546"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_84"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_68"}, {"$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": "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": "Facility", "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": "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": "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": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_835"}], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490G00044E", "modes": ["bus"], "icsCode": "1000044", "stopType": "NaptanOnstreetBusCoachStopCluster", "stationNaptan": "490G00044E", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490G00044E", "commonName": "Chancery Lane Station", "placeType": "StopPoint", "additionalProperties": [], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000044E", "indicator": "Stop E", "stopLetter": "E", "modes": ["bus"], "icsCode": "1000044", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00044E", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000044E", "commonName": "Chancery Lane Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.518384, "lon": -0.112413}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000044F", "indicator": "Stop F", "stopLetter": "F", "modes": ["bus"], "icsCode": "1000044", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00044E", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000044F", "commonName": "Chancery Lane Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.518165, "lon": -0.112177}], "lat": 51.518384, "lon": -0.112413}, {"$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": "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}], "lat": 51.518247, "lon": -0.111583}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "940GZZLUCHX", "modes": ["tube"], "icsCode": "1000045", "stopType": "NaptanMetroStation", "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"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "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": ["bakerloo"]}, {"$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": ["bakerloo", "northern"]}], "status": true, "id": "940GZZLUCHX", "commonName": "Charing Cross 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": "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": "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": "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": "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": "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": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_64"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_83"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_160"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_226"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_229"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_233"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_325"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_341"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_354"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5596"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5016"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5670"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5364"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5325"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5281"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5671"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5737"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_4470"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5855"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_4982"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5681"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5853"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5867"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5854"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5856"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5758"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5572"}], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490G00045", "modes": ["bus"], "icsCode": "1000045", "stopType": "NaptanOnstreetBusCoachStopCluster", "stationNaptan": "490G00045", "hubNaptanCode": "HUBCHX", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490G00045", "commonName": "Charing Cross Stn / Trafalgar Square", "placeType": "StopPoint", "additionalProperties": [], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490013766E", "indicator": "Stop E", "stopLetter": "E", "modes": ["bus"], "icsCode": "1000045", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00045", "hubNaptanCode": "HUBCHX", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490013766E", "commonName": "Charing Cross Stn / Trafalgar Square", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.508044, "lon": -0.126487}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490013766H", "indicator": "Stop H", "stopLetter": "H", "modes": ["bus"], "icsCode": "1000045", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00045", "hubNaptanCode": "HUBCHX", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490013766H", "commonName": "Charing Cross Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.508433, "lon": -0.12552}], "lat": 51.508044, "lon": -0.126487}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "4900CHRX0", "indicator": "Entrance 9", "stopLetter": "9", "modes": [], "icsCode": "1000045", "stopType": "NaptanRailEntrance", "stationNaptan": "940GZZLUCHX", "hubNaptanCode": "HUBCHX", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "4900CHRX0", "commonName": "London Charing Cross Rail Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.508118, "lon": -0.124971}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "4900CHRX1", "indicator": "Entrance 12", "stopLetter": "12", "modes": [], "icsCode": "1000045", "stopType": "NaptanRailEntrance", "stationNaptan": "940GZZLUCHX", "hubNaptanCode": "HUBCHX", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "4900CHRX1", "commonName": "London Charing Cross Rail Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.508061, "lon": -0.124224}, {"$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": "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}], "lat": 51.50741, "lon": -0.127277}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "940GZZLUCKS", "modes": ["tube", "bus"], "icsCode": "1000053", "stopType": "NaptanMetroStation", "stationNaptan": "940GZZLUCKS", "lines": [{"$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": "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": "299", "name": "299", "uri": "/Line/299", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "699", "name": "699", "uri": "/Line/699", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "298", "name": "298", "uri": "/Line/298", "type": "Line", "crowding": {"$type": "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": "490000053B", "stationAtcoCode": "490G00053N2", "lineIdentifier": ["384", "n91", "299", "699", "298"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490000053N2", "stationAtcoCode": "490G00053N2", "lineIdentifier": ["384", "n91", "299"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "940GZZLUCKS", "lineIdentifier": ["piccadilly"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490000053A", "stationAtcoCode": "490G00053N2", "lineIdentifier": ["699", "298"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "bus", "lineIdentifier": ["384", "n91", "299", "699", "298"]}, {"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["piccadilly"]}], "status": true, "id": "940GZZLUCKS", "commonName": "Cockfosters 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": "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": "Cockfosters Station,London Underground Ltd.,Cockfosters Rd,Barnet,Herts,EN4 0DZ"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, 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": "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": "Help Points", "sourceSystemKey": "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": "subway to street."}, {"$type": "Tfl.Api.Presentation.Entities.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_5343"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "CarParks_800470"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, 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": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490G00053N2", "modes": ["bus"], "icsCode": "1000053", "stopType": "NaptanOnstreetBusCoachStopCluster", "stationNaptan": "490G00053N2", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490G00053N2", "commonName": "Cockfosters Station", "placeType": "StopPoint", "additionalProperties": [], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000053A", "indicator": "Stop A", "stopLetter": "A", "modes": ["bus"], "icsCode": "1000053", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00053N2", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000053A", "commonName": "Cockfosters Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.651677, "lon": -0.150104}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000053B", "indicator": "Stop B", "stopLetter": "B", "modes": ["bus"], "icsCode": "1000053", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00053N2", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000053B", "commonName": "Cockfosters Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.651509, "lon": -0.149764}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000053N2", "indicator": "Stop", "modes": ["bus"], "icsCode": "1000053", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00053N2", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000053N2", "commonName": "Cockfosters Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.651476, "lon": -0.149939}], "lat": 51.651509, "lon": -0.149764}, {"$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": "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}], "lat": 51.65152, "lon": -0.149171}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "940GZZLUCND", "modes": ["bus", "tube"], "icsCode": "1000054", "stopType": "NaptanMetroStation", "stationNaptan": "940GZZLUCND", "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": "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": "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": "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": "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"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490000054CA", "stationAtcoCode": "490G00054CB", "lineIdentifier": ["125", "632", "n5", "642", "204", "303"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490000054CR", "stationAtcoCode": "490G00054CB", "lineIdentifier": ["125"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490000054ZT", "stationAtcoCode": "490G00054CB", "lineIdentifier": ["n5", "204", "303"]}, {"$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": "bus", "lineIdentifier": ["125", "632", "n5", "642", "204", "303"]}, {"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["northern"]}], "status": true, "id": "940GZZLUCND", "commonName": "Colindale 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": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "CarParks_800471"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.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": "ServiceInfo", "key": "Night", "sourceSystemKey": "TransXchangeETL", "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": "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": "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": "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": "4"}], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490G00054CB", "modes": ["bus"], "icsCode": "1000054", "stopType": "NaptanOnstreetBusCoachStopCluster", "stationNaptan": "490G00054CB", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490G00054CB", "commonName": "Colindale Station", "placeType": "StopPoint", "additionalProperties": [], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000054CA", "indicator": "Stop CA", "stopLetter": "CA", "modes": ["bus"], "icsCode": "1000054", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00054CB", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000054CA", "commonName": "Colindale Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.595649, "lon": -0.248828}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000054CB", "indicator": "Stop CB", "stopLetter": "CB", "modes": ["bus"], "icsCode": "1000054", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00054CB", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000054CB", "commonName": "Colindale Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.59512, "lon": -0.250162}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000054CR", "indicator": "Stop", "modes": ["bus"], "icsCode": "1000054", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00054CB", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000054CR", "commonName": "Colindale Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.595281, "lon": -0.250661}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000054ZT", "indicator": "Stop", "modes": ["bus"], "icsCode": "1000054", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00054CB", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000054ZT", "commonName": "Colindale Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.594545, "lon": -0.251397}], "lat": 51.595649, "lon": -0.248828}, {"$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": "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}], "lat": 51.595424, "lon": -0.249919}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "940GZZLUCPC", "modes": ["bus", "tube"], "icsCode": "1000050", "stopType": "NaptanMetroStation", "stationNaptan": "940GZZLUCPC", "lines": [{"$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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "n137", "name": "N137", "uri": "/Line/n137", "type": "Line", "crowding": {"$type": "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": "490000050K", "stationAtcoCode": "490G00050G", "lineIdentifier": ["35", "88", "417", "137", "37", "322", "345", "n137"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490000050E", "stationAtcoCode": "490G00050G", "lineIdentifier": ["35", "37", "322", "345", "690"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490000050D", "stationAtcoCode": "490G00050G", "lineIdentifier": ["88", "50", "155", "n155"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490000050G", "stationAtcoCode": "490G00050G", "lineIdentifier": ["50", "155", "n155"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490015234A", "stationAtcoCode": "490G00050A", "lineIdentifier": ["417", "137", "n137"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490015235R", "stationAtcoCode": "490G00050G", "lineIdentifier": ["249", "690"]}, {"$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": "bus", "lineIdentifier": ["35", "88", "50", "155", "417", "n155", "137", "37", "322", "249", "345", "690", "n137"]}, {"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["northern"]}], "status": true, "id": "940GZZLUCPC", "commonName": "Clapham Common 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": "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": "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": "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": "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": "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": "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": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_355"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5793"}, {"$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": "490G00050A", "modes": ["bus"], "icsCode": "1000050", "stopType": "NaptanOnstreetBusCoachStopCluster", "stationNaptan": "490G00050A", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490G00050A", "commonName": "Clapham Common Station", "placeType": "StopPoint", "additionalProperties": [], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490015234A", "indicator": "Stop A", "stopLetter": "A", "modes": ["bus"], "icsCode": "1000050", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00050A", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490015234A", "commonName": "Clapham Common Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.461881, "lon": -0.138672}], "lat": 51.461881, "lon": -0.138672}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490G00050G", "modes": ["bus"], "icsCode": "1000050", "stopType": "NaptanOnstreetBusCoachStopCluster", "stationNaptan": "490G00050G", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490G00050G", "commonName": "Clapham Common Station", "placeType": "StopPoint", "additionalProperties": [], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000050D", "indicator": "Stop D", "stopLetter": "D", "modes": ["bus"], "icsCode": "1000050", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00050G", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000050D", "commonName": "Clapham Common Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.461519, "lon": -0.138514}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000050E", "indicator": "Stop E", "stopLetter": "E", "modes": ["bus"], "icsCode": "1000050", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00050G", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000050E", "commonName": "Clapham Common Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.461406, "lon": -0.138763}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000050G", "indicator": "Stop G", "stopLetter": "G", "modes": ["bus"], "icsCode": "1000050", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00050G", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000050G", "commonName": "Clapham Common Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.461198, "lon": -0.138685}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000050K", "indicator": "Stop K", "stopLetter": "K", "modes": ["bus"], "icsCode": "1000050", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00050G", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000050K", "commonName": "Clapham Common Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.461523, "lon": -0.138211}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490015235R", "indicator": "Stop Z", "stopLetter": "Z", "modes": ["bus"], "icsCode": "1000050", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00050G", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490015235R", "commonName": "Clapham Common Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.460645, "lon": -0.139542}], "lat": 51.461519, "lon": -0.138514}, {"$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": "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}], "lat": 51.461742, "lon": -0.138317}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "940GZZLUCPK", "modes": ["bus", "tube"], "icsCode": "1000041", "stopType": "NaptanMetroStation", "stationNaptan": "940GZZLUCPK", "lines": [{"$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": "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": "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": "186", "name": "186", "uri": "/Line/186", "type": "Line", "crowding": {"$type": "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": "490000041A", "stationAtcoCode": "490G00041B", "lineIdentifier": ["340", "79", "186"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490000041B", "stationAtcoCode": "490G00041B", "lineIdentifier": ["340", "79", "186"]}, {"$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": "bus", "lineIdentifier": ["340", "79", "186"]}, {"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["jubilee"]}], "status": true, "id": "940GZZLUCPK", "commonName": "Canons Park 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": "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": "Facility", "key": "Help 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": "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": "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": "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": "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": "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": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "CarParks_800469"}], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490G00041B", "modes": ["bus"], "icsCode": "1000041", "stopType": "NaptanOnstreetBusCoachStopCluster", "stationNaptan": "490G00041B", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490G00041B", "commonName": "Canons Park Station", "placeType": "StopPoint", "additionalProperties": [], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000041A", "indicator": "Stop A", "stopLetter": "A", "modes": ["bus"], "icsCode": "1000041", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00041B", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000041A", "commonName": "Canons Park Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.607542, "lon": -0.294352}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000041B", "indicator": "Stop B", "stopLetter": "B", "modes": ["bus"], "icsCode": "1000041", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00041B", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000041B", "commonName": "Canons Park Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.607395, "lon": -0.295383}], "lat": 51.607395, "lon": -0.295383}, {"$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": "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}], "lat": 51.607701, "lon": -0.294693}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "940GZZLUCPN", "modes": ["bus", "tube"], "icsCode": "1000051", "stopType": "NaptanMetroStation", "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"}, {"$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": "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": "p5", "name": "P5", "uri": "/Line/p5", "type": "Line", "crowding": {"$type": "Tfl.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"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490000051F", "stationAtcoCode": "490G00051G", "lineIdentifier": ["345"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490000051D", "stationAtcoCode": "490G00051G", "lineIdentifier": ["322", "p5"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490000051N1", "stationAtcoCode": "490G00051G", "lineIdentifier": ["p5"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["northern"]}, {"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "bus", "lineIdentifier": ["345", "322", "p5"]}], "status": true, "id": "940GZZLUCPN", "commonName": "Clapham North 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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "490G00051G", "modes": ["bus"], "icsCode": "1000051", "stopType": "NaptanOnstreetBusCoachStopCluster", "stationNaptan": "490G00051G", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490G00051G", "commonName": "Clapham North Station", "placeType": "StopPoint", "additionalProperties": [], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000051D", "indicator": "Stop D", "stopLetter": "D", "modes": ["bus"], "icsCode": "1000051", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00051G", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000051D", "commonName": "Clapham North Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.46468, "lon": -0.129185}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000051F", "indicator": "Stop F", "stopLetter": "F", "modes": ["bus"], "icsCode": "1000051", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00051G", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000051F", "commonName": "Clapham North & High Street Stns", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.465033, "lon": -0.129905}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000051N1", "indicator": "Stop", "modes": ["bus"], "icsCode": "1000051", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00051G", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000051N1", "commonName": "Clapham North Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.46465, "lon": -0.12959}], "lat": 51.46465, "lon": -0.12959}, {"$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": "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}], "lat": 51.465135, "lon": -0.130016}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "940GZZLUCPS", "modes": ["tube", "bus"], "icsCode": "1000052", "stopType": "NaptanMetroStation", "stationNaptan": "940GZZLUCPS", "lines": [{"$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": "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": "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": "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": "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": "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": "n155", "name": "N155", "uri": "/Line/n155", "type": "Line", "crowding": {"$type": "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": "490000052SD", "stationAtcoCode": "490G00052SD", "lineIdentifier": ["355", "249", "155", "n155"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490000052SC", "stationAtcoCode": "490G00052SD", "lineIdentifier": ["355", "249", "155", "n155"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490000052SB", "stationAtcoCode": "490G00052SD", "lineIdentifier": ["g1", "690"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490000052SA", "stationAtcoCode": "490G00052SD", "lineIdentifier": ["g1", "690"]}, {"$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": "bus", "lineIdentifier": ["355", "249", "g1", "690", "155", "n155"]}, {"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["northern"]}], "status": true, "id": "940GZZLUCPS", "commonName": "Clapham South 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": "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": "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": "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": "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": "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": "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": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_753"}], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490G00052SD", "modes": ["bus"], "icsCode": "1000052", "stopType": "NaptanOnstreetBusCoachStopCluster", "stationNaptan": "490G00052SD", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490G00052SD", "commonName": "Clapham South Station", "placeType": "StopPoint", "additionalProperties": [], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000052SA", "indicator": "Stop SA", "stopLetter": "SA", "modes": ["bus"], "icsCode": "1000052", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00052SD", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000052SA", "commonName": "Clapham South Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.452883, "lon": -0.148566}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000052SB", "indicator": "Stop SB", "stopLetter": "SB", "modes": ["bus"], "icsCode": "1000052", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00052SD", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000052SB", "commonName": "Clapham South Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.453007, "lon": -0.148431}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000052SC", "indicator": "Stop SC", "stopLetter": "SC", "modes": ["bus"], "icsCode": "1000052", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00052SD", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000052SC", "commonName": "Clapham South Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.452433, "lon": -0.147979}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000052SD", "indicator": "Stop SD", "stopLetter": "SD", "modes": ["bus"], "icsCode": "1000052", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00052SD", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000052SD", "commonName": "Clapham South Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.452426, "lon": -0.147534}], "lat": 51.452426, "lon": -0.147534}, {"$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": "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}], "lat": 51.452654, "lon": -0.147582}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "940GZZLUCSD", "modes": ["tube", "bus"], "icsCode": "1000055", "stopType": "NaptanMetroStation", "stationNaptan": "940GZZLUCSD", "lines": [{"$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": "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": "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": "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": "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": "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": "219", "name": "219", "uri": "/Line/219", "type": "Line", "crowding": {"$type": "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": "490015237B", "stationAtcoCode": "490G00055A", "lineIdentifier": ["152", "200", "655"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490005223C", "stationAtcoCode": "490G00055A", "lineIdentifier": ["152", "200", "470", "655"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490000055D", "stationAtcoCode": "490G00055A", "lineIdentifier": ["n155", "131", "57", "219"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490000055A", "stationAtcoCode": "490G00055A", "lineIdentifier": ["n155", "131", "57", "219"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490005223N", "stationAtcoCode": "490G00055A", "lineIdentifier": ["470"]}, {"$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": "bus", "lineIdentifier": ["152", "200", "n155", "131", "470", "57", "655", "219"]}, {"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["northern"]}], "status": true, "id": "940GZZLUCSD", "commonName": "Colliers Wood 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": "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": "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": "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": "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": "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": "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": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490G00055A", "modes": ["bus"], "icsCode": "1000055", "stopType": "NaptanOnstreetBusCoachStopCluster", "stationNaptan": "490G00055A", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490G00055A", "commonName": "Colliers Wood Station", "placeType": "StopPoint", "additionalProperties": [], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000055A", "indicator": "Stop A", "stopLetter": "A", "modes": ["bus"], "icsCode": "1000055", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00055A", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000055A", "commonName": "Colliers Wood Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.418557, "lon": -0.177711}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000055D", "indicator": "Stop D", "stopLetter": "D", "modes": ["bus"], "icsCode": "1000055", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00055A", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000055D", "commonName": "Colliers Wood Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.418887, "lon": -0.177554}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000055Z", "indicator": "->W", "stopLetter": "->W", "modes": ["bus"], "icsCode": "1000055", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00055A", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000055Z", "commonName": "Colliers Wood Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.416533, "lon": -0.178841}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490005223C", "indicator": "Stop C", "stopLetter": "C", "modes": ["bus"], "icsCode": "1000055", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00055A", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490005223C", "commonName": "Colliers Wood Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.417718, "lon": -0.178132}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490005223N", "indicator": "->N", "stopLetter": "->N", "modes": ["bus"], "icsCode": "1000055", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00055A", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490005223N", "commonName": "Colliers Wood Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.417133, "lon": -0.178098}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490015237B", "indicator": "Stop B", "stopLetter": "B", "modes": ["bus"], "icsCode": "1000055", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00055A", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490015237B", "commonName": "Colliers Wood Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.417652, "lon": -0.177948}], "lat": 51.416533, "lon": -0.178841}, {"$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": "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}], "lat": 51.41816, "lon": -0.178086}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "940GZZLUCSM", "modes": ["tube"], "icsCode": "1000046", "stopType": "NaptanMetroStation", "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": "940GZZLUCSM", "commonName": "Chesham 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": "Chesham Station,London Underground Ltd.,Station Approach,Chesham,Bucks,HP5 1DH"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.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": "9"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.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": "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": "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": "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"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "CarParks_800502"}], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "040G00002100", "modes": [], "icsCode": "1000304", "stopType": "NaptanOnstreetBusCoachStopPair", "stationNaptan": "040G00002100", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "040G00002100", "commonName": "Underground Station", "placeType": "StopPoint", "additionalProperties": [], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "040000002100", "indicator": "o/s", "modes": [], "icsCode": "1000304", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "040G00002100", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "040000002100", "commonName": "Underground Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.705453, "lon": -0.61115}], "lat": 51.705453, "lon": -0.61115}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "040G00002174", "modes": [], "icsCode": "1000494", "stopType": "NaptanOnstreetBusCoachStopPair", "stationNaptan": "040G00002174", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "040G00002174", "commonName": "Broadway", "placeType": "StopPoint", "additionalProperties": [], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "040000002173", "indicator": "Stop B", "stopLetter": "B", "modes": [], "icsCode": "1000494", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "040G00002174", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "040000002173", "commonName": "Broadway", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.70635, "lon": -0.612512}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "040000002174", "indicator": "Stop A", "stopLetter": "A", "modes": [], "icsCode": "1000494", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "040G00002174", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "040000002174", "commonName": "Broadway", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.706309, "lon": -0.612875}], "lat": 51.706309, "lon": -0.612875}, {"$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": "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}], "lat": 51.705208, "lon": -0.611247}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "940GZZLUCST", "modes": ["tube"], "icsCode": "1000040", "stopType": "NaptanMetroStation", "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": "940GZZLUCST", "commonName": "Cannon Street 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": "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": "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": "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": "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": "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": "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": "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"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_101"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_136"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_276"}, {"$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_427"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_579"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_587"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5907"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5901"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5897"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5899"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5918"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5919"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5921"}], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490G00040E", "modes": ["bus"], "icsCode": "1000040", "stopType": "NaptanOnstreetBusCoachStopCluster", "stationNaptan": "490G00040E", "hubNaptanCode": "HUBCST", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490G00040E", "commonName": "Cannon Street Station", "placeType": "StopPoint", "additionalProperties": [], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000040A", "indicator": "Stop MA", "stopLetter": "MA", "modes": ["bus"], "icsCode": "1000040", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00040E", "hubNaptanCode": "HUBCST", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000040A", "commonName": "Cannon Street Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.511345, "lon": -0.089185}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000040B", "indicator": "Stop MB", "stopLetter": "MB", "modes": ["bus"], "icsCode": "1000040", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00040E", "hubNaptanCode": "HUBCST", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000040B", "commonName": "Cannon Street Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.511924, "lon": -0.091063}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490004756E", "indicator": "Stop 47", "stopLetter": "47", "modes": ["bus"], "icsCode": "1000040", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00040E", "hubNaptanCode": "HUBCST", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490004756E", "commonName": "Cannon Street Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.510435, "lon": -0.090232}], "lat": 51.511924, "lon": -0.091063}, {"$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": "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}], "lat": 51.51151, "lon": -0.090432}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "940GZZLUCTN", "modes": ["bus", "tube"], "icsCode": "1000036", "stopType": "NaptanMetroStation", "stationNaptan": "940GZZLUCTN", "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490015041Y", "stationAtcoCode": "490G00036N", "lineIdentifier": ["134", "n29", "29", "n279", "n253", "n20", "214", "253"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490000036S", "stationAtcoCode": "490G00036N", "lineIdentifier": ["134", "n29", "n5", "29", "n279", "27", "n253", "n20", "24", "n27"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490015041X", "stationAtcoCode": "490G00036N", "lineIdentifier": ["n5", "27", "1", "24", "n31", "31", "n28", "n27"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490015531S", "stationAtcoCode": "490G00036N", "lineIdentifier": ["n31", "31", "n28"]}, {"$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": "bus", "lineIdentifier": ["134", "n29", "n5", "29", "n279", "27", "n253", "1", "n20", "24", "n31", "214", "31", "253", "n28", "n27"]}, {"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["northern"]}], "status": true, "id": "940GZZLUCTN", "commonName": "Camden Town 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": "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, 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": "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": "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": "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": "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": "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": "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": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_456"}, {"$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_535"}, {"$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_5772"}, {"$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": "490G00036N", "modes": ["bus"], "icsCode": "1000036", "stopType": "NaptanOnstreetBusCoachStopCluster", "stationNaptan": "490G00036N", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490G00036N", "commonName": "Camden Town Station", "placeType": "StopPoint", "additionalProperties": [], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000036S", "indicator": "Stop S", "stopLetter": "S", "modes": ["bus"], "icsCode": "1000036", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00036N", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000036S", "commonName": "Camden Town Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.539799, "lon": -0.141349}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000036Z", "indicator": "Stop", "modes": ["bus"], "icsCode": "1000036", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00036N", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000036Z", "commonName": "Camden Town Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.539495, "lon": -0.142039}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490015041X", "indicator": "Stop X", "stopLetter": "X", "modes": ["bus"], "icsCode": "1000036", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00036N", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490015041X", "commonName": "Camden Town Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.53843, "lon": -0.142342}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490015041Y", "indicator": "Stop Y", "stopLetter": "Y", "modes": ["bus"], "icsCode": "1000036", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00036N", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490015041Y", "commonName": "Camden Town Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.537938, "lon": -0.141929}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490015531S", "indicator": "Stop Z1", "stopLetter": "Z1", "modes": ["bus"], "icsCode": "1000036", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00036N", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490015531S", "commonName": "Camden Town Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.539216, "lon": -0.141445}], "lat": 51.539495, "lon": -0.142039}, {"$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": "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}], "lat": 51.539292, "lon": -0.14274}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "940GZZLUCWL", "modes": ["bus", "tube"], "icsCode": "1000047", "stopType": "NaptanMetroStation", "stationNaptan": "940GZZLUCWL", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "167", "name": "167", "uri": "/Line/167", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "677", "name": "677", "uri": "/Line/677", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "667", "name": "667", "uri": "/Line/667", "type": "Line", "crowding": {"$type": "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"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "1500IM379B", "stationAtcoCode": "150G00000945", "lineIdentifier": ["167", "677"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "150042023007", "stationAtcoCode": "150G00003656", "lineIdentifier": ["167", "677", "667"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "1500IM379", "stationAtcoCode": "150G00000945", "lineIdentifier": ["167", "677"]}, {"$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": "bus", "lineIdentifier": ["167", "677", "667"]}, {"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["central"]}], "status": true, "id": "940GZZLUCWL", "commonName": "Chigwell 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": "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": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$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": "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": "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": "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": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "150G00003657", "modes": [], "stopType": "NaptanOnstreetBusCoachStopPair", "stationNaptan": "150G00003657", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "150G00003657", "commonName": "Chigwell Station", "placeType": "StopPoint", "additionalProperties": [], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "150G00000945", "modes": ["bus"], "icsCode": "1000319", "stopType": "NaptanOnstreetBusCoachStopCluster", "stationNaptan": "150G00000945", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "150G00000945", "commonName": "Chigwell Station", "placeType": "StopPoint", "additionalProperties": [], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "1500IM379", "indicator": "adj", "modes": ["bus"], "icsCode": "1000319", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "150G00000945", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "1500IM379", "commonName": "Chigwell Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.618999, "lon": 0.07522}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "1500IM379B", "indicator": "opp", "modes": ["bus"], "icsCode": "1000319", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "150G00000945", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "1500IM379B", "commonName": "Chigwell Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.619073, "lon": 0.075122}], "lat": 51.618999, "lon": 0.07522}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "150G00003656", "modes": ["bus"], "icsCode": "1016574", "stopType": "NaptanOnstreetBusCoachStopPair", "stationNaptan": "150G00003656", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "150G00003656", "commonName": "Station Road", "placeType": "StopPoint", "additionalProperties": [], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "150042023007", "indicator": "E-bound", "modes": ["bus"], "icsCode": "1016574", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "150G00003656", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "150042023007", "commonName": "Station Road", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.618191, "lon": 0.075169}], "lat": 51.618191, "lon": 0.075169}], "lat": 51.617916, "lon": 0.075041}, {"$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": "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}], "lat": 51.617916, "lon": 0.075041}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "940GZZLUCWP", "modes": ["tube"], "icsCode": "1000048", "stopType": "NaptanMetroStation", "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": "940GZZLUCWP", "commonName": "Chiswick 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": "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": "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": "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": "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": "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": "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": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5218"}], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490G00048S", "modes": ["bus"], "icsCode": "1000048", "stopType": "NaptanOnstreetBusCoachStopCluster", "stationNaptan": "940GZZLUCWP", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490G00048S", "commonName": "Chiswick Park Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.494627, "lon": -0.267972}, {"$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": "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}], "lat": 51.494627, "lon": -0.267972}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "940GZZLUCWR", "modes": ["tube"], "icsCode": "1000037", "stopType": "NaptanMetroStation", "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": "940GZZLUCWR", "commonName": "Canada Water 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": "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": "Help Points", "sourceSystemKey": "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": "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": "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": "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": "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": "Lifts", "sourceSystemKey": "StaticObjects", "value": "4"}, {"$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": "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": "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": "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}], "lat": 51.497931, "lon": -0.049405}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "940GZZLUCXY", "modes": ["tube"], "icsCode": "1000057", "stopType": "NaptanMetroStation", "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": "940GZZLUCXY", "commonName": "Croxley 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": "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": "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": "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": "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": "Help Points", "sourceSystemKey": "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": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "CarParks_800442"}], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "210G3199", "modes": [], "icsCode": "1000308", "stopType": "NaptanOnstreetBusCoachStopCluster", "stationNaptan": "210G3199", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "210G3199", "commonName": "Croxley Metropolitan Station", "placeType": "StopPoint", "additionalProperties": [], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "210021801000", "indicator": "NW-bound", "modes": [], "icsCode": "1000308", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "210G3199", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "210021801000", "commonName": "Croxley Metropolitan Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.647226, "lon": -0.442724}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "210021801420", "indicator": "W-bound", "modes": [], "icsCode": "1000308", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "210G3199", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "210021801420", "commonName": "Croxley Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.646848, "lon": -0.443387}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "210021805760", "indicator": "o/s", "modes": [], "icsCode": "1000308", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "210G3199", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "210021805760", "commonName": "Croxley Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.647006, "lon": -0.44169}], "lat": 51.646848, "lon": -0.443387}, {"$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": "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}], "lat": 51.647044, "lon": -0.441718}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "940GZZLUCYD", "modes": ["tube"], "icsCode": "1000049", "stopType": "NaptanMetroStation", "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": "940GZZLUCYD", "commonName": "Chorleywood 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": "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": "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": "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": "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": "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": "Geo", "key": "Zone", "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": "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": "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"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "CarParks_800441"}], "children": [{"$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": "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}], "lat": 51.654358, "lon": -0.518461}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "940GZZLUCYF", "modes": ["tube"], "icsCode": "1000038", "stopType": "NaptanMetroStation", "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": "940GZZLUCYF", "commonName": "Canary Wharf 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": "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": "Photo Booths", "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": "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": "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": "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": "Lifts", "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": "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": "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": "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": "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": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_448"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_494"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_532"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_551"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_570"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5959"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5962"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5963"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5953"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5951"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5955"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5957"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5964"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5954"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5950"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5961"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5956"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5952"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5958"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_556"}], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490G00038F", "modes": ["bus"], "stopType": "NaptanOnstreetBusCoachStopCluster", "stationNaptan": "490G00038F", "hubNaptanCode": "HUBCAW", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490G00038F", "commonName": "Canary Wharf Station", "placeType": "StopPoint", "additionalProperties": [], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000038F", "indicator": "Stop F", "stopLetter": "F", "modes": ["bus"], "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00038F", "hubNaptanCode": "HUBCAW", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000038F", "commonName": "Canary Wharf Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.505473, "lon": -0.020912}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000038Z", "indicator": "Stop", "modes": ["bus"], "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00038F", "hubNaptanCode": "HUBCAW", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000038Z", "commonName": "Canary Wharf Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.505433, "lon": -0.02064}], "lat": 51.505433, "lon": -0.02064}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490G00038G", "modes": ["bus"], "icsCode": "1000038", "stopType": "NaptanOnstreetBusCoachStopCluster", "stationNaptan": "490G00038G", "hubNaptanCode": "HUBCAW", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490G00038G", "commonName": "Canary Wharf Station", "placeType": "StopPoint", "additionalProperties": [], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000038G", "indicator": "Stop G", "stopLetter": "G", "modes": ["bus"], "icsCode": "1000038", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00038G", "hubNaptanCode": "HUBCAW", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000038G", "commonName": "Canary Wharf Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.50472, "lon": -0.021046}], "lat": 51.50472, "lon": -0.021046}, {"$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": "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}], "lat": 51.503488, "lon": -0.018246}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "940GZZLUDBN", "modes": ["tube"], "icsCode": "1000060", "stopType": "NaptanMetroStation", "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": "940GZZLUDBN", "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": "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": "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": "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": "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": "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"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "CarParks_800472"}], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "150G00000912", "modes": [], "icsCode": "1034545", "stopType": "NaptanOnstreetBusCoachStopPair", "stationNaptan": "150G00000912", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "150G00000912", "commonName": "Debden Station", "placeType": "StopPoint", "additionalProperties": [], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "1500DEBDEN2", "indicator": "o/s", "modes": [], "icsCode": "1034545", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "150G00000912", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "1500DEBDEN2", "commonName": "Debden Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.645295, "lon": 0.08226}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "1500DEBDEN2B", "indicator": "opp", "modes": [], "icsCode": "1034545", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "150G00000912", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "1500DEBDEN2B", "commonName": "Debden Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.645372, "lon": 0.08196}], "lat": 51.645372, "lon": 0.08196}, {"$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": "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}], "lat": 51.645386, "lon": 0.083782}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "940GZZLUDGE", "modes": ["bus", "tube"], "icsCode": "1000058", "stopType": "NaptanMetroStation", "stationNaptan": "940GZZLUDGE", "lines": [{"$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": "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": "364", "name": "364", "uri": "/Line/364", "type": "Line", "crowding": {"$type": "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": "490000058B", "stationAtcoCode": "490G00058B", "lineIdentifier": ["103", "364"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490000058A", "stationAtcoCode": "490G00058B", "lineIdentifier": ["103", "364"]}, {"$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": "bus", "lineIdentifier": ["103", "364"]}, {"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["district"]}], "status": true, "id": "940GZZLUDGE", "commonName": "Dagenham East 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": "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": "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": "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": "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": "Bridge", "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": "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 M&F (open between 0500-1500)"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5657"}, {"$type": "Tfl.Api.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": "490G00058B", "modes": ["bus"], "icsCode": "1000058", "stopType": "NaptanOnstreetBusCoachStopCluster", "stationNaptan": "490G00058B", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490G00058B", "commonName": "Dagenham East Station", "placeType": "StopPoint", "additionalProperties": [], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000058A", "indicator": "Stop N", "stopLetter": "N", "modes": ["bus"], "icsCode": "1000058", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00058B", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000058A", "commonName": "Dagenham East Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.544537, "lon": 0.165908}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000058B", "indicator": "Stop C", "stopLetter": "C", "modes": ["bus"], "icsCode": "1000058", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00058B", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000058B", "commonName": "Dagenham East Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.544496, "lon": 0.16618}], "lat": 51.544537, "lon": 0.165908}, {"$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": "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}], "lat": 51.544096, "lon": 0.166017}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "940GZZLUDGY", "modes": ["bus", "tube"], "icsCode": "1000059", "stopType": "NaptanMetroStation", "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"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "173", "name": "173", "uri": "/Line/173", "type": "Line", "crowding": {"$type": "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": "673", "name": "673", "uri": "/Line/673", "type": "Line", "crowding": {"$type": "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"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "940GZZLUDGY", "lineIdentifier": ["district"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490000059E", "stationAtcoCode": "490G00059B", "lineIdentifier": ["173", "174", "673", "175"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490000059B", "stationAtcoCode": "490G00059B", "lineIdentifier": ["173", "174", "175"]}], "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": "bus", "lineIdentifier": ["173", "174", "673", "175"]}], "status": true, "id": "940GZZLUDGY", "commonName": "Dagenham Heathway 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": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "5"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.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": "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": "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": "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": "canopies over platform."}, {"$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": "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": "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": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490G00059B", "modes": ["bus"], "icsCode": "1000059", "stopType": "NaptanOnstreetBusCoachStopCluster", "stationNaptan": "490G00059B", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490G00059B", "commonName": "Dagenham Heathway Station", "placeType": "StopPoint", "additionalProperties": [], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000059B", "indicator": "Stop B", "stopLetter": "B", "modes": ["bus"], "icsCode": "1000059", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00059B", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000059B", "commonName": "Dagenham Heathway Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.542218, "lon": 0.147727}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000059E", "indicator": "Stop E", "stopLetter": "E", "modes": ["bus"], "icsCode": "1000059", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00059B", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000059E", "commonName": "Dagenham Heathway Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.54116, "lon": 0.148067}], "lat": 51.54116, "lon": 0.148067}, {"$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": "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}], "lat": 51.541639, "lon": 0.147527}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "940GZZLUDOH", "modes": ["bus", "tube"], "icsCode": "1000061", "stopType": "NaptanMetroStation", "stationNaptan": "940GZZLUDOH", "lines": [{"$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": "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", "naptanIdReference": "490000061B", "stationAtcoCode": "490G00061B", "lineIdentifier": ["226"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490000061A", "stationAtcoCode": "490G00061B", "lineIdentifier": ["226"]}, {"$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": "bus", "lineIdentifier": ["226"]}, {"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["jubilee"]}], "status": true, "id": "940GZZLUDOH", "commonName": "Dollis Hill 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": "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": "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": "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": "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": "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": "Dollis Hill Station,London Underground Ltd.,Hamilton Rd,London,NW10 5NB"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5829"}], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490G00061B", "modes": ["bus"], "icsCode": "1000061", "stopType": "NaptanOnstreetBusCoachStopCluster", "stationNaptan": "490G00061B", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490G00061B", "commonName": "Dollis Hill Station", "placeType": "StopPoint", "additionalProperties": [], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000061A", "indicator": "Stop DA", "stopLetter": "DA", "modes": ["bus"], "icsCode": "1000061", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00061B", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000061A", "commonName": "Dollis Hill Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.552805, "lon": -0.238314}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000061B", "indicator": "Stop DB", "stopLetter": "DB", "modes": ["bus"], "icsCode": "1000061", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00061B", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000061B", "commonName": "Dollis Hill Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.552656, "lon": -0.23917}], "lat": 51.552805, "lon": -0.238314}, {"$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": "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}], "lat": 51.551955, "lon": -0.239068}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "940GZZLUEAC", "modes": ["tube"], "icsCode": "1000073", "stopType": "NaptanMetroStation", "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"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "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": ["bakerloo"]}, {"$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": ["bakerloo", "northern"]}], "status": true, "id": "940GZZLUEAC", "commonName": "Elephant & Castle Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_297"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_324"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_409"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_549"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_725"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5558"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.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+2"}, {"$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": "Lifts", "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": "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": "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": "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"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_92"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_152"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_262"}, {"$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."}], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490G00073G", "modes": ["bus"], "icsCode": "1000073", "stopType": "NaptanOnstreetBusCoachStopCluster", "stationNaptan": "490G00073G", "hubNaptanCode": "HUBEPH", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490G00073G", "commonName": "Elephant & Castle Station", "placeType": "StopPoint", "additionalProperties": [], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000073P", "indicator": "Stop P", "stopLetter": "P", "modes": ["bus"], "icsCode": "1000073", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00073G", "hubNaptanCode": "HUBEPH", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000073P", "commonName": "Elephant & Castle Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.494236, "lon": -0.100489}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000073R", "indicator": "Stop R", "stopLetter": "R", "modes": ["bus"], "icsCode": "1000073", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00073G", "hubNaptanCode": "HUBEPH", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000073R", "commonName": "Elephant & Castle Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.492237, "lon": -0.098137}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000073S", "indicator": "Stop S", "stopLetter": "S", "modes": ["bus"], "icsCode": "1000073", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00073G", "hubNaptanCode": "HUBEPH", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000073S", "commonName": "Elephant & Castle Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.49396, "lon": -0.100716}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000073T", "indicator": "Stop T", "stopLetter": "T", "modes": ["bus"], "icsCode": "1000073", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00073G", "hubNaptanCode": "HUBEPH", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000073T", "commonName": "Elephant & Castle Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.494213, "lon": -0.100749}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000073V", "indicator": "Stop V", "stopLetter": "V", "modes": ["bus"], "icsCode": "1000073", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00073G", "hubNaptanCode": "HUBEPH", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000073V", "commonName": "Elephant & Castle Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.494466, "lon": -0.100854}], "lat": 51.494236, "lon": -0.100489}, {"$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": "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}], "lat": 51.494536, "lon": -0.100606}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "940GZZLUEAE", "modes": ["tube", "bus"], "icsCode": "1000066", "stopType": "NaptanMetroStation", "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": "398", "name": "398", "uri": "/Line/398", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "282", "name": "282", "uri": "/Line/282", "type": "Line", "crowding": {"$type": "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"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490000066K", "stationAtcoCode": "490G00066A", "lineIdentifier": ["398", "282"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490000066B", "stationAtcoCode": "490G00066A", "lineIdentifier": ["398", "282"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["metropolitan", "piccadilly"]}, {"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "bus", "lineIdentifier": ["398", "282"]}], "status": true, "id": "940GZZLUEAE", "commonName": "Eastcote 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": "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": "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": "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": "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": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "CarParks_800443"}], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490G00066A", "modes": ["bus"], "icsCode": "1000066", "stopType": "NaptanOnstreetBusCoachStopCluster", "stationNaptan": "490G00066A", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490G00066A", "commonName": "Eastcote Station", "placeType": "StopPoint", "additionalProperties": [], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000066B", "indicator": "Stop Q", "stopLetter": "Q", "modes": ["bus"], "icsCode": "1000066", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00066A", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000066B", "commonName": "Eastcote Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.576216, "lon": -0.397326}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000066K", "indicator": "Stop K", "stopLetter": "K", "modes": ["bus"], "icsCode": "1000066", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00066A", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000066K", "commonName": "Eastcote Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.576162, "lon": -0.39727}], "lat": 51.576216, "lon": -0.397326}, {"$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": "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}], "lat": 51.576506, "lon": -0.397373}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "940GZZLUEAN", "modes": ["bus", "tube"], "icsCode": "1000065", "stopType": "NaptanMetroStation", "stationNaptan": "940GZZLUEAN", "lines": [{"$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": "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": "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": "7", "name": "7", "uri": "/Line/7", "type": "Line", "crowding": {"$type": "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": "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": "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": "n72", "name": "N72", "uri": "/Line/n72", "type": "Line", "crowding": {"$type": "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": "490000065H", "stationAtcoCode": "490G00065H", "lineIdentifier": ["272", "n7", "70", "7", "72", "283", "n72"]}, {"$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": "bus", "lineIdentifier": ["272", "n7", "70", "7", "72", "283", "n72"]}, {"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["central"]}], "status": true, "id": "940GZZLUEAN", "commonName": "East Acton 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": "Ticket Halls", "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": "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": "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": "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": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.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": "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": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "yes"}], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490G00065H", "modes": ["bus"], "icsCode": "1000065", "stopType": "NaptanOnstreetBusCoachStopCluster", "stationNaptan": "490G00065H", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490G00065H", "commonName": "East Acton Station", "placeType": "StopPoint", "additionalProperties": [], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000065H", "indicator": "Stop H", "stopLetter": "H", "modes": ["bus"], "icsCode": "1000065", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00065H", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000065H", "commonName": "East Acton Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.515182, "lon": -0.248586}], "lat": 51.515182, "lon": -0.248586}, {"$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": "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}], "lat": 51.516612, "lon": -0.247248}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "940GZZLUEBY", "modes": ["tube"], "icsCode": "1000062", "stopType": "NaptanMetroStation", "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"}, {"$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": ["central"]}, {"$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": ["central", "district"]}], "status": true, "id": "940GZZLUEBY", "commonName": "Ealing Broadway 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": "Opening Time", "key": "MonFriFrom", "sourceSystemKey": "StaticObjects", "value": "05:35"}, {"$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": "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": "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": "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": "Ealing Broadway Station,The Broadway,London,W5 2NU"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.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": "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": "Help Points", "sourceSystemKey": "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": "Opening Time", "key": "MonFriTo", "sourceSystemKey": "StaticObjects", "value": "23:25"}, {"$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": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5543"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5741"}], "children": [{"$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}], "lat": 51.515017, "lon": -0.301457}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "940GZZLUECM", "modes": ["bus", "tube"], "icsCode": "1000063", "stopType": "NaptanMetroStation", "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": "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": "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": "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": "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"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "940GZZLUECM", "lineIdentifier": ["district", "piccadilly"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490000063S", "stationAtcoCode": "490G00063U", "lineIdentifier": ["n7", "n207", "sl8", "207"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490000063U", "stationAtcoCode": "490G00063U", "lineIdentifier": ["n7", "n207", "sl8", "207"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["district", "piccadilly"]}, {"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "bus", "lineIdentifier": ["n7", "n207", "sl8", "207"]}], "status": true, "id": "940GZZLUECM", "commonName": "Ealing Common 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": "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": "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": "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": "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": "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": "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": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490G00063U", "modes": ["bus"], "icsCode": "1000063", "stopType": "NaptanOnstreetBusCoachStopCluster", "stationNaptan": "490G00063U", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490G00063U", "commonName": "Ealing Common Station", "placeType": "StopPoint", "additionalProperties": [], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000063S", "indicator": "Stop ET", "stopLetter": "ET", "modes": ["bus"], "icsCode": "1000063", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00063U", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000063S", "commonName": "Ealing Common Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.510698, "lon": -0.288374}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000063U", "indicator": "Stop EK", "stopLetter": "EK", "modes": ["bus"], "icsCode": "1000063", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00063U", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000063U", "commonName": "Ealing Common Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.510109, "lon": -0.287445}], "lat": 51.510698, "lon": -0.288374}, {"$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": "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}], "lat": 51.51014, "lon": -0.288265}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "940GZZLUECT", "modes": ["tube", "bus"], "icsCode": "1000064", "stopType": "NaptanMetroStation", "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"}, {"$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": "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": "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": "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": "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": "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": "c1", "name": "C1", "uri": "/Line/c1", "type": "Line", "crowding": {"$type": "Tfl.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"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490000064C", "stationAtcoCode": "490G00064C", "lineIdentifier": ["n74", "c3", "n97", "n31", "74", "328", "c1"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490000064A", "stationAtcoCode": "490G00064A", "lineIdentifier": ["n74", "c3", "n97", "n31", "74", "328", "c1"]}, {"$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": ["district", "piccadilly"]}, {"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "bus", "lineIdentifier": ["n74", "c3", "n97", "n31", "74", "328", "c1"]}], "status": true, "id": "940GZZLUECT", "commonName": "Earl's Court 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": "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_296"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_332"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_384"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_171"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "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": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_37"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_142"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_155"}, {"$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": "TaxiRank_5835"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5939"}, {"$type": "Tfl.Api.Presentation.Entities.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 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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "AccessViaLift", "sourceSystemKey": "LRAD", "value": "Yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "1+2"}], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490G00064A", "modes": ["bus"], "icsCode": "1000064", "stopType": "NaptanOnstreetBusCoachStopCluster", "stationNaptan": "490G00064A", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490G00064A", "commonName": "Earls Court Station", "placeType": "StopPoint", "additionalProperties": [], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000064A", "indicator": "Stop A", "stopLetter": "A", "modes": ["bus"], "icsCode": "1000064", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00064A", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000064A", "commonName": "Earls Court Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.491793, "lon": -0.19228}], "lat": 51.491793, "lon": -0.19228}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490G00064C", "modes": ["bus"], "icsCode": "1000064", "stopType": "NaptanOnstreetBusCoachStopCluster", "stationNaptan": "490G00064C", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490G00064C", "commonName": "Earl's Court Station", "placeType": "StopPoint", "additionalProperties": [], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000064C", "indicator": "Stop C", "stopLetter": "C", "modes": ["bus"], "icsCode": "1000064", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00064C", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000064C", "commonName": "Earls Court Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.490591, "lon": -0.196577}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000064N", "indicator": "Stop", "modes": ["bus"], "icsCode": "1000064", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00064C", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000064N", "commonName": "Earl's Court Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.491042, "lon": -0.197279}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000064Z", "indicator": "Stop", "modes": ["bus"], "icsCode": "1000064", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00064C", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000064Z", "commonName": "Earl's Court Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.489738, "lon": -0.194882}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000064ZZ", "indicator": "Stop", "modes": ["bus"], "icsCode": "1000064", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00064C", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000064ZZ", "commonName": "Earl's Court Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.489916, "lon": -0.195379}], "lat": 51.489916, "lon": -0.195379}, {"$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": "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}], "lat": 51.492063, "lon": -0.193378}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "940GZZLUEFY", "modes": ["bus", "tube"], "icsCode": "1000067", "stopType": "NaptanMetroStation", "stationNaptan": "940GZZLUEFY", "lines": [{"$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": "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": "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": "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": "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": "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": "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": "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": "143", "name": "143", "uri": "/Line/143", "type": "Line", "crowding": {"$type": "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": "490000067G", "stationAtcoCode": "490G00067G", "lineIdentifier": ["263", "n271", "n20", "603", "234", "143"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490000067F", "stationAtcoCode": "490G00067G", "lineIdentifier": ["263"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490000067E", "stationAtcoCode": "490G00067G", "lineIdentifier": ["n20", "n271", "603", "234", "102", "h3", "143"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "940GZZLUEFY", "lineIdentifier": ["northern"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490000067H", "stationAtcoCode": "490G00067G", "lineIdentifier": ["102", "h3"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "bus", "lineIdentifier": ["263", "n271", "n20", "603", "234", "102", "h3", "143"]}, {"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["northern"]}], "status": true, "id": "940GZZLUEFY", "commonName": "East Finchley 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": "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": "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": "ServiceInfo", "key": "Night", "sourceSystemKey": "TransXchangeETL", "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": "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": "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": "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": "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": "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": "TaxiRank_5819"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "CarParks_800473"}, {"$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": "490G00067G", "modes": ["bus"], "icsCode": "1000067", "stopType": "NaptanOnstreetBusCoachStopCluster", "stationNaptan": "490G00067G", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490G00067G", "commonName": "East Finchley Station", "placeType": "StopPoint", "additionalProperties": [], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000067E", "indicator": "Stop E", "stopLetter": "E", "modes": ["bus"], "icsCode": "1000067", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00067G", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000067E", "commonName": "East Finchley Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.586587, "lon": -0.164254}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000067F", "indicator": "Stop F", "stopLetter": "F", "modes": ["bus"], "icsCode": "1000067", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00067G", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000067F", "commonName": "East Finchley Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.586992, "lon": -0.164281}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000067G", "indicator": "Stop G", "stopLetter": "G", "modes": ["bus"], "icsCode": "1000067", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00067G", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000067G", "commonName": "East Finchley Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.586673, "lon": -0.164005}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000067H", "indicator": "Stop H", "stopLetter": "H", "modes": ["bus"], "icsCode": "1000067", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00067G", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000067H", "commonName": "East Finchley Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.58689, "lon": -0.164054}], "lat": 51.58689, "lon": -0.164054}, {"$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": "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}], "lat": 51.587131, "lon": -0.165012}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "940GZZLUEGW", "modes": ["bus", "tube"], "icsCode": "1000070", "stopType": "NaptanMetroStation", "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"}, {"$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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "940GZZLUEGW", "lineIdentifier": ["northern"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490000070D", "stationAtcoCode": "490G00070C", "lineIdentifier": ["204", "251", "303", "292", "142", "n32", "32", "n5"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490000070G", "stationAtcoCode": "490G00070C", "lineIdentifier": ["204", "642", "606", "221", "107", "251", "303", "340", "288", "384", "186", "292", "113", "142", "240", "n32", "79", "32", "n113", "n5"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490000070F", "stationAtcoCode": "490G00070C", "lineIdentifier": ["642", "606", "107", "288", "384", "292", "142"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490000070C", "stationAtcoCode": "490G00070C", "lineIdentifier": ["606", "340", "288", "186", "79"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490000070A", "stationAtcoCode": "490G00070S", "lineIdentifier": ["221", "688", "240"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490015287E", "stationAtcoCode": "490G00070C", "lineIdentifier": ["221", "186", "113", "240", "n113"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["northern"]}, {"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "bus", "lineIdentifier": ["204", "642", "606", "221", "688", "107", "251", "303", "340", "288", "384", "186", "292", "113", "142", "240", "n32", "79", "32", "n113", "n5"]}], "status": true, "id": "940GZZLUEGW", "commonName": "Edgware 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": "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": "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": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5645"}, {"$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": "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": "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": "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": "Edgware Station,London Underground Ltd.,Station Rd,Edgware,Middx,HA8 7AW"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.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."}], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490G00070C", "modes": ["bus"], "icsCode": "1000070", "stopType": "NaptanOnstreetBusCoachStopCluster", "stationNaptan": "490G00070C", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490G00070C", "commonName": "Edgware Station", "placeType": "StopPoint", "additionalProperties": [], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000070C", "indicator": "Stop C", "stopLetter": "C", "modes": ["bus"], "icsCode": "1000070", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00070C", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000070C", "commonName": "Edgware Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.613102, "lon": -0.274862}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000070D", "indicator": "Stop D", "stopLetter": "D", "modes": ["bus"], "icsCode": "1000070", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00070C", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000070D", "commonName": "Edgware Bus Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.612946, "lon": -0.274637}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000070F", "indicator": "Stop F", "stopLetter": "F", "modes": ["bus"], "icsCode": "1000070", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00070C", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000070F", "commonName": "Edgware Bus Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.61267, "lon": -0.274243}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000070G", "indicator": "Stop G", "stopLetter": "G", "modes": ["bus"], "icsCode": "1000070", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00070C", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000070G", "commonName": "Edgware Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.613399, "lon": -0.275515}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490015287E", "indicator": "Stop E", "stopLetter": "E", "modes": ["bus"], "icsCode": "1000070", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00070C", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490015287E", "commonName": "Edgware Bus Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.612732, "lon": -0.274197}], "lat": 51.61267, "lon": -0.274243}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490G00070S", "modes": ["bus"], "icsCode": "1000070", "stopType": "NaptanOnstreetBusCoachStopCluster", "stationNaptan": "490G00070S", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490G00070S", "commonName": "Edgware Bus Station", "placeType": "StopPoint", "additionalProperties": [], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000070A", "indicator": "Stop A", "stopLetter": "A", "modes": ["bus"], "icsCode": "1000070", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00070S", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000070A", "commonName": "Edgware Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.61477, "lon": -0.275824}], "lat": 51.61477, "lon": -0.275824}, {"$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}], "lat": 51.613653, "lon": -0.274928}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "940GZZLUEHM", "modes": ["tube", "bus"], "icsCode": "1000068", "stopType": "NaptanMetroStation", "stationNaptan": "940GZZLUEHM", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "101", "name": "101", "uri": "/Line/101", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "325", "name": "325", "uri": "/Line/325", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "474", "name": "474", "uri": "/Line/474", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "147", "name": "147", "uri": "/Line/147", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "300", "name": "300", "uri": "/Line/300", "type": "Line", "crowding": {"$type": "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": "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": "304", "name": "304", "uri": "/Line/304", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "376", "name": "376", "uri": "/Line/376", "type": "Line", "crowding": {"$type": "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": "490000068B", "stationAtcoCode": "490G00068A", "lineIdentifier": ["101", "325", "474", "147", "300", "238", "304", "376"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490000068A", "stationAtcoCode": "490G00068A", "lineIdentifier": ["101", "325", "474", "147", "300", "238", "304", "376"]}, {"$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": "bus", "lineIdentifier": ["101", "325", "474", "147", "300", "238", "304", "376"]}, {"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["district", "hammersmith-city"]}], "status": true, "id": "940GZZLUEHM", "commonName": "East Ham 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": "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": "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": "Help Points", "sourceSystemKey": "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": "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": "3"}, {"$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": "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, 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": "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": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5180"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5808"}], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490G00068A", "modes": ["bus"], "icsCode": "1000068", "stopType": "NaptanOnstreetBusCoachStopCluster", "stationNaptan": "490G00068A", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490G00068A", "commonName": "East Ham Station", "placeType": "StopPoint", "additionalProperties": [], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000068A", "indicator": "Stop A", "stopLetter": "A", "modes": ["bus"], "icsCode": "1000068", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00068A", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000068A", "commonName": "East Ham Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.540029, "lon": 0.050975}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000068B", "indicator": "Stop B", "stopLetter": "B", "modes": ["bus"], "icsCode": "1000068", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00068A", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000068B", "commonName": "East Ham Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.53938, "lon": 0.051046}], "lat": 51.53938, "lon": 0.051046}, {"$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": "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}], "lat": 51.538948, "lon": 0.051186}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "940GZZLUEMB", "modes": ["tube"], "icsCode": "1000075", "stopType": "NaptanMetroStation", "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"}, {"$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"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "940GZZLUEMB", "lineIdentifier": ["district", "circle"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "940GZZLUEMB", "lineIdentifier": ["bakerloo"]}, {"$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": ["district", "circle", "bakerloo", "northern"]}], "status": true, "id": "940GZZLUEMB", "commonName": "Embankment 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": "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": "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": "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": "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": "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": "Escalators", "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": "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": "Gates", "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": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_64"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_229"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_309"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_341"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_354"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_388"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_564"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5506"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5364"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5281"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_4470"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5965"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_4982"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5681"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5867"}], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490G00075L", "modes": ["bus"], "icsCode": "1000075", "stopType": "NaptanOnstreetBusCoachStopCluster", "stationNaptan": "490G00075L", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490G00075L", "commonName": "Embankment Station", "placeType": "StopPoint", "additionalProperties": [], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000075F", "indicator": "Stop 40D", "stopLetter": "40D", "modes": ["bus"], "icsCode": "1000075", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00075L", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000075F", "commonName": "Embankment Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.508864, "lon": -0.120416}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "49000655740C", "indicator": "Stop 40C", "stopLetter": "40C", "modes": ["bus"], "icsCode": "1000075", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00075L", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "49000655740C", "commonName": "Embankment Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.50843, "lon": -0.120851}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490006557C", "indicator": "Stop 40B", "stopLetter": "40B", "modes": ["bus"], "icsCode": "1000075", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00075L", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490006557C", "commonName": "Embankment Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.508114, "lon": -0.12134}], "lat": 51.50843, "lon": -0.120851}, {"$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": "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}], "lat": 51.507058, "lon": -0.122666}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "940GZZLUEPG", "modes": ["tube"], "icsCode": "1000076", "stopType": "NaptanMetroStation", "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": "940GZZLUEPG", "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": "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 (male,female)"}, {"$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": "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": "Gates", "sourceSystemKey": "StaticObjects", "value": "3"}, {"$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": "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": "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": "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": "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": "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"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "CarParks_800474"}], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "150G00003291", "modes": [], "icsCode": "1000314", "stopType": "NaptanOnstreetBusCoachStopPair", "stationNaptan": "150G00003291", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "150G00003291", "commonName": "Railway Station", "placeType": "StopPoint", "additionalProperties": [], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "1500IM354", "indicator": "o/s", "modes": [], "icsCode": "1000314", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "150G00003291", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "1500IM354", "commonName": "Epping Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.693715, "lon": 0.113711}], "lat": 51.693715, "lon": 0.113711}, {"$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": "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}], "lat": 51.69368, "lon": 0.113767}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "940GZZLUEPK", "modes": ["bus", "tube"], "icsCode": "1000074", "stopType": "NaptanMetroStation", "stationNaptan": "940GZZLUEPK", "lines": [{"$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": "372", "name": "372", "uri": "/Line/372", "type": "Line", "crowding": {"$type": "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": "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": "165", "name": "165", "uri": "/Line/165", "type": "Line", "crowding": {"$type": "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": "490000074A", "stationAtcoCode": "490G00074A", "lineIdentifier": ["252", "372", "365", "165"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490000074B", "stationAtcoCode": "490G00074A", "lineIdentifier": ["252", "372", "365", "165"]}, {"$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": "bus", "lineIdentifier": ["252", "372", "365", "165"]}, {"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["district"]}], "status": true, "id": "940GZZLUEPK", "commonName": "Elm 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": "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": "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": "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": "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": "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": "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": "Waiting Room", "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": "Toilets", "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": "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": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5547"}], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490G00074A", "modes": ["bus"], "icsCode": "1000074", "stopType": "NaptanOnstreetBusCoachStopCluster", "stationNaptan": "490G00074A", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490G00074A", "commonName": "Elm Park Station", "placeType": "StopPoint", "additionalProperties": [], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000074A", "indicator": "Stop M", "stopLetter": "M", "modes": ["bus"], "icsCode": "1000074", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00074A", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000074A", "commonName": "Elm Park Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.549513, "lon": 0.199579}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000074B", "indicator": "Stop C", "stopLetter": "C", "modes": ["bus"], "icsCode": "1000074", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00074A", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000074B", "commonName": "Elm Park Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.550287, "lon": 0.199054}], "lat": 51.550287, "lon": 0.199054}, {"$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": "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}], "lat": 51.549775, "lon": 0.19864}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "940GZZLUEPY", "modes": ["tube", "bus"], "icsCode": "1000069", "stopType": "NaptanMetroStation", "stationNaptan": "940GZZLUEPY", "lines": [{"$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": "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": "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", "naptanIdReference": "490000069EA", "stationAtcoCode": "490G00069EB", "lineIdentifier": ["37", "337"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490000069EB", "stationAtcoCode": "490G00069EB", "lineIdentifier": ["37", "337"]}, {"$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": "bus", "lineIdentifier": ["37", "337"]}, {"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["district"]}], "status": true, "id": "940GZZLUEPY", "commonName": "East Putney 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": "East Putney Station,Upper Richmond Rd,London,SW15"}, {"$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": "2+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": "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": "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": "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": "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": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_678"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_694"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_705"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_708"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_728"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_743"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5751"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5752"}], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490G00069EB", "modes": ["bus"], "icsCode": "1000069", "stopType": "NaptanOnstreetBusCoachStopCluster", "stationNaptan": "490G00069EB", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490G00069EB", "commonName": "East Putney Station", "placeType": "StopPoint", "additionalProperties": [], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000069EA", "indicator": "Stop EA", "stopLetter": "EA", "modes": ["bus"], "icsCode": "1000069", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00069EB", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000069EA", "commonName": "East Putney Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.460024, "lon": -0.212321}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000069EB", "indicator": "Stop EB", "stopLetter": "EB", "modes": ["bus"], "icsCode": "1000069", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00069EB", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000069EB", "commonName": "East Putney Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.459043, "lon": -0.209955}], "lat": 51.459043, "lon": -0.209955}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490G00069W", "modes": ["bus"], "icsCode": "1000069", "stopType": "NaptanOnstreetBusCoachStopCluster", "stationNaptan": "940GZZLUEPY", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490G00069W", "commonName": "East Putney Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.462625, "lon": -0.208937}, {"$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": "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}], "lat": 51.459205, "lon": -0.211}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "940GZZLUERB", "modes": ["tube", "bus"], "icsCode": "1000071", "stopType": "NaptanMetroStation", "stationNaptan": "940GZZLUERB", "lines": [{"$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": "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": "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": "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": "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": "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": "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": "98", "name": "98", "uri": "/Line/98", "type": "Line", "crowding": {"$type": "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": "490006428B", "stationAtcoCode": "490G00071E", "lineIdentifier": ["n98", "6", "n32", "16", "98"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490006428D", "stationAtcoCode": "490G00071E", "lineIdentifier": ["n98", "6", "n32", "98"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490000071E", "stationAtcoCode": "490G00071E", "lineIdentifier": ["18", "n18"]}, {"$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": "bus", "lineIdentifier": ["n98", "18", "6", "n32", "16", "n18", "98"]}, {"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["bakerloo"]}], "status": true, "id": "940GZZLUERB", "commonName": "Edgware Road (Bakerloo) Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$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": "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": "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": "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": "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": "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": "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"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_182"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_238"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_265"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_279"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_290"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_370"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_402"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_410"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_605"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5321"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5967"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5487"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5742"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5434"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5499"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_4849"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5488"}], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490G00071E", "modes": ["bus"], "icsCode": "1000071", "stopType": "NaptanOnstreetBusCoachStopCluster", "stationNaptan": "490G00071E", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490G00071E", "commonName": "Edgware Road Station / Bakerloo Line", "placeType": "StopPoint", "additionalProperties": [], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000071E", "indicator": "Stop EZ", "stopLetter": "EZ", "modes": ["bus"], "icsCode": "1000071", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00071E", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000071E", "commonName": "Edgware Road Station / Bakerloo Line", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.520234, "lon": -0.168999}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490006428B", "indicator": "Stop EM", "stopLetter": "EM", "modes": ["bus"], "icsCode": "1000071", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00071E", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490006428B", "commonName": "Edgware Road Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.520721, "lon": -0.171344}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490006428D", "indicator": "Stop EC", "stopLetter": "EC", "modes": ["bus"], "icsCode": "1000071", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00071E", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490006428D", "commonName": "Edgware Road Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.520623, "lon": -0.170872}], "lat": 51.520623, "lon": -0.170872}, {"$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": "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}], "lat": 51.520299, "lon": -0.17015}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "940GZZLUERC", "modes": ["bus", "tube"], "icsCode": "1000072", "stopType": "NaptanMetroStation", "stationNaptan": "940GZZLUERC", "lines": [{"$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": "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": "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": "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": "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": "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": "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": "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": "490000072W", "stationAtcoCode": "490G00072W", "lineIdentifier": ["n18", "18"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490000072G", "stationAtcoCode": "490G00072W", "lineIdentifier": ["n27", "205", "n205", "27"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "940GZZLUERC", "lineIdentifier": ["circle", "hammersmith-city"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "940GZZLUERC", "lineIdentifier": ["circle"]}, {"$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": "bus", "lineIdentifier": ["n18", "n27", "205", "18", "n205", "27"]}, {"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["circle", "district", "hammersmith-city"]}], "status": true, "id": "940GZZLUERC", "commonName": "Edgware Road (Circle Line) Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_4849"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5967"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5742"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5823"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_4574"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5894"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5499"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5219"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5321"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_370"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_396"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_402"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_410"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_605"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_367"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_290"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_265"}, {"$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": "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": "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": "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": "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": "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": "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": "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"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_45"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_182"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_188"}], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490G00072W", "modes": ["bus"], "icsCode": "1000072", "stopType": "NaptanOnstreetBusCoachStopCluster", "stationNaptan": "490G00072W", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490G00072W", "commonName": "Edgware Road Station", "placeType": "StopPoint", "additionalProperties": [], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000072G", "indicator": "Stop ET", "stopLetter": "ET", "modes": ["bus"], "icsCode": "1000072", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00072W", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000072G", "commonName": "Edgware Road Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.519665, "lon": -0.167682}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000072W", "indicator": "Stop EV", "stopLetter": "EV", "modes": ["bus"], "icsCode": "1000072", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00072W", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000072W", "commonName": "Edgware Road Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.519899, "lon": -0.168811}], "lat": 51.519899, "lon": -0.168811}, {"$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": "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}], "lat": 51.519858, "lon": -0.167832}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "940GZZLUESQ", "modes": ["tube", "bus"], "icsCode": "1000078", "stopType": "NaptanMetroStation", "stationNaptan": "940GZZLUESQ", "lines": [{"$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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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", "naptanIdReference": "490000078Q", "stationAtcoCode": "490G00078P", "lineIdentifier": ["205", "n5", "n253", "n205", "18", "30", "73", "390", "n20", "n73"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490000078P", "stationAtcoCode": "490G00078P", "lineIdentifier": ["205", "n5", "n253", "n205", "18", "30", "73", "390", "n20", "n73"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "940GZZLUESQ", "lineIdentifier": ["hammersmith-city", "circle", "metropolitan"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "bus", "lineIdentifier": ["205", "n5", "n253", "n205", "18", "30", "73", "390", "n20", "n73"]}, {"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["hammersmith-city", "circle", "metropolitan"]}], "status": true, "id": "940GZZLUESQ", "commonName": "Euston Square 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": "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": "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": "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": "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": "Euston Square Station,London Underground Ltd.,Euston Rd,London,NW1 2BN"}, {"$type": "Tfl.Api.Presentation.Entities.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": "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": "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"}, {"$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": "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_5399"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5638"}, {"$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": "490G00078P", "modes": ["bus"], "icsCode": "1000078", "stopType": "NaptanOnstreetBusCoachStopCluster", "stationNaptan": "490G00078P", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490G00078P", "commonName": "Euston Square Station", "placeType": "StopPoint", "additionalProperties": [], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000078P", "indicator": "Stop P", "stopLetter": "P", "modes": ["bus"], "icsCode": "1000078", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00078P", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000078P", "commonName": "Euston Square Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.525693, "lon": -0.135335}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000078Q", "indicator": "Stop Q", "stopLetter": "Q", "modes": ["bus"], "icsCode": "1000078", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00078P", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000078Q", "commonName": "Euston Square Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.5256, "lon": -0.136853}], "lat": 51.5256, "lon": -0.136853}, {"$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": "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}], "lat": 51.525604, "lon": -0.135829}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "940GZZLUEUS", "modes": ["tube"], "icsCode": "1000077", "stopType": "NaptanMetroStation", "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"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "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": ["victoria"]}, {"$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": ["victoria", "northern"]}], "status": true, "id": "940GZZLUEUS", "commonName": "Euston 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": "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": "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": "2"}, {"$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": "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": "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": "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": "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": "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": "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_214"}, {"$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_5896"}], "children": [{"$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}], "lat": 51.528344, "lon": -0.1323}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "940GZZLUFBY", "modes": ["tube", "bus"], "icsCode": "1000084", "stopType": "NaptanMetroStation", "stationNaptan": "940GZZLUFBY", "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": "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": "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": "211", "name": "211", "uri": "/Line/211", "type": "Line", "crowding": {"$type": "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": "490000084M", "stationAtcoCode": "490G00084L", "lineIdentifier": ["14", "414", "211"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490000084L", "stationAtcoCode": "490G00084L", "lineIdentifier": ["14", "414", "211"]}, {"$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": "bus", "lineIdentifier": ["14", "414", "211"]}, {"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["district"]}], "status": true, "id": "940GZZLUFBY", "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": "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": "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": "Fulham Broadway Station,London Underground Ltd.,Fulham Broadway,London,SW6 1BY"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.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": "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": "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": "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": "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": "7"}, {"$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": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_618"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_691"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_737"}, {"$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": "490G00084L", "modes": ["bus"], "icsCode": "1000084", "stopType": "NaptanOnstreetBusCoachStopCluster", "stationNaptan": "490G00084L", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490G00084L", "commonName": "Fulham Broadway Station", "placeType": "StopPoint", "additionalProperties": [], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000084L", "indicator": "Stop L", "stopLetter": "L", "modes": ["bus"], "icsCode": "1000084", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00084L", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000084L", "commonName": "Fulham Broadway Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.480289, "lon": -0.194477}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000084M", "indicator": "Stop M", "stopLetter": "M", "modes": ["bus"], "icsCode": "1000084", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00084L", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000084M", "commonName": "Fulham Broadway Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.480023, "lon": -0.194704}], "lat": 51.480023, "lon": -0.194704}, {"$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": "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}], "lat": 51.480081, "lon": -0.195422}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "940GZZLUFCN", "modes": ["tube"], "icsCode": "1000080", "stopType": "NaptanMetroStation", "stationNaptan": "940GZZLUFCN", "hubNaptanCode": "HUBZFD", "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": "940GZZLUFCN", "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": "940GZZLUFCN", "commonName": "Farringdon 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": "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": "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": "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": "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": "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": "WiFi", "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": "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": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_66"}, {"$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": "4"}, {"$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": "AccessViaLift", "sourceSystemKey": "LRAD", "value": "Yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_17"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5791"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5620"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5906"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5908"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_67"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_72"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_135"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_203"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_246"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_393"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_546"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_835"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5904"}], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490G00080B", "modes": ["bus"], "icsCode": "1000080", "stopType": "NaptanOnstreetBusCoachStopCluster", "stationNaptan": "490G00080B", "hubNaptanCode": "HUBZFD", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490G00080B", "commonName": "Farringdon Station", "placeType": "StopPoint", "additionalProperties": [], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000080A", "indicator": "Stop A", "stopLetter": "A", "modes": ["bus"], "icsCode": "1000080", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00080B", "hubNaptanCode": "HUBZFD", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000080A", "commonName": "Farringdon Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.520422, "lon": -0.106044}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000080B", "indicator": "Stop B", "stopLetter": "B", "modes": ["bus"], "icsCode": "1000080", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00080B", "hubNaptanCode": "HUBZFD", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000080B", "commonName": "Farringdon Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.520238, "lon": -0.105821}], "lat": 51.520238, "lon": -0.105821}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "4900FRNDNLT0", "indicator": "Entrance 2", "stopLetter": "2", "modes": [], "icsCode": "1000080", "stopType": "NaptanRailEntrance", "stationNaptan": "940GZZLUFCN", "hubNaptanCode": "HUBZFD", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "4900FRNDNLT0", "commonName": "Farringdon Rail Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.519996, "lon": -0.104707}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "4900FRNDXR0", "indicator": "Entrance 4", "stopLetter": "4", "modes": [], "icsCode": "1000080", "stopType": "NaptanRailEntrance", "stationNaptan": "940GZZLUFCN", "hubNaptanCode": "HUBZFD", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "4900FRNDXR0", "commonName": "Farringdon Rail Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.519559, "lon": -0.099392}, {"$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": "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}], "lat": 51.520252, "lon": -0.104913}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "940GZZLUFLP", "modes": ["tube", "bus"], "icsCode": "1000079", "stopType": "NaptanMetroStation", "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"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "462", "name": "462", "uri": "/Line/462", "type": "Line", "crowding": {"$type": "Tfl.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"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490000079E", "stationAtcoCode": "490G00079E", "lineIdentifier": ["462"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490000079W", "stationAtcoCode": "490G00079E", "lineIdentifier": ["462"]}], "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": "bus", "lineIdentifier": ["462"]}], "status": true, "id": "940GZZLUFLP", "commonName": "Fairlop 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": "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": "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": "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": "Facility", "key": "Help Points", "sourceSystemKey": "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": "Fairlop Station,London Underground Ltd.,Forest Rd,Ilford,Essex,IG6 3HD"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.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": "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"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "CarParks_800475"}], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490G00079E", "modes": ["bus"], "icsCode": "1000079", "stopType": "NaptanOnstreetBusCoachStopCluster", "stationNaptan": "490G00079E", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490G00079E", "commonName": "Fairlop Station", "placeType": "StopPoint", "additionalProperties": [], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000079E", "indicator": "Stop R", "stopLetter": "R", "modes": ["bus"], "icsCode": "1000079", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00079E", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000079E", "commonName": "Fairlop Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.595505, "lon": 0.091244}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000079W", "indicator": "Stop S", "stopLetter": "S", "modes": ["bus"], "icsCode": "1000079", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00079E", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000079W", "commonName": "Fairlop Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.595304, "lon": 0.090874}], "lat": 51.595304, "lon": 0.090874}, {"$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": "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}], "lat": 51.595618, "lon": 0.091004}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "940GZZLUFPK", "modes": ["tube"], "icsCode": "1000083", "stopType": "NaptanMetroStation", "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"}, {"$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": ["piccadilly"]}, {"$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": ["piccadilly", "victoria"]}], "status": true, "id": "940GZZLUFPK", "commonName": "Finsbury Park 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": "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": "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": "Opening Time", "key": "MonFriTo", "sourceSystemKey": "StaticObjects", "value": "21: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": "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": "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": "MonFriFrom", "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": "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": "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": "SunTo", "sourceSystemKey": "StaticObjects", "value": "22: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": "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": "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": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5870"}], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490G00083R", "modes": ["bus"], "icsCode": "1000083", "stopType": "NaptanOnstreetBusCoachStopCluster", "stationNaptan": "490G00083R", "hubNaptanCode": "HUBFPK", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490G00083R", "commonName": "Finsbury Park Station", "placeType": "StopPoint", "additionalProperties": [], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000083R", "indicator": "Stop R", "stopLetter": "R", "modes": ["bus"], "icsCode": "1000083", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00083R", "hubNaptanCode": "HUBFPK", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000083R", "commonName": "Finsbury Park Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.564003, "lon": -0.10624}], "lat": 51.564003, "lon": -0.10624}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490G00083S", "modes": ["bus"], "icsCode": "1000083", "stopType": "NaptanOnstreetBusCoachStopCluster", "stationNaptan": "490G00083S", "hubNaptanCode": "HUBFPK", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490G00083S", "commonName": "Finsbury Park Station", "placeType": "StopPoint", "additionalProperties": [], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000083S", "indicator": "Stop S", "stopLetter": "S", "modes": ["bus"], "icsCode": "1000083", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00083S", "hubNaptanCode": "HUBFPK", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000083S", "commonName": "Finsbury Park Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.563744, "lon": -0.10638}], "lat": 51.563744, "lon": -0.10638}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490G00083SB", "modes": ["bus"], "icsCode": "1000083", "stopType": "NaptanOnstreetBusCoachStopCluster", "stationNaptan": "490G00083SB", "hubNaptanCode": "HUBFPK", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490G00083SB", "commonName": "Finsbury Park Station", "placeType": "StopPoint", "additionalProperties": [], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000083E", "indicator": "Stop D", "stopLetter": "D", "modes": ["bus"], "icsCode": "1000083", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00083SB", "hubNaptanCode": "HUBFPK", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000083E", "commonName": "Finsbury Park Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.566033, "lon": -0.107771}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000083SB", "indicator": "Stop", "modes": ["bus"], "icsCode": "1000083", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00083SB", "hubNaptanCode": "HUBFPK", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000083SB", "commonName": "Finsbury Park Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.56556, "lon": -0.107993}], "lat": 51.56556, "lon": -0.107993}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490G00083W", "modes": ["bus"], "icsCode": "1000083", "stopType": "NaptanOnstreetBusCoachStopCluster", "stationNaptan": "490G00083W", "hubNaptanCode": "HUBFPK", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490G00083W", "commonName": "Finsbury Park Station", "placeType": "StopPoint", "additionalProperties": [], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000083A", "indicator": "Stop A", "stopLetter": "A", "modes": ["bus"], "icsCode": "1000083", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00083W", "hubNaptanCode": "HUBFPK", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000083A", "commonName": "Finsbury Park Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.565643, "lon": -0.107008}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000083B", "indicator": "Stop B", "stopLetter": "B", "modes": ["bus"], "icsCode": "1000083", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00083W", "hubNaptanCode": "HUBFPK", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000083B", "commonName": "Finsbury Park Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.565706, "lon": -0.107049}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000083C", "indicator": "Stop C", "stopLetter": "C", "modes": ["bus"], "icsCode": "1000083", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00083W", "hubNaptanCode": "HUBFPK", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000083C", "commonName": "Finsbury Park Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.565661, "lon": -0.107022}], "lat": 51.565706, "lon": -0.107049}, {"$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": "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}], "lat": 51.564158, "lon": -0.106825}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "940GZZLUFYC", "modes": ["bus", "tube"], "icsCode": "1000081", "stopType": "NaptanMetroStation", "stationNaptan": "940GZZLUFYC", "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": "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": "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": "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": "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": "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": "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": "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": "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": "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", "naptanIdReference": "490000081C", "stationAtcoCode": "490G00081W", "lineIdentifier": ["sl10", "143", "13", "125", "626", "n20", "683", "382", "460"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490000081D", "stationAtcoCode": "490G00081W", "lineIdentifier": ["sl10", "13", "143", "125", "626", "n20", "683", "382", "460"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490003156F", "stationAtcoCode": "490G03156F", "lineIdentifier": ["326", "382"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490003156E", "stationAtcoCode": "490G03156F", "lineIdentifier": ["326", "382"]}, {"$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": "bus", "lineIdentifier": ["sl10", "143", "13", "125", "326", "626", "n20", "683", "382", "460"]}, {"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["northern"]}], "status": true, "id": "940GZZLUFYC", "commonName": "Finchley Central 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": "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": "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": "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": "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": "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": "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": "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"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5834"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "CarParks_800476"}], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490G00081W", "modes": ["bus"], "icsCode": "1000081", "stopType": "NaptanOnstreetBusCoachStopCluster", "stationNaptan": "490G00081W", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490G00081W", "commonName": "Finchley Central Station", "placeType": "StopPoint", "additionalProperties": [], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000081C", "indicator": "Stop C", "stopLetter": "C", "modes": ["bus"], "icsCode": "1000081", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00081W", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000081C", "commonName": "Finchley Central Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.60255, "lon": -0.192173}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000081D", "indicator": "Stop D", "stopLetter": "D", "modes": ["bus"], "icsCode": "1000081", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00081W", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000081D", "commonName": "Finchley Central Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.602247, "lon": -0.192315}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000081N", "indicator": "->N", "stopLetter": "->N", "modes": ["bus"], "icsCode": "1000081", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00081W", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000081N", "commonName": "Finchley Central", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.601157, "lon": -0.192171}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000081S", "indicator": "->S", "stopLetter": "->S", "modes": ["bus"], "icsCode": "1000081", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00081W", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000081S", "commonName": "Finchley Central", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.601078, "lon": -0.192304}], "lat": 51.601157, "lon": -0.192171}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490G03156F", "modes": ["bus"], "icsCode": "1000081", "stopType": "NaptanOnstreetBusCoachStopCluster", "stationNaptan": "490G03156F", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490G03156F", "commonName": "Finchley Central", "placeType": "StopPoint", "additionalProperties": [], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490003156E", "indicator": "Stop K", "stopLetter": "K", "modes": ["bus"], "icsCode": "1000081", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G03156F", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490003156E", "commonName": "Finchley Central", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.602272, "lon": -0.193932}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490003156F", "indicator": "Stop F", "stopLetter": "F", "modes": ["bus"], "icsCode": "1000081", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G03156F", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490003156F", "commonName": "Finchley Central", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.602064, "lon": -0.193839}], "lat": 51.602272, "lon": -0.193932}, {"$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": "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}], "lat": 51.600921, "lon": -0.192527}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "940GZZLUFYR", "modes": ["tube", "bus"], "icsCode": "1000082", "stopType": "NaptanMetroStation", "stationNaptan": "940GZZLUFYR", "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": "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": "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": "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": "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": "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": "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": "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", "naptanIdReference": "490000082FK", "stationAtcoCode": "490G00082R", "lineIdentifier": ["13", "113", "187", "n113", "268"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490000082FJ", "stationAtcoCode": "490G00082FL", "lineIdentifier": ["13", "113", "187", "n113", "c11", "268"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "940GZZLUFYR", "lineIdentifier": ["jubilee"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490000082R", "stationAtcoCode": "490G00082R", "lineIdentifier": ["c11"]}, {"$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": "bus", "lineIdentifier": ["13", "113", "187", "n113", "c11", "268"]}, {"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["jubilee", "metropolitan"]}], "status": true, "id": "940GZZLUFYR", "commonName": "Finchley Road 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": "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": "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": "WiFi", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$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": "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": "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": "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": "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"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.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": "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": "490G00082CH", "modes": ["bus"], "icsCode": "1000082", "stopType": "NaptanOnstreetBusCoachStopCluster", "stationNaptan": "490G00082CH", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490G00082CH", "commonName": "Finchley Road Station", "placeType": "StopPoint", "additionalProperties": [], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000082C", "indicator": "Stop CH", "stopLetter": "CH", "modes": ["bus"], "icsCode": "1000082", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00082CH", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000082C", "commonName": "Finchley Road Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.548193, "lon": -0.180613}], "lat": 51.548193, "lon": -0.180613}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490G00082FL", "modes": ["bus"], "icsCode": "1000082", "stopType": "NaptanOnstreetBusCoachStopCluster", "stationNaptan": "490G00082FL", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490G00082FL", "commonName": "Finchley Road Station", "placeType": "StopPoint", "additionalProperties": [], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000082F", "indicator": "Stop CL", "stopLetter": "CL", "modes": ["bus"], "icsCode": "1000082", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00082FL", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000082F", "commonName": "Finchley Road Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.547505, "lon": -0.180308}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000082FJ", "indicator": "Stop FJ", "stopLetter": "FJ", "modes": ["bus"], "icsCode": "1000082", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00082FL", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000082FJ", "commonName": "Finchley Road Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.546349, "lon": -0.178883}], "lat": 51.546349, "lon": -0.178883}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490G00082FP", "modes": ["bus"], "icsCode": "1000082", "stopType": "NaptanOnstreetBusCoachStopCluster", "stationNaptan": "940GZZLUFYR", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490G00082FP", "commonName": "Finchley Road Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.546825, "lon": -0.179845}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490G00082R", "modes": ["bus"], "icsCode": "1000082", "stopType": "NaptanOnstreetBusCoachStopCluster", "stationNaptan": "490G00082R", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490G00082R", "commonName": "Finchley Road Station", "placeType": "StopPoint", "additionalProperties": [], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000082FK", "indicator": "Stop FK", "stopLetter": "FK", "modes": ["bus"], "icsCode": "1000082", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00082R", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000082FK", "commonName": "Finchley Road Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.546745, "lon": -0.179459}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000082R", "indicator": "Stop FP", "stopLetter": "FP", "modes": ["bus"], "icsCode": "1000082", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00082R", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000082R", "commonName": "Finchley Road Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.54622, "lon": -0.180388}], "lat": 51.546745, "lon": -0.179459}, {"$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": "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}], "lat": 51.546825, "lon": -0.179845}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "940GZZLUGBY", "modes": ["tube"], "icsCode": "1000094", "stopType": "NaptanMetroStation", "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": "940GZZLUGBY", "commonName": "Gunnersbury 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 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": "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": "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": "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": "Waiting Room", "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": "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": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5551"}], "children": [{"$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}], "lat": 51.491803, "lon": -0.275267}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "940GZZLUGDG", "modes": ["bus", "tube"], "icsCode": "1000089", "stopType": "NaptanMetroStation", "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"}, {"$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": "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": "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": "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": "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": "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": "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": "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": "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": "940GZZLUGDG", "lineIdentifier": ["northern"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490000089A", "stationAtcoCode": "490G00089B", "lineIdentifier": ["73", "390", "n20", "n73", "24", "n279", "n253", "n5", "29", "n29"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490005084Z", "stationAtcoCode": "490G00089B", "lineIdentifier": ["73", "390", "n20", "n73", "24", "n279", "n253", "n5", "29", "n29"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["northern"]}, {"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "bus", "lineIdentifier": ["73", "390", "n20", "n73", "24", "n279", "n253", "n5", "29", "n29"]}], "status": true, "id": "940GZZLUGDG", "commonName": "Goodge Street 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": "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": "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": "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": "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": "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": "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": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_81"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_88"}, {"$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_306"}, {"$type": "Tfl.Api.Presentation.Entities.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_12"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_13"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_313"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_357"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5399"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5638"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5358"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5043"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5379"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_311"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_364"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_381"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5141"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5816"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_4139"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5701"}, {"$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": "490G00089B", "modes": ["bus"], "icsCode": "1000089", "stopType": "NaptanOnstreetBusCoachStopCluster", "stationNaptan": "490G00089B", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490G00089B", "commonName": "Goodge Street Station", "placeType": "StopPoint", "additionalProperties": [], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000089A", "indicator": "Stop A", "stopLetter": "A", "modes": ["bus"], "icsCode": "1000089", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00089B", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000089A", "commonName": "Goodge Street Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.521129, "lon": -0.135046}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490005084Z", "indicator": "Stop D", "stopLetter": "D", "modes": ["bus"], "icsCode": "1000089", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00089B", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490005084Z", "commonName": "Goodge Street Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.520595, "lon": -0.134232}], "lat": 51.520595, "lon": -0.134232}, {"$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": "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}], "lat": 51.520599, "lon": -0.134361}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "940GZZLUGFD", "modes": ["tube"], "icsCode": "1000092", "stopType": "NaptanMetroStation", "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": "940GZZLUGFD", "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": "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": "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": "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": "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": "4"}, {"$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": "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": "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": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "CarParks_800444"}], "children": [{"$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}], "lat": 51.542424, "lon": -0.34605}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "940GZZLUGGH", "modes": ["bus", "tube"], "icsCode": "1000090", "stopType": "NaptanMetroStation", "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"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "462", "name": "462", "uri": "/Line/462", "type": "Line", "crowding": {"$type": "Tfl.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"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "1500420250Y6", "stationAtcoCode": "150G00003280", "lineIdentifier": ["462"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "150042025006", "stationAtcoCode": "150G00003280", "lineIdentifier": ["462"]}], "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": "bus", "lineIdentifier": ["462"]}], "status": true, "id": "940GZZLUGGH", "commonName": "Grange Hill 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": "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": "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": "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": "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": "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": "Payphones", "sourceSystemKey": "StaticObjects", "value": "1"}], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "150G00003280", "modes": ["bus"], "icsCode": "1000320", "stopType": "NaptanOnstreetBusCoachStopPair", "stationNaptan": "150G00003280", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "150G00003280", "commonName": "Grange Hill Station", "placeType": "StopPoint", "additionalProperties": [], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "150042025006", "indicator": "Stop B", "stopLetter": "B", "modes": ["bus"], "icsCode": "1000320", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "150G00003280", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "150042025006", "commonName": "Grange Hill Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.613399, "lon": 0.091821}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "1500420250Y6", "indicator": "Stop A", "stopLetter": "A", "modes": ["bus"], "icsCode": "1000320", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "150G00003280", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "1500420250Y6", "commonName": "Grange Hill Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.613419, "lon": 0.091678}], "lat": 51.613399, "lon": 0.091821}, {"$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": "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}], "lat": 51.613378, "lon": 0.092066}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "940GZZLUGGN", "modes": ["bus", "tube"], "icsCode": "1000087", "stopType": "NaptanMetroStation", "stationNaptan": "940GZZLUGGN", "lines": [{"$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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "245", "name": "245", "uri": "/Line/245", "type": "Line", "crowding": {"$type": "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": "490000087B", "stationAtcoCode": "490G00087GB", "lineIdentifier": ["328", "268"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490015497GC", "stationAtcoCode": "490G00087GB", "lineIdentifier": ["328"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "940GZZLUGGN", "lineIdentifier": ["northern"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490015496GU", "stationAtcoCode": "490G00087GB", "lineIdentifier": ["102", "460", "13"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490015496GV", "stationAtcoCode": "490G00087GB", "lineIdentifier": ["102", "460", "h2", "h3", "13", "631"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490000087GF", "stationAtcoCode": "490G00087GB", "lineIdentifier": ["139", "260"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490000087GJ", "stationAtcoCode": "490G00087GK", "lineIdentifier": ["210", "268", "n5"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490000087GK", "stationAtcoCode": "490G00087GK", "lineIdentifier": ["210", "268", "n5"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490000087GH", "stationAtcoCode": "490G00087GB", "lineIdentifier": ["83", "n83", "183"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490015496GW", "stationAtcoCode": "490G00087GB", "lineIdentifier": ["h2", "h3", "631"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490000087GB", "stationAtcoCode": "490G00087GB", "lineIdentifier": ["226", "245"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490000087GI", "stationAtcoCode": "490G00087GB", "lineIdentifier": ["240"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "bus", "lineIdentifier": ["328", "102", "139", "460", "210", "260", "83", "n83", "268", "h2", "h3", "183", "13", "226", "240", "631", "n5", "245"]}, {"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["northern"]}], "status": true, "id": "940GZZLUGGN", "commonName": "Golders Green 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": "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": "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": "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": "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": "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": "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": "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": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5436"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.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": "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": "490G00087GB", "modes": ["bus"], "icsCode": "1000087", "stopType": "NaptanOnstreetBusCoachStopCluster", "stationNaptan": "490G00087GB", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490G00087GB", "commonName": "Golders Green Station", "placeType": "StopPoint", "additionalProperties": [], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000087B", "indicator": "Stop B", "stopLetter": "B", "modes": ["bus"], "icsCode": "1000087", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00087GB", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000087B", "commonName": "Golders Green Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.57209, "lon": -0.194883}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000087GB", "indicator": "Stop GB", "stopLetter": "GB", "modes": ["bus"], "icsCode": "1000087", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00087GB", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000087GB", "commonName": "Golders Green Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.571976, "lon": -0.19392}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000087GE", "indicator": "Stop GE", "stopLetter": "GE", "modes": ["bus"], "icsCode": "1000087", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00087GB", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000087GE", "commonName": "Golders Green Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.5718, "lon": -0.194736}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000087GF", "indicator": "Stand GF", "stopLetter": "GF", "modes": ["bus"], "icsCode": "1000087", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00087GB", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000087GF", "commonName": "Golders Green Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.571799, "lon": -0.194101}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000087GH", "indicator": "Stop GH", "stopLetter": "GH", "modes": ["bus"], "icsCode": "1000087", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00087GB", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000087GH", "commonName": "Golders Green Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.571915, "lon": -0.194053}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000087GI", "indicator": "Stop GI", "stopLetter": "GI", "modes": ["bus"], "icsCode": "1000087", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00087GB", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000087GI", "commonName": "Golders Green Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.571993, "lon": -0.194439}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490015496GU", "indicator": "Stop GU", "stopLetter": "GU", "modes": ["bus"], "icsCode": "1000087", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00087GB", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490015496GU", "commonName": "Golders Green Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.572841, "lon": -0.195777}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490015496GV", "indicator": "Stop GV", "stopLetter": "GV", "modes": ["bus"], "icsCode": "1000087", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00087GB", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490015496GV", "commonName": "Golders Green Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.572956, "lon": -0.195642}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490015496GW", "indicator": "Stop GW", "stopLetter": "GW", "modes": ["bus"], "icsCode": "1000087", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00087GB", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490015496GW", "commonName": "Golders Green Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.572277, "lon": -0.195366}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490015497GC", "indicator": "Stop GC", "stopLetter": "GC", "modes": ["bus"], "icsCode": "1000087", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00087GB", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490015497GC", "commonName": "Golders Green Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.571615, "lon": -0.193819}], "lat": 51.571615, "lon": -0.193819}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490G00087GK", "modes": ["bus"], "icsCode": "1000087", "stopType": "NaptanOnstreetBusCoachStopCluster", "stationNaptan": "490G00087GK", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490G00087GK", "commonName": "Golders Green Station", "placeType": "StopPoint", "additionalProperties": [], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000087GJ", "indicator": "Stop GJ", "stopLetter": "GJ", "modes": ["bus"], "icsCode": "1000087", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00087GK", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000087GJ", "commonName": "Golders Green Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.571494, "lon": -0.193564}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000087GK", "indicator": "Stop GK", "stopLetter": "GK", "modes": ["bus"], "icsCode": "1000087", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00087GK", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000087GK", "commonName": "Golders Green Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.571397, "lon": -0.193669}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000087RX", "indicator": "->E", "stopLetter": "->E", "modes": ["bus"], "icsCode": "1000087", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00087GK", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000087RX", "commonName": "Golders Green Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.572294, "lon": -0.197588}], "lat": 51.572294, "lon": -0.197588}, {"$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": "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}], "lat": 51.572259, "lon": -0.194039}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "940GZZLUGHK", "modes": ["bus", "tube"], "icsCode": "1000088", "stopType": "NaptanMetroStation", "stationNaptan": "940GZZLUGHK", "lines": [{"$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": "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": "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", "naptanIdReference": "490000088Y", "stationAtcoCode": "490G00088Y", "lineIdentifier": ["94", "237"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490000088Z", "stationAtcoCode": "490G00088Y", "lineIdentifier": ["94", "237"]}, {"$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": "bus", "lineIdentifier": ["94", "237"]}, {"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["circle", "hammersmith-city"]}], "status": true, "id": "940GZZLUGHK", "commonName": "Goldhawk Road 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": "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_591"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_657"}, {"$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": "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": "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": "Goldhawk Road Station,London Underground Ltd.,Goldhawk Rd,London,W12 8EG"}, {"$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": "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": "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": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490G00088Y", "modes": ["bus"], "icsCode": "1000088", "stopType": "NaptanOnstreetBusCoachStopCluster", "stationNaptan": "490G00088Y", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490G00088Y", "commonName": "Goldhawk Road Station", "placeType": "StopPoint", "additionalProperties": [], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000088Y", "indicator": "Stop L", "stopLetter": "L", "modes": ["bus"], "icsCode": "1000088", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00088Y", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000088Y", "commonName": "Goldhawk Road Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.502507, "lon": -0.227315}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000088Z", "indicator": "Stop K", "stopLetter": "K", "modes": ["bus"], "icsCode": "1000088", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00088Y", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000088Z", "commonName": "Goldhawk Road Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.502227, "lon": -0.227211}], "lat": 51.502507, "lon": -0.227315}, {"$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": "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}], "lat": 51.502005, "lon": -0.226715}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "940GZZLUGPK", "modes": ["bus", "tube"], "icsCode": "1000093", "stopType": "NaptanMetroStation", "stationNaptan": "940GZZLUGPK", "lines": [{"$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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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", "naptanIdReference": "490000093PE", "stationAtcoCode": "490G00093PE", "lineIdentifier": ["22", "38", "9", "23", "19", "n22", "n97", "n38", "n19", "14", "n9"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490000093PA", "stationAtcoCode": "490G00093PE", "lineIdentifier": ["22", "n22"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490000093PB", "stationAtcoCode": "490G00093PE", "lineIdentifier": ["38", "9", "23", "19", "n97", "n38", "n19", "14", "n9"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "940GZZLUGPK", "lineIdentifier": ["victoria"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "940GZZLUGPK", "lineIdentifier": ["jubilee"]}, {"$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": "bus", "lineIdentifier": ["22", "38", "9", "23", "19", "n22", "n97", "n38", "n19", "14", "n9"]}, {"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["victoria", "jubilee", "piccadilly"]}], "status": true, "id": "940GZZLUGPK", "commonName": "Green Park Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5323"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5713"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5651"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5363"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5099"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5715"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5687"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5861"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5600"}, {"$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": "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": "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": "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": "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": "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"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_44"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_49"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_53"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_318"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_382"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_391"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_528"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_541"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5252"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5510"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5821"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5868"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5191"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_3451"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5014"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5862"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5778"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_4706"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5594"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_4182"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_4623"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5714"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5647"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5811"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5863"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5351"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_4875"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_4150"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5317"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_4863"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_4949"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_4475"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5267"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5800"}], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490G00093PE", "modes": ["bus"], "icsCode": "1000093", "stopType": "NaptanOnstreetBusCoachStopCluster", "stationNaptan": "490G00093PE", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490G00093PE", "commonName": "Green Park Station", "placeType": "StopPoint", "additionalProperties": [], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000093PA", "indicator": "Stop R", "stopLetter": "R", "modes": ["bus"], "icsCode": "1000093", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00093PE", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000093PA", "commonName": "Green Park Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.507339, "lon": -0.143809}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000093PB", "indicator": "Stop J", "stopLetter": "J", "modes": ["bus"], "icsCode": "1000093", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00093PE", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000093PB", "commonName": "Green Park Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.507013, "lon": -0.142554}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000093PE", "indicator": "Stop H", "stopLetter": "H", "modes": ["bus"], "icsCode": "1000093", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00093PE", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000093PE", "commonName": "Green Park Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.506676, "lon": -0.142841}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000093W", "indicator": "->W", "stopLetter": "->W", "modes": ["bus"], "icsCode": "1000093", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00093PE", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000093W", "commonName": "Green Park Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.506571, "lon": -0.143047}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000093W1", "indicator": "->SW", "modes": ["bus"], "icsCode": "1000093", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00093PE", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000093W1", "commonName": "Green Park Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.506824, "lon": -0.142518}], "lat": 51.507339, "lon": -0.143809}, {"$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": "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}], "lat": 51.506947, "lon": -0.142787}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "940GZZLUGPS", "modes": ["tube", "bus"], "icsCode": "1000091", "stopType": "NaptanMetroStation", "stationNaptan": "940GZZLUGPS", "lines": [{"$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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "490000091F", "stationAtcoCode": "490G00091G", "lineIdentifier": ["453", "88", "n18"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490000091E", "stationAtcoCode": "490G00091G", "lineIdentifier": ["453", "88", "n18"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490000091G", "stationAtcoCode": "490G00091G", "lineIdentifier": ["205", "27", "18", "n205", "30", "n27"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490000091H", "stationAtcoCode": "490G00091H", "lineIdentifier": ["205", "27", "18", "n205", "30", "n27"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "940GZZLUGPS", "lineIdentifier": ["hammersmith-city", "circle", "metropolitan"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "bus", "lineIdentifier": ["453", "205", "27", "18", "88", "n205", "30", "n27", "n18"]}, {"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["hammersmith-city", "circle", "metropolitan"]}], "status": true, "id": "940GZZLUGPS", "commonName": "Great Portland Street Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$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": "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": "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": "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": "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": "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": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_28"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_76"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_81"}, {"$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_184"}, {"$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_357"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_540"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5405"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5590"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5592"}, {"$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": "490G00091G", "modes": ["bus"], "icsCode": "1000091", "stopType": "NaptanOnstreetBusCoachStopCluster", "stationNaptan": "490G00091G", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490G00091G", "commonName": "Great Portland Street Station", "placeType": "StopPoint", "additionalProperties": [], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000091E", "indicator": "Stop E", "stopLetter": "E", "modes": ["bus"], "icsCode": "1000091", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00091G", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000091E", "commonName": "Great Portland Street Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.52297, "lon": -0.143923}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000091F", "indicator": "Stop F", "stopLetter": "F", "modes": ["bus"], "icsCode": "1000091", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00091G", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000091F", "commonName": "Great Portland Street Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.523461, "lon": -0.144306}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000091G", "indicator": "Stop G", "stopLetter": "G", "modes": ["bus"], "icsCode": "1000091", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00091G", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000091G", "commonName": "Great Portland Street Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.523904, "lon": -0.14387}], "lat": 51.523461, "lon": -0.144306}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490G00091H", "modes": ["bus"], "icsCode": "1000091", "stopType": "NaptanOnstreetBusCoachStopCluster", "stationNaptan": "490G00091H", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490G00091H", "commonName": "Great Portland Street Station", "placeType": "StopPoint", "additionalProperties": [], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000091H", "indicator": "Stop H", "stopLetter": "H", "modes": ["bus"], "icsCode": "1000091", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00091H", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000091H", "commonName": "Great Portland St Stn / Euston Rd", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.524024, "lon": -0.142914}], "lat": 51.524024, "lon": -0.142914}, {"$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": "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}], "lat": 51.52384, "lon": -0.144262}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "940GZZLUGTH", "modes": ["bus", "tube"], "icsCode": "1000085", "stopType": "NaptanMetroStation", "stationNaptan": "940GZZLUGTH", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "396", "name": "396", "uri": "/Line/396", "type": "Line", "crowding": {"$type": "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": "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": "150", "name": "150", "uri": "/Line/150", "type": "Line", "crowding": {"$type": "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": "462", "name": "462", "uri": "/Line/462", "type": "Line", "crowding": {"$type": "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": "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": "667", "name": "667", "uri": "/Line/667", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "677", "name": "677", "uri": "/Line/677", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "167", "name": "167", "uri": "/Line/167", "type": "Line", "crowding": {"$type": "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": "490015201L", "stationAtcoCode": "490G00085G", "lineIdentifier": ["396", "296", "66"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490000085G", "stationAtcoCode": "490G00085G", "lineIdentifier": ["66", "n8", "462"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490015200E", "stationAtcoCode": "490G15200C", "lineIdentifier": ["150", "n8", "128", "667", "677", "167"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490015200C", "stationAtcoCode": "490G15200C", "lineIdentifier": ["150", "n8", "128", "667", "677", "167"]}, {"$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": "bus", "lineIdentifier": ["396", "296", "66", "150", "n8", "462", "128", "667", "677", "167"]}, {"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["central"]}], "status": true, "id": "940GZZLUGTH", "commonName": "Gants Hill 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": "Help Points", "sourceSystemKey": "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": "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": "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": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$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": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5673"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5630"}], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490G00085G", "modes": ["bus"], "icsCode": "1000085", "stopType": "NaptanOnstreetBusCoachStopCluster", "stationNaptan": "490G00085G", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490G00085G", "commonName": "Gants Hill Station", "placeType": "StopPoint", "additionalProperties": [], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000085G", "indicator": "Stop EB", "stopLetter": "EB", "modes": ["bus"], "icsCode": "1000085", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00085G", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000085G", "commonName": "Gants Hill Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.57666, "lon": 0.064631}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490015201L", "indicator": "Stop ET", "stopLetter": "ET", "modes": ["bus"], "icsCode": "1000085", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00085G", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490015201L", "commonName": "Gants Hill Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.575956, "lon": 0.068828}], "lat": 51.57666, "lon": 0.064631}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490G15200C", "modes": ["bus"], "icsCode": "1000085", "stopType": "NaptanOnstreetBusCoachStopCluster", "stationNaptan": "490G15200C", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490G15200C", "commonName": "Gants Hill Station", "placeType": "StopPoint", "additionalProperties": [], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490015200C", "indicator": "Stop CP", "stopLetter": "CP", "modes": ["bus"], "icsCode": "1000085", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G15200C", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490015200C", "commonName": "Gants Hill Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.577292, "lon": 0.068066}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490015200E", "indicator": "Stop CE", "stopLetter": "CE", "modes": ["bus"], "icsCode": "1000085", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G15200C", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490015200E", "commonName": "Gants Hill Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.577266, "lon": 0.068483}], "lat": 51.577292, "lon": 0.068066}, {"$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": "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}], "lat": 51.576544, "lon": 0.066185}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "940GZZLUGTR", "modes": ["bus", "tube"], "icsCode": "1000086", "stopType": "NaptanMetroStation", "stationNaptan": "940GZZLUGTR", "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": "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": "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"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490015062W", "stationAtcoCode": "490G00086A", "lineIdentifier": ["74", "n74", "n97"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490006956C", "stationAtcoCode": "490G00086A", "lineIdentifier": ["74", "n74", "n97"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490000086B", "stationAtcoCode": "490G00086A", "lineIdentifier": ["49"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490000086A", "stationAtcoCode": "490G00086A", "lineIdentifier": ["49"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "940GZZLUGTR", "lineIdentifier": ["circle"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "940GZZLUGTR", "lineIdentifier": ["circle", "district"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "940GZZLUGTR", "lineIdentifier": ["district"]}, {"$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": "bus", "lineIdentifier": ["74", "49", "n74", "n97"]}, {"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["circle", "district", "piccadilly"]}], "status": true, "id": "940GZZLUGTR", "commonName": "Gloucester Road 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": "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"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, 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": "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": "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": "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": "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": "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": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_97"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_113"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_128"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_171"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_187"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_216"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_231"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_378"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_405"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5084"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5938"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5577"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5817"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5939"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5790"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_4580"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_4034"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5719"}], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490G00086A", "modes": ["bus"], "icsCode": "1000086", "stopType": "NaptanOnstreetBusCoachStopCluster", "stationNaptan": "490G00086A", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490G00086A", "commonName": "Gloucester Road Station", "placeType": "StopPoint", "additionalProperties": [], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000086A", "indicator": "Stop GR", "stopLetter": "GR", "modes": ["bus"], "icsCode": "1000086", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00086A", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000086A", "commonName": "Gloucester Road Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.494259, "lon": -0.182573}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000086B", "indicator": "Stop GS", "stopLetter": "GS", "modes": ["bus"], "icsCode": "1000086", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00086A", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000086B", "commonName": "Gloucester Road Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.494093, "lon": -0.182249}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490006956C", "indicator": "Stop GK", "stopLetter": "GK", "modes": ["bus"], "icsCode": "1000086", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00086A", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490006956C", "commonName": "Gloucester Road Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.495006, "lon": -0.18433}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490015062W", "indicator": "Stop GU", "stopLetter": "GU", "modes": ["bus"], "icsCode": "1000086", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00086A", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490015062W", "commonName": "Gloucester Road Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.495067, "lon": -0.181274}], "lat": 51.494259, "lon": -0.182573}, {"$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": "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}], "lat": 51.494316, "lon": -0.182658}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "940GZZLUHAI", "modes": ["tube"], "icsCode": "1000108", "stopType": "NaptanMetroStation", "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": "940GZZLUHAI", "commonName": "Highbury & Islington 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": "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": "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": "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": "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": "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": "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": "Help Points", "sourceSystemKey": "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"}], "children": [{"$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}], "lat": 51.54635, "lon": -0.103324}, {"$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": "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}], "lat": 51.592268, "lon": -0.335217}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "940GZZLUHBN", "modes": ["bus", "tube"], "icsCode": "1000112", "stopType": "NaptanMetroStation", "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"}, {"$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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "940GZZLUHBN", "lineIdentifier": ["central"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490000112P", "stationAtcoCode": "490G00112L", "lineIdentifier": ["n1", "188", "59", "n171", "n68", "243"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490000112N", "stationAtcoCode": "490G00112L", "lineIdentifier": ["sl6", "68", "91", "n91", "1"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490015239K", "stationAtcoCode": "490G15239K", "lineIdentifier": ["59", "8", "n25", "n8", "n242", "133"]}, {"$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": ["central", "piccadilly"]}, {"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "bus", "lineIdentifier": ["n1", "sl6", "188", "59", "68", "8", "91", "n25", "n8", "n242", "n171", "n68", "243", "n91", "133", "1"]}], "status": true, "id": "940GZZLUHBN", "commonName": "Holborn 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": "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": "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": "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": "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": "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": "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": "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": "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": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_18"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_23"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_24"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_68"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_147"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_162"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_283"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_358"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_436"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_562"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_594"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_751"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_809"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_4203"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5171"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5516"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_4205"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5233"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_4204"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5365"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5676"}], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490G00112L", "modes": ["bus"], "icsCode": "1000112", "stopType": "NaptanOnstreetBusCoachStopCluster", "stationNaptan": "490G00112L", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490G00112L", "commonName": "Holborn Station", "placeType": "StopPoint", "additionalProperties": [], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000112N", "indicator": "Stop N", "stopLetter": "N", "modes": ["bus"], "icsCode": "1000112", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00112L", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000112N", "commonName": "Holborn Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.516872, "lon": -0.120144}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000112P", "indicator": "Stop P", "stopLetter": "P", "modes": ["bus"], "icsCode": "1000112", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00112L", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000112P", "commonName": "Holborn Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.516927, "lon": -0.120214}], "lat": 51.516927, "lon": -0.120214}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490G15239K", "modes": ["bus"], "icsCode": "1000112", "stopType": "NaptanOnstreetBusCoachStopCluster", "stationNaptan": "490G15239K", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490G15239K", "commonName": "Holborn Station", "placeType": "StopPoint", "additionalProperties": [], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490015239K", "indicator": "Stop K", "stopLetter": "K", "modes": ["bus"], "icsCode": "1000112", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G15239K", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490015239K", "commonName": "Holborn Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.517672, "lon": -0.118482}], "lat": 51.517672, "lon": -0.118482}, {"$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": "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}], "lat": 51.51758, "lon": -0.120475}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "940GZZLUHBT", "modes": ["bus", "tube"], "icsCode": "1000107", "stopType": "NaptanMetroStation", "stationNaptan": "940GZZLUHBT", "lines": [{"$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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "107", "name": "107", "uri": "/Line/107", "type": "Line", "crowding": {"$type": "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": "490000107Q", "stationAtcoCode": "490G00107E", "lineIdentifier": ["307", "384", "326", "634", "606", "389", "234", "34", "n20", "263", "107"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490000107R", "stationAtcoCode": "490G00107E", "lineIdentifier": ["307", "384", "326", "634", "606", "389", "234", "34", "n20", "263", "107"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490000107P", "stationAtcoCode": "490G00107P", "lineIdentifier": ["383", "184", "626"]}, {"$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": "bus", "lineIdentifier": ["307", "383", "184", "384", "326", "634", "626", "606", "389", "234", "34", "n20", "263", "107"]}, {"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["northern"]}], "status": true, "id": "940GZZLUHBT", "commonName": "High Barnet 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": "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": "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": "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": "Help Points", "sourceSystemKey": "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": "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": "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"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5832"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "CarParks_800478"}, {"$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": "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": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490G00107E", "modes": ["bus"], "icsCode": "1000107", "stopType": "NaptanOnstreetBusCoachStopCluster", "stationNaptan": "490G00107E", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490G00107E", "commonName": "High Barnet Station", "placeType": "StopPoint", "additionalProperties": [], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000107Q", "indicator": "Stop Q", "stopLetter": "Q", "modes": ["bus"], "icsCode": "1000107", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00107E", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000107Q", "commonName": "High Barnet Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.65008, "lon": -0.194836}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000107R", "indicator": "Stop R", "stopLetter": "R", "modes": ["bus"], "icsCode": "1000107", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00107E", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000107R", "commonName": "High Barnet Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.649345, "lon": -0.193247}], "lat": 51.649345, "lon": -0.193247}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490G00107P", "modes": ["bus"], "icsCode": "1000107", "stopType": "NaptanOnstreetBusCoachStopCluster", "stationNaptan": "490G00107P", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490G00107P", "commonName": "High Barnet Station", "placeType": "StopPoint", "additionalProperties": [], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000107P", "indicator": "Stop P", "stopLetter": "P", "modes": ["bus"], "icsCode": "1000107", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00107P", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000107P", "commonName": "High Barnet Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.651275, "lon": -0.195989}], "lat": 51.651275, "lon": -0.195989}, {"$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": "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}], "lat": 51.650541, "lon": -0.194298}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "940GZZLUHCH", "modes": ["bus", "tube"], "icsCode": "1000115", "stopType": "NaptanMetroStation", "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"}, {"$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": "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": "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": "252", "name": "252", "uri": "/Line/252", "type": "Line", "crowding": {"$type": "Tfl.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"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490000115L", "stationAtcoCode": "490G00115L", "lineIdentifier": ["193", "652", "256", "252"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490000115M", "stationAtcoCode": "490G00115L", "lineIdentifier": ["193", "652", "256", "252"]}], "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": "bus", "lineIdentifier": ["193", "652", "256", "252"]}], "status": true, "id": "940GZZLUHCH", "commonName": "Hornchurch 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": "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": "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": "Hornchurch Station,London Underground Ltd.,Station Lane,Hornchurch,Essex,RM12 6LS"}, {"$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": "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": "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": "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, 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": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "CarParks_800480"}], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490G00115L", "modes": ["bus"], "icsCode": "1000115", "stopType": "NaptanOnstreetBusCoachStopCluster", "stationNaptan": "490G00115L", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490G00115L", "commonName": "Hornchurch Station", "placeType": "StopPoint", "additionalProperties": [], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000115L", "indicator": "Stop L", "stopLetter": "L", "modes": ["bus"], "icsCode": "1000115", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00115L", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000115L", "commonName": "Hornchurch Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.554251, "lon": 0.21921}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000115M", "indicator": "Stop M", "stopLetter": "M", "modes": ["bus"], "icsCode": "1000115", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00115L", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000115M", "commonName": "Hornchurch Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.554693, "lon": 0.21965}], "lat": 51.554693, "lon": 0.21965}, {"$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": "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}], "lat": 51.554093, "lon": 0.219116}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "940GZZLUHCL", "modes": ["bus", "tube"], "icsCode": "1000106", "stopType": "NaptanMetroStation", "stationNaptan": "940GZZLUHCL", "lines": [{"$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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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", "naptanIdReference": "490000106F", "stationAtcoCode": "490G00106G", "lineIdentifier": ["643", "143", "326"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490000106G", "stationAtcoCode": "490G00106G", "lineIdentifier": ["643", "113", "186", "143", "326", "324", "n113"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "940GZZLUHCL", "lineIdentifier": ["northern"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490000106A", "stationAtcoCode": "490G00106A", "lineIdentifier": ["n83", "83", "sl10", "n5"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490000106B", "stationAtcoCode": "490G00106A", "lineIdentifier": ["n83", "83", "sl10", "n5"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490000106E", "stationAtcoCode": "490G00106G", "lineIdentifier": ["113", "186", "324", "n113"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "bus", "lineIdentifier": ["643", "n83", "83", "113", "186", "143", "sl10", "326", "324", "n5", "n113"]}, {"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["northern"]}], "status": true, "id": "940GZZLUHCL", "commonName": "Hendon Central 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": "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": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "3+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": "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"}, {"$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": "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": "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": "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": "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": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5837"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5071"}], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490G00106A", "modes": ["bus"], "icsCode": "1000106", "stopType": "NaptanOnstreetBusCoachStopCluster", "stationNaptan": "490G00106A", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490G00106A", "commonName": "Hendon Central Station", "placeType": "StopPoint", "additionalProperties": [], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000106A", "indicator": "Stop A", "stopLetter": "A", "modes": ["bus"], "icsCode": "1000106", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00106A", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000106A", "commonName": "Hendon Central Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.582832, "lon": -0.225909}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000106B", "indicator": "Stop B", "stopLetter": "B", "modes": ["bus"], "icsCode": "1000106", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00106A", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000106B", "commonName": "Hendon Central Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.582839, "lon": -0.225172}], "lat": 51.582839, "lon": -0.225172}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490G00106G", "modes": ["bus"], "icsCode": "1000106", "stopType": "NaptanOnstreetBusCoachStopCluster", "stationNaptan": "490G00106G", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490G00106G", "commonName": "Hendon Central Station", "placeType": "StopPoint", "additionalProperties": [], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000106E", "indicator": "Stop E", "stopLetter": "E", "modes": ["bus"], "icsCode": "1000106", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00106G", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000106E", "commonName": "Hendon Central Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.583466, "lon": -0.227991}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000106F", "indicator": "Stop F", "stopLetter": "F", "modes": ["bus"], "icsCode": "1000106", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00106G", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000106F", "commonName": "Hendon Central Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.5839, "lon": -0.228682}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000106G", "indicator": "Stop G", "stopLetter": "G", "modes": ["bus"], "icsCode": "1000106", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00106G", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000106G", "commonName": "Hendon Central Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.583863, "lon": -0.228077}], "lat": 51.5839, "lon": -0.228682}, {"$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": "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}], "lat": 51.583301, "lon": -0.226424}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "940GZZLUHGD", "modes": ["bus", "tube"], "icsCode": "1000111", "stopType": "NaptanMetroStation", "stationNaptan": "940GZZLUHGD", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "u2", "name": "U2", "uri": "/Line/u2", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "278", "name": "278", "uri": "/Line/278", "type": "Line", "crowding": {"$type": "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": "697", "name": "697", "uri": "/Line/697", "type": "Line", "crowding": {"$type": "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": "698", "name": "698", "uri": "/Line/698", "type": "Line", "crowding": {"$type": "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": "490000111N", "stationAtcoCode": "490G00111B", "lineIdentifier": ["u2", "278", "697", "698"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490000111B", "stationAtcoCode": "490G00111B", "lineIdentifier": ["u2", "278"]}, {"$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": "bus", "lineIdentifier": ["u2", "278", "697", "698"]}, {"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["piccadilly", "metropolitan"]}], "status": true, "id": "940GZZLUHGD", "commonName": "Hillingdon 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": "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": "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": "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": "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": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "6"}, {"$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": "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": "6"}, {"$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": "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": "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": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "CarParks_800447"}], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490G00111B", "modes": ["bus"], "icsCode": "1000111", "stopType": "NaptanOnstreetBusCoachStopCluster", "stationNaptan": "490G00111B", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490G00111B", "commonName": "Hillingdon Station", "placeType": "StopPoint", "additionalProperties": [], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000111B", "indicator": "Stop B", "stopLetter": "B", "modes": ["bus"], "icsCode": "1000111", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00111B", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000111B", "commonName": "Hillingdon Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.553505, "lon": -0.448407}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000111N", "indicator": "Stop A", "stopLetter": "A", "modes": ["bus"], "icsCode": "1000111", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00111B", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000111N", "commonName": "Hillingdon Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.553675, "lon": -0.448315}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000111S", "indicator": "Stop LN", "stopLetter": "LN", "modes": ["bus"], "icsCode": "1000111", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00111B", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000111S", "commonName": "Hillingdon Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.553423, "lon": -0.448309}], "lat": 51.553505, "lon": -0.448407}, {"$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": "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}], "lat": 51.553715, "lon": -0.449828}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "940GZZLUHGR", "modes": ["tube", "bus"], "icsCode": "1000099", "stopType": "NaptanMetroStation", "stationNaptan": "940GZZLUHGR", "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": "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": "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": "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": "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": "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": "226", "name": "226", "uri": "/Line/226", "type": "Line", "crowding": {"$type": "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": "490000099A", "stationAtcoCode": "490G00099A", "lineIdentifier": ["483", "n83", "112", "226"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490000099J", "stationAtcoCode": "490G00099J", "lineIdentifier": ["483", "n83", "112", "226"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "940GZZLUHGR", "lineIdentifier": ["central"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490000099K", "stationAtcoCode": "490G00099J", "lineIdentifier": ["487", "95"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490015498N", "stationAtcoCode": "490G00099N", "lineIdentifier": ["487", "95"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "bus", "lineIdentifier": ["483", "n83", "112", "487", "95", "226"]}, {"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["central"]}], "status": true, "id": "940GZZLUHGR", "commonName": "Hanger Lane 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": "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": "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": "Help Points", "sourceSystemKey": "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": "Bridge", "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": "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": "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": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490G00099A", "modes": ["bus"], "icsCode": "1000099", "stopType": "NaptanOnstreetBusCoachStopCluster", "stationNaptan": "490G00099A", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490G00099A", "commonName": "Hanger Lane Station", "placeType": "StopPoint", "additionalProperties": [], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000099A", "indicator": "Stop A", "stopLetter": "A", "modes": ["bus"], "icsCode": "1000099", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00099A", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000099A", "commonName": "Hanger Lane Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.529043, "lon": -0.292732}], "lat": 51.529043, "lon": -0.292732}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490G00099J", "modes": ["bus"], "icsCode": "1000099", "stopType": "NaptanOnstreetBusCoachStopCluster", "stationNaptan": "490G00099J", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490G00099J", "commonName": "Hanger Lane Station", "placeType": "StopPoint", "additionalProperties": [], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000099J", "indicator": "Stop J", "stopLetter": "J", "modes": ["bus"], "icsCode": "1000099", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00099J", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000099J", "commonName": "Hanger Lane Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.530524, "lon": -0.292575}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000099K", "indicator": "Stop K", "stopLetter": "K", "modes": ["bus"], "icsCode": "1000099", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00099J", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000099K", "commonName": "Hanger Lane Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.530326, "lon": -0.292554}], "lat": 51.530524, "lon": -0.292575}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490G00099N", "modes": ["bus"], "icsCode": "1000099", "stopType": "NaptanOnstreetBusCoachStopCluster", "stationNaptan": "490G00099N", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490G00099N", "commonName": "Hanger Lane Station", "placeType": "StopPoint", "additionalProperties": [], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490015498N", "indicator": "Stop N", "stopLetter": "N", "modes": ["bus"], "icsCode": "1000099", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00099N", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490015498N", "commonName": "Hanger Lane Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.52948, "lon": -0.291923}], "lat": 51.52948, "lon": -0.291923}, {"$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": "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}], "lat": 51.530177, "lon": -0.292704}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "940GZZLUHGT", "modes": ["tube", "bus"], "icsCode": "1000109", "stopType": "NaptanMetroStation", "stationNaptan": "940GZZLUHGT", "lines": [{"$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": "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": "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": "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": "n20", "name": "N20", "uri": "/Line/n20", "type": "Line", "crowding": {"$type": "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": "490012359E", "stationAtcoCode": "490G00109S", "lineIdentifier": ["43", "134", "234", "n20"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490000109S", "stationAtcoCode": "490G00109S", "lineIdentifier": ["43", "134", "234", "n20"]}, {"$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": "bus", "lineIdentifier": ["43", "134", "234", "n20"]}, {"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["northern"]}], "status": true, "id": "940GZZLUHGT", "commonName": "Highgate 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": "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": "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": "Payphones", "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": "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": "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": "ASDA Click and Collect", "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": "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": "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": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "CarParks_800479"}], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490G00109S", "modes": ["bus"], "icsCode": "1000109", "stopType": "NaptanOnstreetBusCoachStopCluster", "stationNaptan": "490G00109S", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490G00109S", "commonName": "Highgate Station", "placeType": "StopPoint", "additionalProperties": [], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000109S", "indicator": "Stop T", "stopLetter": "T", "modes": ["bus"], "icsCode": "1000109", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00109S", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000109S", "commonName": "Highgate Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.577004, "lon": -0.145532}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490012359E", "indicator": "Stop G", "stopLetter": "G", "modes": ["bus"], "icsCode": "1000109", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00109S", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490012359E", "commonName": "Highgate Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.575952, "lon": -0.143251}], "lat": 51.577004, "lon": -0.145532}, {"$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": "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}], "lat": 51.577532, "lon": -0.145857}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "940GZZLUHLT", "modes": ["bus", "tube"], "icsCode": "1000095", "stopType": "NaptanMetroStation", "stationNaptan": "940GZZLUHLT", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "150", "name": "150", "uri": "/Line/150", "type": "Line", "crowding": {"$type": "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": "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": "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", "naptanIdReference": "490000095B", "stationAtcoCode": "490G00095A", "lineIdentifier": ["150", "247", "n8"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490000095A", "stationAtcoCode": "490G00095A", "lineIdentifier": ["150", "247", "n8"]}, {"$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": "bus", "lineIdentifier": ["150", "247", "n8"]}, {"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["central"]}], "status": true, "id": "940GZZLUHLT", "commonName": "Hainault 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": "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": "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": "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 (male, female)"}, {"$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"}, {"$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": "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": "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": "Escalators", "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": "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"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "CarParks_800477"}], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490G00095A", "modes": ["bus"], "icsCode": "1000095", "stopType": "NaptanOnstreetBusCoachStopCluster", "stationNaptan": "490G00095A", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490G00095A", "commonName": "Hainault Station", "placeType": "StopPoint", "additionalProperties": [], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000095A", "indicator": "Stop U", "stopLetter": "U", "modes": ["bus"], "icsCode": "1000095", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00095A", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000095A", "commonName": "Hainault Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.604188, "lon": 0.094474}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000095B", "indicator": "Stop T", "stopLetter": "T", "modes": ["bus"], "icsCode": "1000095", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00095A", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000095B", "commonName": "Hainault Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.604361, "lon": 0.094857}], "lat": 51.604361, "lon": 0.094857}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000095003", "indicator": "Entrance 1", "stopLetter": "1", "modes": ["bus"], "icsCode": "1000095", "stopType": "NaptanMetroEntrance", "stationNaptan": "940GZZLUHLT", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000095003", "commonName": "Hainault Underground Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.603915, "lon": 0.093118}, {"$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}], "lat": 51.603659, "lon": 0.093482}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "940GZZLUHNX", "modes": ["bus", "tube"], "icsCode": "1000103", "stopType": "NaptanMetroStation", "stationNaptan": "940GZZLUHNX", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "285", "name": "285", "uri": "/Line/285", "type": "Line", "crowding": {"$type": "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": "423", "name": "423", "uri": "/Line/423", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "482", "name": "482", "uri": "/Line/482", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "h26", "name": "H26", "uri": "/Line/h26", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "203", "name": "203", "uri": "/Line/203", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "h25", "name": "H25", "uri": "/Line/h25", "type": "Line", "crowding": {"$type": "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": "90", "name": "90", "uri": "/Line/90", "type": "Line", "crowding": {"$type": "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"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490000103F", "stationAtcoCode": "490G00103G", "lineIdentifier": ["285", "423", "h26", "h25", "90", "sl7"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490000103C", "stationAtcoCode": "490G00103G", "lineIdentifier": ["285", "490", "90", "sl7"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "940GZZLUHNX", "lineIdentifier": ["piccadilly"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490000103D", "stationAtcoCode": "490G00103G", "lineIdentifier": ["423", "482", "203"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490000103E", "stationAtcoCode": "490G00103G", "lineIdentifier": ["482", "490"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490000103Z", "stationAtcoCode": "490G00103G", "lineIdentifier": ["h26", "203", "h25"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "bus", "lineIdentifier": ["285", "423", "482", "h26", "203", "h25", "490", "90", "sl7"]}, {"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["piccadilly"]}], "status": true, "id": "940GZZLUHNX", "commonName": "Hatton Cross 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": "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": "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": "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": "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": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "5+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": "Toilets", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "CarParks_800446"}], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490G00103G", "modes": ["bus"], "icsCode": "1000103", "stopType": "NaptanOnstreetBusCoachStopCluster", "stationNaptan": "490G00103G", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490G00103G", "commonName": "Hatton Cross Station", "placeType": "StopPoint", "additionalProperties": [], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000103A", "indicator": "->SW", "modes": ["bus"], "icsCode": "1000103", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00103G", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000103A", "commonName": "Hatton Cross Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.46699, "lon": -0.423327}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000103B", "indicator": "->W", "stopLetter": "->W", "modes": ["bus"], "icsCode": "1000103", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00103G", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000103B", "commonName": "Hatton Cross Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.466875, "lon": -0.423518}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000103C", "indicator": "Stop C", "stopLetter": "C", "modes": ["bus"], "icsCode": "1000103", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00103G", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000103C", "commonName": "Hatton Cross Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.466802, "lon": -0.423376}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000103D", "indicator": "Stop B", "stopLetter": "B", "modes": ["bus"], "icsCode": "1000103", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00103G", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000103D", "commonName": "Hatton Cross Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.466774, "lon": -0.423363}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000103E", "indicator": "Stop A", "stopLetter": "A", "modes": ["bus"], "icsCode": "1000103", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00103G", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000103E", "commonName": "Hatton Cross Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.466743, "lon": -0.423738}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000103E1", "indicator": "->E", "stopLetter": "->E", "modes": ["bus"], "icsCode": "1000103", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00103G", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000103E1", "commonName": "Hatton Cross Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.466748, "lon": -0.423393}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000103F", "indicator": "Stop E", "stopLetter": "E", "modes": ["bus"], "icsCode": "1000103", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00103G", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000103F", "commonName": "Hatton Cross Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.467343, "lon": -0.422854}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000103Z", "indicator": "Stop D", "stopLetter": "D", "modes": ["bus"], "icsCode": "1000103", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00103G", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000103Z", "commonName": "Hatton Cross Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.466916, "lon": -0.4232}], "lat": 51.466743, "lon": -0.423738}, {"$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": "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}], "lat": 51.466747, "lon": -0.423191}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "940GZZLUHOH", "modes": ["tube"], "icsCode": "1000102", "stopType": "NaptanMetroStation", "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": "940GZZLUHOH", "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": "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": "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": "WiFi", "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": "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": "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": "Euro Cash Machines", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_4903"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5530"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "CarParks_800445"}], "children": [{"$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}], "lat": 51.579195, "lon": -0.337225}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "940GZZLUHPC", "modes": ["bus", "tube"], "icsCode": "1000119", "stopType": "NaptanMetroStation", "stationNaptan": "940GZZLUHPC", "lines": [{"$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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "38", "name": "38", "uri": "/Line/38", "type": "Line", "crowding": {"$type": "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": "490000119P", "stationAtcoCode": "490G00119A", "lineIdentifier": ["n22", "n19", "137", "19", "22", "n137"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490000119K", "stationAtcoCode": "490G00119F", "lineIdentifier": ["n22", "13", "6", "n19", "452", "n38", "137", "n32", "52", "36", "2", "19", "22", "148", "390", "n2", "n137", "38"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490000119F", "stationAtcoCode": "490G00119F", "lineIdentifier": ["13", "6", "n32", "n38", "52", "36", "2", "148", "390", "n2", "38"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "940GZZLUHPC", "lineIdentifier": ["piccadilly"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490000119T", "stationAtcoCode": "490G00119S", "lineIdentifier": ["n9", "14", "n97", "9"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490000119M", "stationAtcoCode": "490G00119A", "lineIdentifier": ["n9", "52", "9"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490000119N", "stationAtcoCode": "490G00119A", "lineIdentifier": ["14", "n97", "n74", "74", "414"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490000119W", "stationAtcoCode": "490G00119S", "lineIdentifier": ["n74", "74", "414"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490000119S", "stationAtcoCode": "490G00119S", "lineIdentifier": ["52"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "bus", "lineIdentifier": ["n22", "13", "n9", "14", "6", "n19", "452", "n32", "n38", "137", "n97", "n74", "74", "52", "36", "2", "19", "414", "22", "148", "390", "n2", "n137", "9", "38"]}, {"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["piccadilly"]}], "status": true, "id": "940GZZLUHPC", "commonName": "Hyde Park Corner 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": "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": "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": "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": "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": "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": "BikePoints_166"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_181"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_191"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_207"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_213"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_222"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_303"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_380"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_733"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5664"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_4762"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_4852"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5864"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_4457"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_4968"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5373"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5000"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_4706"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5969"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5968"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_4863"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_3738"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_4638"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_4761"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5966"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_4412"}], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490G00119A", "modes": ["bus"], "icsCode": "1000119", "stopType": "NaptanOnstreetBusCoachStopCluster", "stationNaptan": "490G00119A", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490G00119A", "commonName": "Hyde Park Corner", "placeType": "StopPoint", "additionalProperties": [], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000119L", "indicator": "Stop 13", "stopLetter": "13", "modes": ["bus"], "icsCode": "1000119", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00119A", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000119L", "commonName": "Hyde Park Corner", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.502783, "lon": -0.153129}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000119M", "indicator": "Stop M", "stopLetter": "M", "modes": ["bus"], "icsCode": "1000119", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00119A", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000119M", "commonName": "Hyde Park Corner Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.502749, "lon": -0.153274}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000119N", "indicator": "Stop N", "stopLetter": "N", "modes": ["bus"], "icsCode": "1000119", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00119A", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000119N", "commonName": "Hyde Park Corner Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.502707, "lon": -0.153449}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000119P", "indicator": "Stop P", "stopLetter": "P", "modes": ["bus"], "icsCode": "1000119", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00119A", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000119P", "commonName": "Hyde Park Corner Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.502604, "lon": -0.153756}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000119ZA", "indicator": "W-bound", "modes": ["bus"], "icsCode": "1000119", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00119A", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000119ZA", "commonName": "Hyde Park Corner", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.502572, "lon": -0.154002}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000119ZB", "indicator": "W-bound", "modes": ["bus"], "icsCode": "1000119", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00119A", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000119ZB", "commonName": "Hyde Park Corner", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.502836, "lon": -0.154207}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000119ZC", "indicator": "W-bound", "modes": ["bus"], "icsCode": "1000119", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00119A", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000119ZC", "commonName": "Hyde Park Corner", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.502581, "lon": -0.153987}], "lat": 51.502707, "lon": -0.153449}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490G00119F", "modes": ["bus"], "icsCode": "1000119", "stopType": "NaptanOnstreetBusCoachStopCluster", "stationNaptan": "490G00119F", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490G00119F", "commonName": "Hyde Park Corner", "placeType": "StopPoint", "additionalProperties": [], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000119F", "indicator": "Stop F", "stopLetter": "F", "modes": ["bus"], "icsCode": "1000119", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00119F", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000119F", "commonName": "Hyde Park Corner", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.502088, "lon": -0.150679}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000119K", "indicator": "Stop K", "stopLetter": "K", "modes": ["bus"], "icsCode": "1000119", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00119F", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000119K", "commonName": "Hyde Park Corner", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.501347, "lon": -0.151054}], "lat": 51.501347, "lon": -0.151054}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490G00119S", "modes": ["bus"], "icsCode": "1000119", "stopType": "NaptanOnstreetBusCoachStopCluster", "stationNaptan": "490G00119S", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490G00119S", "commonName": "Hyde Park Corner", "placeType": "StopPoint", "additionalProperties": [], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000119R", "indicator": "Stop R", "stopLetter": "R", "modes": ["bus"], "icsCode": "1000119", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00119S", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000119R", "commonName": "Hyde Park Corner", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.502889, "lon": -0.154148}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000119S", "indicator": "Stop S", "stopLetter": "S", "modes": ["bus"], "icsCode": "1000119", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00119S", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000119S", "commonName": "Hyde Park Corner Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.502966, "lon": -0.153914}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000119T", "indicator": "Stop T", "stopLetter": "T", "modes": ["bus"], "icsCode": "1000119", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00119S", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000119T", "commonName": "Hyde Park Corner Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.503023, "lon": -0.153508}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000119W", "indicator": "Stop W", "stopLetter": "W", "modes": ["bus"], "icsCode": "1000119", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00119S", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000119W", "commonName": "Hyde Park Corner Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.503044, "lon": -0.153161}], "lat": 51.502966, "lon": -0.153914}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490G07492W", "modes": ["bus"], "icsCode": "1000119", "stopType": "NaptanOnstreetBusCoachStopCluster", "stationNaptan": "490G07492W", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490G07492W", "commonName": "Hyde Park Corner", "placeType": "StopPoint", "additionalProperties": [], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000119X", "indicator": "SW-bound", "modes": ["bus"], "icsCode": "1000119", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G07492W", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000119X", "commonName": "Hyde Park Corner", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.503862, "lon": -0.148013}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490007492W1", "indicator": "W-bound", "modes": ["bus"], "icsCode": "1000119", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G07492W", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490007492W1", "commonName": "Hyde Park Corner", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.503914, "lon": -0.147896}], "lat": 51.503914, "lon": -0.147896}, {"$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": "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}], "lat": 51.503035, "lon": -0.152441}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "940GZZLUHPK", "modes": ["tube", "bus"], "icsCode": "1000113", "stopType": "NaptanMetroStation", "stationNaptan": "940GZZLUHPK", "lines": [{"$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": "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": "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": "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": "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": "n207", "name": "N207", "uri": "/Line/n207", "type": "Line", "crowding": {"$type": "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": "490000113A", "stationAtcoCode": "490G00113G", "lineIdentifier": ["228", "148", "31", "94", "n207"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490000113G", "stationAtcoCode": "490G00113G", "lineIdentifier": ["228", "148", "31", "94", "n207"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490000113T", "stationAtcoCode": "490G00113G", "lineIdentifier": ["228", "148", "31", "94", "n207"]}, {"$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": "bus", "lineIdentifier": ["228", "148", "31", "94", "n207"]}, {"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["central"]}], "status": true, "id": "940GZZLUHPK", "commonName": "Holland Park 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": "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": "Help Points", "sourceSystemKey": "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": "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": "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": "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": "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": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_212"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_543"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_560"}, {"$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_611"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_622"}], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490G00113G", "modes": ["bus"], "icsCode": "1000113", "stopType": "NaptanOnstreetBusCoachStopCluster", "stationNaptan": "490G00113G", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490G00113G", "commonName": "Holland Park", "placeType": "StopPoint", "additionalProperties": [], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000113A", "indicator": "Stop HA", "stopLetter": "HA", "modes": ["bus"], "icsCode": "1000113", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00113G", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000113A", "commonName": "Holland Park", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.50759, "lon": -0.20386}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000113G", "indicator": "Stop HB", "stopLetter": "HB", "modes": ["bus"], "icsCode": "1000113", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00113G", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000113G", "commonName": "Holland Park Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.50696, "lon": -0.206118}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000113T", "indicator": "Stop HL", "stopLetter": "HL", "modes": ["bus"], "icsCode": "1000113", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00113G", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000113T", "commonName": "Holland Park Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.507605, "lon": -0.204839}], "lat": 51.50759, "lon": -0.20386}, {"$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": "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}], "lat": 51.507143, "lon": -0.205679}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "940GZZLUHR4", "modes": ["tube"], "icsCode": "1000104", "stopType": "NaptanMetroStation", "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": "940GZZLUHR4", "commonName": "Heathrow Terminal 4 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": "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"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "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": "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": "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": "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": "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": "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_5935"}], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "4900HTRWTM49", "indicator": "Entrance 2", "stopLetter": "2", "modes": [], "icsCode": "1000104", "stopType": "NaptanMetroEntrance", "stationNaptan": "940GZZLUHR4", "hubNaptanCode": "HUBHX4", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "4900HTRWTM49", "commonName": "Heathrow Terminal 4 Underground Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.459273, "lon": -0.44481}, {"$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}], "lat": 51.458524, "lon": -0.445771}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "940GZZLUHR5", "modes": ["tube"], "icsCode": "1016430", "stopType": "NaptanMetroStation", "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": "940GZZLUHR5", "commonName": "Heathrow Terminal 5 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": "Help Points", "sourceSystemKey": "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": "Facility", "key": "Escalators", "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": "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"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo 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": "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": "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": "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": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5936"}], "children": [{"$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}], "lat": 51.470052, "lon": -0.49056}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "940GZZLUHRC", "modes": ["tube"], "icsCode": "1000105", "stopType": "NaptanMetroStation", "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": "940GZZLUHRC", "commonName": "Heathrow Terminals 2 & 3 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": "Bridge", "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": "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": "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"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5934"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5932"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5933"}, {"$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": "Euro Cash Machines", "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"}, {"$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": "WiFi", "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": "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": "Help Points", "sourceSystemKey": "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": "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": "Car park", "sourceSystemKey": "StaticObjects", "value": "no"}], "children": [{"$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": "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}], "lat": 51.471235, "lon": -0.452265}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "940GZZLUHSC", "modes": ["tube"], "icsCode": "1000097", "stopType": "NaptanMetroStation", "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": "940GZZLUHSC", "commonName": "Hammersmith (H&C 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": "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": "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": "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": "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": "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": "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": "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": "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"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_595"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_598"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_730"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_775"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_4595"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5396"}], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490G00097T", "modes": ["bus"], "icsCode": "1000097", "stopType": "NaptanOnstreetBusCoachStopCluster", "stationNaptan": "490G00097T", "hubNaptanCode": "HUBHMS", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490G00097T", "commonName": "Hammersmith Stn / H&c and Circle Lines", "placeType": "StopPoint", "additionalProperties": [], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000097T", "indicator": "Stop W", "stopLetter": "W", "modes": ["bus"], "icsCode": "1000097", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00097T", "hubNaptanCode": "HUBHMS", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000097T", "commonName": "Hammersmith Stn / H&c and Circle Lines", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.493339, "lon": -0.225208}], "lat": 51.493339, "lon": -0.225208}, {"$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": "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}], "lat": 51.493307, "lon": -0.224301}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "940GZZLUHSD", "modes": ["tube"], "icsCode": "1000096", "stopType": "NaptanMetroStation", "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"}, {"$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": ["piccadilly"]}, {"$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": ["piccadilly", "district"]}], "status": true, "id": "940GZZLUHSD", "commonName": "Hammersmith (Dist&Picc Line) 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": "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": "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": "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": "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": "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": "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": "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"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_595"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_598"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_686"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_730"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_775"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_4595"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5396"}], "children": [{"$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": "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}], "lat": 51.4923, "lon": -0.22362}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "940GZZLUHSK", "modes": ["bus", "tube"], "icsCode": "1000110", "stopType": "NaptanMetroStation", "stationNaptan": "940GZZLUHSK", "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": "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"}, {"$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": "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": "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": "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": "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": "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": "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"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490000110B", "stationAtcoCode": "490G00110R", "lineIdentifier": ["n9", "9"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490000110F", "stationAtcoCode": "490G00110R", "lineIdentifier": ["n9", "27", "n27", "9"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "940GZZLUHSK", "lineIdentifier": ["district", "circle"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490000110A", "stationAtcoCode": "490G00110R", "lineIdentifier": ["49", "27", "28", "328", "n27", "n28", "n31"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490000110E", "stationAtcoCode": "490G00110R", "lineIdentifier": ["49", "28", "328", "n28", "n31"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "bus", "lineIdentifier": ["n9", "49", "27", "28", "328", "n27", "9", "n28", "n31"]}, {"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["district", "circle"]}], "status": true, "id": "940GZZLUHSK", "commonName": "High Street Kensington 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": "Payphones", "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": "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": "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": "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": "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": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_103"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_133"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_157"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_168"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_277"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_375"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_4556"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_4858"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5663"}], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490G00110R", "modes": ["bus"], "icsCode": "1000110", "stopType": "NaptanOnstreetBusCoachStopCluster", "stationNaptan": "490G00110R", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490G00110R", "commonName": "High Street Kensington Station", "placeType": "StopPoint", "additionalProperties": [], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000110A", "indicator": "Stop A", "stopLetter": "A", "modes": ["bus"], "icsCode": "1000110", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00110R", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000110A", "commonName": "High Street Kensington Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.500982, "lon": -0.193415}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000110B", "indicator": "Stop B", "stopLetter": "B", "modes": ["bus"], "icsCode": "1000110", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00110R", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000110B", "commonName": "High Street Kensington Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.500717, "lon": -0.194246}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000110E", "indicator": "Stop E", "stopLetter": "E", "modes": ["bus"], "icsCode": "1000110", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00110R", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000110E", "commonName": "High Street Kensington Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.501324, "lon": -0.192234}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000110F", "indicator": "Stop F", "stopLetter": "F", "modes": ["bus"], "icsCode": "1000110", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00110R", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000110F", "commonName": "High Street Kensington Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.501347, "lon": -0.192003}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000110R", "indicator": "Stop R", "stopLetter": "R", "modes": ["bus"], "icsCode": "1000110", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00110R", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000110R", "commonName": "High Street Kensington Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.500951, "lon": -0.193128}], "lat": 51.500951, "lon": -0.193128}, {"$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": "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}], "lat": 51.501055, "lon": -0.192792}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "940GZZLUHSN", "modes": ["tube"], "icsCode": "1000100", "stopType": "NaptanMetroStation", "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": "940GZZLUHSN", "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": "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": "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": "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": "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": "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": [{"$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}], "lat": 51.53631, "lon": -0.257883}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "940GZZLUHTD", "modes": ["bus", "tube"], "icsCode": "1000098", "stopType": "NaptanMetroStation", "stationNaptan": "940GZZLUHTD", "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": "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": "n5", "name": "N5", "uri": "/Line/n5", "type": "Line", "crowding": {"$type": "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": "490000098B", "stationAtcoCode": "490G00098S", "lineIdentifier": ["268", "46", "n5"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490000098S", "stationAtcoCode": "490G00098S", "lineIdentifier": ["268", "603", "n5"]}, {"$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": "bus", "lineIdentifier": ["268", "46", "603", "n5"]}, {"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["northern"]}], "status": true, "id": "940GZZLUHTD", "commonName": "Hampstead 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": "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": "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": "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": "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": "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": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$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": "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": "Car park", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "6"}], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490G00098S", "modes": ["bus"], "icsCode": "1000098", "stopType": "NaptanOnstreetBusCoachStopCluster", "stationNaptan": "490G00098S", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490G00098S", "commonName": "Hampstead Station", "placeType": "StopPoint", "additionalProperties": [], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000098B", "indicator": "Stop B", "stopLetter": "B", "modes": ["bus"], "icsCode": "1000098", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00098S", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000098B", "commonName": "Hampstead Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.555959, "lon": -0.177504}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000098S", "indicator": "Stop Q", "stopLetter": "Q", "modes": ["bus"], "icsCode": "1000098", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00098S", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000098S", "commonName": "Hampstead Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.556916, "lon": -0.17836}], "lat": 51.555959, "lon": -0.177504}, {"$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": "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}], "lat": 51.556239, "lon": -0.177464}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "940GZZLUHWC", "modes": ["bus", "tube"], "icsCode": "1000116", "stopType": "NaptanMetroStation", "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"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "h20", "name": "H20", "uri": "/Line/h20", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "120", "name": "120", "uri": "/Line/120", "type": "Line", "crowding": {"$type": "Tfl.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"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "4900001161", "stationAtcoCode": "490G001161", "lineIdentifier": ["h20", "120"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "4900001162", "stationAtcoCode": "490G001161", "lineIdentifier": ["h20", "120"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["piccadilly"]}, {"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "bus", "lineIdentifier": ["h20", "120"]}], "status": true, "id": "940GZZLUHWC", "commonName": "Hounslow Central 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": "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": "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": "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": "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": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5597"}], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490G001161", "modes": ["bus"], "icsCode": "1000116", "stopType": "NaptanOnstreetBusCoachStopCluster", "stationNaptan": "490G001161", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490G001161", "commonName": "Hounslow Central Station", "placeType": "StopPoint", "additionalProperties": [], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "4900001161", "indicator": "Stop RR", "stopLetter": "RR", "modes": ["bus"], "icsCode": "1000116", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G001161", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "4900001161", "commonName": "Hounslow Central Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.471788, "lon": -0.367238}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "4900001162", "indicator": "Stop YY", "stopLetter": "YY", "modes": ["bus"], "icsCode": "1000116", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G001161", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "4900001162", "commonName": "Hounslow Central Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.470895, "lon": -0.367039}], "lat": 51.471788, "lon": -0.367238}, {"$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": "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}], "lat": 51.471295, "lon": -0.366578}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "940GZZLUHWE", "modes": ["tube", "bus"], "icsCode": "1000117", "stopType": "NaptanMetroStation", "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"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "111", "name": "111", "uri": "/Line/111", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "h28", "name": "H28", "uri": "/Line/h28", "type": "Line", "crowding": {"$type": "Tfl.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"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490000117D", "stationAtcoCode": "490G00117E", "lineIdentifier": ["111", "h28"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490000117E", "stationAtcoCode": "490G00117E", "lineIdentifier": ["111", "h28"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["piccadilly"]}, {"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "bus", "lineIdentifier": ["111", "h28"]}], "status": true, "id": "940GZZLUHWE", "commonName": "Hounslow East 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": "Yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "CarParks_800448"}, {"$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": "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": "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": "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": "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": "Help Points", "sourceSystemKey": "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": "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": "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": "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": "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"}], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490G00117E", "modes": ["bus"], "icsCode": "1000117", "stopType": "NaptanOnstreetBusCoachStopCluster", "stationNaptan": "490G00117E", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490G00117E", "commonName": "Hounslow East Station", "placeType": "StopPoint", "additionalProperties": [], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000117D", "indicator": "Stop DD", "stopLetter": "DD", "modes": ["bus"], "icsCode": "1000117", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00117E", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000117D", "commonName": "Hounslow East Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.473462, "lon": -0.357041}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000117E", "indicator": "Stop EE", "stopLetter": "EE", "modes": ["bus"], "icsCode": "1000117", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00117E", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000117E", "commonName": "Hounslow East Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.472937, "lon": -0.356757}], "lat": 51.473462, "lon": -0.357041}, {"$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": "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}], "lat": 51.473213, "lon": -0.356474}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "940GZZLUHWT", "modes": ["bus", "tube"], "icsCode": "1000118", "stopType": "NaptanMetroStation", "stationNaptan": "940GZZLUHWT", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "81", "name": "81", "uri": "/Line/81", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "h32", "name": "H32", "uri": "/Line/h32", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "h98", "name": "H98", "uri": "/Line/h98", "type": "Line", "crowding": {"$type": "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": "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": "203", "name": "203", "uri": "/Line/203", "type": "Line", "crowding": {"$type": "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": "482", "name": "482", "uri": "/Line/482", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "222", "name": "222", "uri": "/Line/222", "type": "Line", "crowding": {"$type": "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": "490000118C", "stationAtcoCode": "490G00118B", "lineIdentifier": ["81", "h98", "n9", "203", "222"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490000118A", "stationAtcoCode": "490G00118B", "lineIdentifier": ["81", "h32", "h98", "n9", "203", "482", "222"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "940GZZLUHWT", "lineIdentifier": ["piccadilly"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490000118B", "stationAtcoCode": "490G00118B", "lineIdentifier": ["h91"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "bus", "lineIdentifier": ["81", "h32", "h98", "n9", "203", "h91", "482", "222"]}, {"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["piccadilly"]}], "status": true, "id": "940GZZLUHWT", "commonName": "Hounslow West 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": "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": "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": "Help Points", "sourceSystemKey": "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": "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": "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": "no"}, {"$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": "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": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5556"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "CarParks_800449"}], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490G00118B", "modes": ["bus"], "icsCode": "1000118", "stopType": "NaptanOnstreetBusCoachStopCluster", "stationNaptan": "490G00118B", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490G00118B", "commonName": "Hounslow West Station", "placeType": "StopPoint", "additionalProperties": [], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000118A", "indicator": "Stop A", "stopLetter": "A", "modes": ["bus"], "icsCode": "1000118", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00118B", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000118A", "commonName": "Hounslow West Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.472943, "lon": -0.385656}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000118B", "indicator": "Stop B", "stopLetter": "B", "modes": ["bus"], "icsCode": "1000118", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00118B", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000118B", "commonName": "Hounslow West Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.472895, "lon": -0.385441}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000118C", "indicator": "Stop C", "stopLetter": "C", "modes": ["bus"], "icsCode": "1000118", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00118B", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000118C", "commonName": "Hounslow West Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.472561, "lon": -0.385352}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000118Z", "indicator": "->E", "stopLetter": "->E", "modes": ["bus"], "icsCode": "1000118", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00118B", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000118Z", "commonName": "Hounslow West Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.473295, "lon": -0.387083}], "lat": 51.472895, "lon": -0.385441}, {"$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": "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}], "lat": 51.473469, "lon": -0.386544}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "940GZZLUHWY", "modes": ["bus", "tube"], "icsCode": "1000114", "stopType": "NaptanMetroStation", "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"}, {"$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": "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": "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": "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": "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": "153", "name": "153", "uri": "/Line/153", "type": "Line", "crowding": {"$type": "Tfl.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"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490000114U", "stationAtcoCode": "490G00114U", "lineIdentifier": ["43", "n41", "393", "263", "21", "n271", "153"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490000114Y", "stationAtcoCode": "490G00114U", "lineIdentifier": ["43", "n41", "393", "263", "21", "n271", "153"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["piccadilly"]}, {"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "bus", "lineIdentifier": ["43", "n41", "393", "263", "21", "n271", "153"]}], "status": true, "id": "940GZZLUHWY", "commonName": "Holloway Road 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": "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": "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": "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": "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": "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": "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": "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": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5136"}], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490G00114U", "modes": ["bus"], "icsCode": "1000114", "stopType": "NaptanOnstreetBusCoachStopCluster", "stationNaptan": "490G00114U", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490G00114U", "commonName": "Holloway Road Station", "placeType": "StopPoint", "additionalProperties": [], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000114U", "indicator": "Stop SU", "stopLetter": "SU", "modes": ["bus"], "icsCode": "1000114", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00114U", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000114U", "commonName": "Holloway Road Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.552886, "lon": -0.112817}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000114Y", "indicator": "Stop SY", "stopLetter": "SY", "modes": ["bus"], "icsCode": "1000114", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00114U", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000114Y", "commonName": "Holloway Road Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.552081, "lon": -0.111437}], "lat": 51.552886, "lon": -0.112817}, {"$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": "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}], "lat": 51.552697, "lon": -0.113244}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "940GZZLUICK", "modes": ["tube", "bus"], "icsCode": "1000120", "stopType": "NaptanMetroStation", "stationNaptan": "940GZZLUICK", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "278", "name": "278", "uri": "/Line/278", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "u10", "name": "U10", "uri": "/Line/u10", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "697", "name": "697", "uri": "/Line/697", "type": "Line", "crowding": {"$type": "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": "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": "698", "name": "698", "uri": "/Line/698", "type": "Line", "crowding": {"$type": "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": "490000120D", "stationAtcoCode": "490G00120A", "lineIdentifier": ["278", "u10", "697", "698"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490013091C", "stationAtcoCode": "490G00120C", "lineIdentifier": ["278", "u10"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "940GZZLUICK", "lineIdentifier": ["piccadilly", "metropolitan"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "bus", "lineIdentifier": ["278", "u10", "697", "698"]}, {"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["piccadilly", "metropolitan"]}], "status": true, "id": "940GZZLUICK", "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": "Facility", "key": "Toilets", "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": "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": "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": "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"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "CarParks_800450"}], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490G00120A", "modes": ["bus"], "icsCode": "1000120", "stopType": "NaptanOnstreetBusCoachStopCluster", "stationNaptan": "490G00120A", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490G00120A", "commonName": "Ickenham Station", "placeType": "StopPoint", "additionalProperties": [], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000120", "indicator": "Stop", "modes": ["bus"], "icsCode": "1000120", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00120A", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000120", "commonName": "Ickenham Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.562217, "lon": -0.444879}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000120D", "indicator": "Stop D", "stopLetter": "D", "modes": ["bus"], "icsCode": "1000120", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00120A", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000120D", "commonName": "Ickenham Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.562913, "lon": -0.444509}], "lat": 51.562217, "lon": -0.444879}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490G00120C", "modes": ["bus"], "icsCode": "1000120", "stopType": "NaptanOnstreetBusCoachStopCluster", "stationNaptan": "490G00120C", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490G00120C", "commonName": "Ickenham Station", "placeType": "StopPoint", "additionalProperties": [], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490013091C", "indicator": "Stop C", "stopLetter": "C", "modes": ["bus"], "icsCode": "1000120", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00120C", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490013091C", "commonName": "Ickenham Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.564062, "lon": -0.443619}], "lat": 51.564062, "lon": -0.443619}, {"$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": "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}], "lat": 51.56177, "lon": -0.442225}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "940GZZLUKBN", "modes": ["bus", "tube"], "icsCode": "1000126", "stopType": "NaptanMetroStation", "stationNaptan": "940GZZLUKBN", "lines": [{"$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": "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": "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": "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": "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": "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": "632", "name": "632", "uri": "/Line/632", "type": "Line", "crowding": {"$type": "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": "490000126A", "stationAtcoCode": "490G00126B", "lineIdentifier": ["189", "316", "n32", "32", "16", "632"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490000126B", "stationAtcoCode": "490G00126B", "lineIdentifier": ["189", "316", "n32", "32", "16", "632"]}, {"$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": "bus", "lineIdentifier": ["189", "316", "n32", "32", "16", "632"]}, {"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["jubilee"]}], "status": true, "id": "940GZZLUKBN", "commonName": "Kilburn 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": "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": "Bridge", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$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": "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": "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": "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": "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": "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": "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": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490G00126B", "modes": ["bus"], "icsCode": "1000126", "stopType": "NaptanOnstreetBusCoachStopCluster", "stationNaptan": "490G00126B", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490G00126B", "commonName": "Kilburn Station", "placeType": "StopPoint", "additionalProperties": [], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000126A", "indicator": "Stop A", "stopLetter": "A", "modes": ["bus"], "icsCode": "1000126", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00126B", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000126A", "commonName": "Kilburn Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.546384, "lon": -0.203256}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000126B", "indicator": "Stop B", "stopLetter": "B", "modes": ["bus"], "icsCode": "1000126", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00126B", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000126B", "commonName": "Kilburn Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.547422, "lon": -0.204123}], "lat": 51.546384, "lon": -0.203256}, {"$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": "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}], "lat": 51.547183, "lon": -0.204248}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "940GZZLUKBY", "modes": ["bus", "tube"], "icsCode": "1000128", "stopType": "NaptanMetroStation", "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"}, {"$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": "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": "653", "name": "653", "uri": "/Line/653", "type": "Line", "crowding": {"$type": "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": "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": "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": "204", "name": "204", "uri": "/Line/204", "type": "Line", "crowding": {"$type": "Tfl.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"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490000128B", "stationAtcoCode": "490G00128B", "lineIdentifier": ["324", "n98", "653", "183", "sl10", "683", "204"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490000128A", "stationAtcoCode": "490G00128B", "lineIdentifier": ["324", "n98", "653", "183", "sl10", "683", "204"]}], "lineModeGroups": [{"$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": ["324", "n98", "653", "183", "sl10", "683", "204"]}], "status": true, "id": "940GZZLUKBY", "commonName": "Kingsbury 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": "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": "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": "yes (male, female, disabled/baby-changing facilities)"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "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": "Kingsbury Station,London Underground Ltd.,Kingsbury Rd,London,NW9 9EG"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.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": "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": "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": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5196"}], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490G00128B", "modes": ["bus"], "icsCode": "1000128", "stopType": "NaptanOnstreetBusCoachStopCluster", "stationNaptan": "490G00128B", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490G00128B", "commonName": "Kingsbury Station", "placeType": "StopPoint", "additionalProperties": [], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000128A", "indicator": "Stop A", "stopLetter": "A", "modes": ["bus"], "icsCode": "1000128", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00128B", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000128A", "commonName": "Kingsbury Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.584929, "lon": -0.279769}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000128B", "indicator": "Stop B", "stopLetter": "B", "modes": ["bus"], "icsCode": "1000128", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00128B", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000128B", "commonName": "Kingsbury Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.584842, "lon": -0.279353}], "lat": 51.584842, "lon": -0.279353}, {"$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": "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}], "lat": 51.584845, "lon": -0.27879}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "940GZZLUKEN", "modes": ["tube"], "icsCode": "1000124", "stopType": "NaptanMetroStation", "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": "940GZZLUKEN", "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": "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": "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": "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": "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": "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"}], "children": [{"$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}], "lat": 51.581756, "lon": -0.31691}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "940GZZLUKNB", "modes": ["bus", "tube"], "icsCode": "1000130", "stopType": "NaptanMetroStation", "stationNaptan": "940GZZLUKNB", "lines": [{"$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": "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": "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": "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": "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": "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": "14", "name": "14", "uri": "/Line/14", "type": "Line", "crowding": {"$type": "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": "490000130KD", "stationAtcoCode": "490G00130KD", "lineIdentifier": ["414", "c1", "74", "n97", "n74", "14"]}, {"$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": "bus", "lineIdentifier": ["414", "c1", "74", "n97", "n74", "14"]}, {"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["piccadilly"]}], "status": true, "id": "940GZZLUKNB", "commonName": "Knightsbridge 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": "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": "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": "Help Points", "sourceSystemKey": "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": "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": "Knightsbridge Station,London Underground Ltd.,Sloane St,London,SW1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.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": "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": "Car park", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_166"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_222"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_292"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_303"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_368"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5514"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5479"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_4968"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5658"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5318"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5637"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5515"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5463"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_3738"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_4638"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5160"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5410"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_4492"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5152"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5770"}], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490G00130K1", "modes": ["bus"], "icsCode": "1000130", "stopType": "NaptanOnstreetBusCoachStopCluster", "stationNaptan": "490G00130K1", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490G00130K1", "commonName": "Knightsbridge Station", "placeType": "StopPoint", "additionalProperties": [], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000130K1", "indicator": "Stop KJ", "stopLetter": "KJ", "modes": ["bus"], "icsCode": "1000130", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00130K1", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000130K1", "commonName": "Knightsbridge Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.500898, "lon": -0.160207}], "lat": 51.500898, "lon": -0.160207}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490G00130KD", "modes": ["bus"], "icsCode": "1000130", "stopType": "NaptanOnstreetBusCoachStopCluster", "stationNaptan": "490G00130KD", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490G00130KD", "commonName": "Knightsbridge Station", "placeType": "StopPoint", "additionalProperties": [], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000130KD", "indicator": "Stop KD", "stopLetter": "KD", "modes": ["bus"], "icsCode": "1000130", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00130KD", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000130KD", "commonName": "Knightsbridge Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.500733, "lon": -0.162332}], "lat": 51.500733, "lon": -0.162332}, {"$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": "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}], "lat": 51.501669, "lon": -0.160508}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "940GZZLUKNG", "modes": ["tube", "bus"], "icsCode": "1000121", "stopType": "NaptanMetroStation", "stationNaptan": "940GZZLUKNG", "lines": [{"$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": "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": "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": "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": "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": "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": "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", "naptanIdReference": "490000121B", "stationAtcoCode": "490G00121B", "lineIdentifier": ["n155", "155", "n133", "133", "415", "333"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490000121S", "stationAtcoCode": "490G00121B", "lineIdentifier": ["n155", "155", "n133", "133", "415", "333"]}, {"$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": "bus", "lineIdentifier": ["n155", "155", "n133", "133", "415", "333"]}, {"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["northern"]}], "status": true, "id": "940GZZLUKNG", "commonName": "Kennington 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": "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": "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": "Help Points", "sourceSystemKey": "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": "1+2"}, {"$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": "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": "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"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_62"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_144"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_412"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_435"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_580"}], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490G00121B", "modes": ["bus"], "icsCode": "1000121", "stopType": "NaptanOnstreetBusCoachStopCluster", "stationNaptan": "490G00121B", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490G00121B", "commonName": "Kennington Station", "placeType": "StopPoint", "additionalProperties": [], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000121B", "indicator": "Stop KB", "stopLetter": "KB", "modes": ["bus"], "icsCode": "1000121", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00121B", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000121B", "commonName": "Kennington Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.487611, "lon": -0.106785}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000121S", "indicator": "Stop KA", "stopLetter": "KA", "modes": ["bus"], "icsCode": "1000121", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00121B", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000121S", "commonName": "Kennington Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.488749, "lon": -0.105427}], "lat": 51.487611, "lon": -0.106785}, {"$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": "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}], "lat": 51.488337, "lon": -0.105963}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "940GZZLUKOY", "modes": ["tube"], "icsCode": "1000170", "stopType": "NaptanMetroStation", "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": "940GZZLUKOY", "commonName": "Kensington (Olympia) 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": "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": "Help Points", "sourceSystemKey": "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": "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": "Kensington Olympia,Kensington Olympia Station,Olympia Way,LONDON,W14 0NE"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, 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": "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": "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": "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": "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": "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": "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": "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}], "lat": 51.497624, "lon": -0.210015}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "940GZZLUKPK", "modes": ["bus", "tube"], "icsCode": "1000127", "stopType": "NaptanMetroStation", "stationNaptan": "940GZZLUKPK", "lines": [{"$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": "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": "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": "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": "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": "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": "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", "naptanIdReference": "490000127KB", "stationAtcoCode": "490G00127KB", "lineIdentifier": ["32", "632", "n28", "328", "206", "31", "n31", "316"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490000127KA", "stationAtcoCode": "490G00127KB", "lineIdentifier": ["32", "632", "n28", "328", "206", "31", "n31", "316"]}, {"$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": "bus", "lineIdentifier": ["32", "632", "n28", "328", "206", "31", "n31", "316"]}, {"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["bakerloo"]}], "status": true, "id": "940GZZLUKPK", "commonName": "Kilburn 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": "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": "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": "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"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.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": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5262"}], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490G00127KB", "modes": ["bus"], "icsCode": "1000127", "stopType": "NaptanOnstreetBusCoachStopCluster", "stationNaptan": "490G00127KB", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490G00127KB", "commonName": "Kilburn Park Station", "placeType": "StopPoint", "additionalProperties": [], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000001", "indicator": "Stop", "modes": ["bus"], "icsCode": "1000127", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00127KB", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000001", "commonName": "Kilburn Park Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.53443, "lon": -0.193691}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000127KA", "indicator": "Stop KA", "stopLetter": "KA", "modes": ["bus"], "icsCode": "1000127", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00127KB", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000127KA", "commonName": "Kilburn Park Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.535502, "lon": -0.193274}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000127KB", "indicator": "Stop KB", "stopLetter": "KB", "modes": ["bus"], "icsCode": "1000127", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00127KB", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000127KB", "commonName": "Kilburn Park Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.53469, "lon": -0.193695}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000127N", "indicator": "Stop", "modes": ["bus"], "icsCode": "1000127", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00127KB", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000127N", "commonName": "Kilburn Park Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.53443, "lon": -0.193691}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000127RB", "indicator": "---", "modes": ["bus"], "icsCode": "1000127", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00127KB", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000127RB", "commonName": "Kilburn Park Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.53417, "lon": -0.193788}], "lat": 51.53469, "lon": -0.193695}, {"$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": "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}], "lat": 51.534979, "lon": -0.194232}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "940GZZLUKSH", "modes": ["tube"], "icsCode": "1000123", "stopType": "NaptanMetroStation", "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": "940GZZLUKSH", "commonName": "Kentish Town 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": "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": "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": "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": "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": "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": "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": "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"}], "children": [{"$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}], "lat": 51.550312, "lon": -0.140733}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "940GZZLUKSL", "modes": ["tube"], "icsCode": "1000122", "stopType": "NaptanMetroStation", "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": "940GZZLUKSL", "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": "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": "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": "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": "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": "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": "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": "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": "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}], "lat": 51.530539, "lon": -0.225016}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "940GZZLUKSX", "modes": ["tube"], "icsCode": "1000129", "stopType": "NaptanMetroStation", "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"}, {"$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": "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": "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": "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": ["victoria"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "940GZZLUKSX", "lineIdentifier": ["piccadilly"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "940GZZLUKSX", "lineIdentifier": ["hammersmith-city", "circle", "metropolitan"]}, {"$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": ["victoria", "piccadilly", "hammersmith-city", "circle", "northern", "metropolitan"]}], "status": true, "id": "940GZZLUKSX", "commonName": "King's Cross St. Pancras 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": "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": "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": "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": "Help Points", "sourceSystemKey": "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": "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": "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": "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)"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_4"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_14"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_70"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_89"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_431"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_439"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_593"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_793"}, {"$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": "BikePoints_798"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_804"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5237"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5896"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5708"}], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490G00129R", "modes": ["bus"], "icsCode": "1000129", "stopType": "NaptanOnstreetBusCoachStopCluster", "stationNaptan": "490G00129R", "hubNaptanCode": "HUBKGX", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490G00129R", "commonName": "King's Cross Station", "placeType": "StopPoint", "additionalProperties": [], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000129D", "indicator": "Stop D", "stopLetter": "D", "modes": ["bus"], "icsCode": "1000129", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00129R", "hubNaptanCode": "HUBKGX", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000129D", "commonName": "King's Cross Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.530398, "lon": -0.123076}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000129E", "indicator": "Stop E", "stopLetter": "E", "modes": ["bus"], "icsCode": "1000129", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00129R", "hubNaptanCode": "HUBKGX", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000129E", "commonName": "King's Cross Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.530497, "lon": -0.123072}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000129R", "indicator": "Stop R", "stopLetter": "R", "modes": ["bus"], "icsCode": "1000129", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00129R", "hubNaptanCode": "HUBKGX", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000129R", "commonName": "King's Cross Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.530466, "lon": -0.121689}], "lat": 51.530466, "lon": -0.121689}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "4900KNSXMCL0", "indicator": "Entrance 13", "stopLetter": "13", "modes": [], "icsCode": "1000129", "stopType": "NaptanRailEntrance", "stationNaptan": "940GZZLUKSX", "hubNaptanCode": "HUBKGX", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "4900KNSXMCL0", "commonName": "King's Cross Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.530913, "lon": -0.120358}, {"$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": "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}], "lat": 51.530663, "lon": -0.123194}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "940GZZLUKWG", "modes": ["tube"], "icsCode": "1000125", "stopType": "NaptanMetroStation", "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": "940GZZLUKWG", "commonName": "Kew Gardens 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": "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": "3+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": "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": "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": "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": "Boarding Ramps", "sourceSystemKey": "StaticObjects", "value": "yes District line 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": "yes (male, female)"}, {"$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"}], "children": [{"$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}], "lat": 51.477058, "lon": -0.285241}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "940GZZLULAD", "modes": ["tube", "bus"], "icsCode": "1000131", "stopType": "NaptanMetroStation", "stationNaptan": "940GZZLULAD", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "7", "name": "7", "uri": "/Line/7", "type": "Line", "crowding": {"$type": "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": "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": "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": "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": "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": "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": "452", "name": "452", "uri": "/Line/452", "type": "Line", "crowding": {"$type": "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": "490000131A", "stationAtcoCode": "490G00131A", "lineIdentifier": ["7", "70", "228", "23", "52", "n7", "452"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490000131B", "stationAtcoCode": "490G00131A", "lineIdentifier": ["7", "70", "228", "23", "52", "n7", "452"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "940GZZLULAD", "lineIdentifier": ["hammersmith-city", "circle"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "bus", "lineIdentifier": ["7", "70", "228", "23", "52", "n7", "452"]}, {"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["hammersmith-city", "circle"]}], "status": true, "id": "940GZZLULAD", "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": "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": "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": "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": "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": "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": "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, 1 in ticket halls, 4 elsewhere"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_643"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_650"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_663"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_742"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_807"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5828"}], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490G00131A", "modes": ["bus"], "icsCode": "1000131", "stopType": "NaptanOnstreetBusCoachStopCluster", "stationNaptan": "490G00131A", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490G00131A", "commonName": "Ladbroke Grove Station", "placeType": "StopPoint", "additionalProperties": [], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000131A", "indicator": "Stop A", "stopLetter": "A", "modes": ["bus"], "icsCode": "1000131", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00131A", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000131A", "commonName": "Ladbroke Grove Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.517271, "lon": -0.210066}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000131B", "indicator": "Stop B", "stopLetter": "B", "modes": ["bus"], "icsCode": "1000131", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00131A", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000131B", "commonName": "Ladbroke Grove Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.517312, "lon": -0.209776}], "lat": 51.517312, "lon": -0.209776}, {"$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": "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}], "lat": 51.517449, "lon": -0.210391}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "940GZZLULBN", "modes": ["bus", "tube"], "icsCode": "1000132", "stopType": "NaptanMetroStation", "stationNaptan": "940GZZLULBN", "lines": [{"$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": "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": "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": "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": "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": "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": "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": "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": "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": "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", "naptanIdReference": "490000132B", "stationAtcoCode": "490G00132G", "lineIdentifier": ["453", "n155", "12", "n53", "53", "148"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490000132C", "stationAtcoCode": "490G00132G", "lineIdentifier": ["453", "n155", "12", "n53", "53", "148"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "940GZZLULBN", "lineIdentifier": ["bakerloo"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490000132A", "stationAtcoCode": "490G00132G", "lineIdentifier": ["159", "59", "n109"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490000132G", "stationAtcoCode": "490G00132G", "lineIdentifier": ["159", "59", "n109"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "bus", "lineIdentifier": ["453", "n155", "159", "12", "n53", "53", "59", "n109", "148"]}, {"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["bakerloo"]}], "status": true, "id": "940GZZLULBN", "commonName": "Lambeth North 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": "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": "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": "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": "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": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_235"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_272"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_284"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_347"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_371"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_441"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_548"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_641"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_815"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5940"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5974"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5548"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5973"}], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490G00132G", "modes": ["bus"], "icsCode": "1000132", "stopType": "NaptanOnstreetBusCoachStopCluster", "stationNaptan": "490G00132G", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490G00132G", "commonName": "Lambeth North Station", "placeType": "StopPoint", "additionalProperties": [], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000132A", "indicator": "Stop A", "stopLetter": "A", "modes": ["bus"], "icsCode": "1000132", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00132G", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000132A", "commonName": "Lambeth North Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.498108, "lon": -0.111969}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000132B", "indicator": "Stop B", "stopLetter": "B", "modes": ["bus"], "icsCode": "1000132", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00132G", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000132B", "commonName": "Lambeth North Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.498555, "lon": -0.111821}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000132C", "indicator": "Stop C", "stopLetter": "C", "modes": ["bus"], "icsCode": "1000132", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00132G", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000132C", "commonName": "Lambeth North Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.498526, "lon": -0.111145}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000132G", "indicator": "Stop G", "stopLetter": "G", "modes": ["bus"], "icsCode": "1000132", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00132G", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000132G", "commonName": "Lambeth North Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.497932, "lon": -0.112192}], "lat": 51.498526, "lon": -0.111145}, {"$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": "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}], "lat": 51.498808, "lon": -0.112315}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "940GZZLULGN", "modes": ["bus", "tube"], "icsCode": "1000140", "stopType": "NaptanMetroStation", "stationNaptan": "940GZZLULGN", "lines": [{"$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"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "549", "name": "549", "uri": "/Line/549", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "20", "name": "20", "uri": "/Line/20", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "167", "name": "167", "uri": "/Line/167", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "677", "name": "677", "uri": "/Line/677", "type": "Line", "crowding": {"$type": "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"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "150042015007", "stationAtcoCode": "150G00000960", "lineIdentifier": ["397", "20", "167", "677"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "150042015006", "stationAtcoCode": "150G00000960", "lineIdentifier": ["397", "549", "20"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "1500IM358", "stationAtcoCode": "150G00000960", "lineIdentifier": ["549", "167"]}, {"$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": "bus", "lineIdentifier": ["397", "549", "20", "167", "677"]}, {"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["central"]}], "status": true, "id": "940GZZLULGN", "commonName": "Loughton 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": "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": "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": "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": "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": "Toilets", "sourceSystemKey": "StaticObjects", "value": "yes (male, female)"}, {"$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": "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": "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": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "CarParks_800482"}], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "150G00000960", "modes": ["bus"], "icsCode": "1000316", "stopType": "NaptanOnstreetBusCoachStopCluster", "stationNaptan": "150G00000960", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "150G00000960", "commonName": "Loughton Station", "placeType": "StopPoint", "additionalProperties": [], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "150042015006", "indicator": "Stop C", "stopLetter": "C", "modes": ["bus"], "icsCode": "1000316", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "150G00000960", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "150042015006", "commonName": "Loughton Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.642145, "lon": 0.054843}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "150042015007", "indicator": "Stop A", "stopLetter": "A", "modes": ["bus"], "icsCode": "1000316", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "150G00000960", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "150042015007", "commonName": "Loughton Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.642319, "lon": 0.054663}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "1500IM358", "indicator": "Stop B", "stopLetter": "B", "modes": ["bus"], "icsCode": "1000316", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "150G00000960", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "1500IM358", "commonName": "Loughton Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.641953, "lon": 0.055036}], "lat": 51.642319, "lon": 0.054663}, {"$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": "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}], "lat": 51.641443, "lon": 0.055476}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "940GZZLULGT", "modes": ["bus", "tube"], "icsCode": "1000133", "stopType": "NaptanMetroStation", "stationNaptan": "940GZZLULGT", "lines": [{"$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": "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": "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": "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", "naptanIdReference": "490000133Z", "stationAtcoCode": "490G00133B", "lineIdentifier": ["n207", "94", "148"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490000133B", "stationAtcoCode": "490G00133B", "lineIdentifier": ["n207", "94", "148"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490000133A", "stationAtcoCode": "490G00133B", "lineIdentifier": ["274"]}, {"$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": "bus", "lineIdentifier": ["n207", "274", "94", "148"]}, {"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["central"]}], "status": true, "id": "940GZZLULGT", "commonName": "Lancaster Gate 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": "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": "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": "Help Points", "sourceSystemKey": "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": "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": "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": "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": "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": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_153"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_397"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_524"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_752"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_4479"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5161"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5431"}], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490G00133B", "modes": ["bus"], "icsCode": "1000133", "stopType": "NaptanOnstreetBusCoachStopCluster", "stationNaptan": "490G00133B", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490G00133B", "commonName": "Lancaster Gate Station", "placeType": "StopPoint", "additionalProperties": [], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000133A", "indicator": "Stop LA", "stopLetter": "LA", "modes": ["bus"], "icsCode": "1000133", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00133B", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000133A", "commonName": "Lancaster Gate Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.512134, "lon": -0.176025}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000133B", "indicator": "Stop LC", "stopLetter": "LC", "modes": ["bus"], "icsCode": "1000133", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00133B", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000133B", "commonName": "Lancaster Gate Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.5116, "lon": -0.175225}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000133N", "indicator": "Stop LH", "stopLetter": "LH", "modes": ["bus"], "icsCode": "1000133", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00133B", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000133N", "commonName": "Lancaster Gate Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.512591, "lon": -0.175906}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000133Z", "indicator": "Stop LK", "stopLetter": "LK", "modes": ["bus"], "icsCode": "1000133", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00133B", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000133Z", "commonName": "Lancaster Gate Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.511798, "lon": -0.175261}], "lat": 51.512134, "lon": -0.176025}, {"$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": "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}], "lat": 51.511723, "lon": -0.175494}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "940GZZLULNB", "modes": ["tube"], "icsCode": "1000139", "stopType": "NaptanMetroStation", "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"}, {"$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": ["northern"]}, {"$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": ["northern", "jubilee"]}], "status": true, "id": "940GZZLULNB", "commonName": "London Bridge 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": "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": "Help Points", "sourceSystemKey": "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": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$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": "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": "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": "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": "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": "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)"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_10"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_194"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_276"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_732"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5471"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5578"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5502"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5948"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5876"}], "children": [{"$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": "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}], "lat": 51.505721, "lon": -0.088873}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "940GZZLULRD", "modes": ["tube", "bus"], "icsCode": "1000134", "stopType": "NaptanMetroStation", "stationNaptan": "940GZZLULRD", "lines": [{"$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": "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": "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", "naptanIdReference": "490000134A", "stationAtcoCode": "490G00134A", "lineIdentifier": ["295", "316"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490000134B", "stationAtcoCode": "490G00134A", "lineIdentifier": ["295", "316"]}, {"$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": "bus", "lineIdentifier": ["295", "316"]}, {"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["circle", "hammersmith-city"]}], "status": true, "id": "940GZZLULRD", "commonName": "Latimer Road Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_754"}, {"$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": "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": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_650"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_652"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_663"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_740"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_741"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.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": "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": "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": "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": "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"}], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490G00134A", "modes": ["bus"], "icsCode": "1000134", "stopType": "NaptanOnstreetBusCoachStopCluster", "stationNaptan": "490G00134A", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490G00134A", "commonName": "Latimer Road Station", "placeType": "StopPoint", "additionalProperties": [], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000134A", "indicator": "Stop A", "stopLetter": "A", "modes": ["bus"], "icsCode": "1000134", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00134A", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000134A", "commonName": "Latimer Road Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.513987, "lon": -0.217631}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000134B", "indicator": "Stop B", "stopLetter": "B", "modes": ["bus"], "icsCode": "1000134", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00134A", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000134B", "commonName": "Latimer Road Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.513047, "lon": -0.21787}], "lat": 51.513047, "lon": -0.21787}, {"$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": "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}], "lat": 51.513389, "lon": -0.217799}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "940GZZLULSQ", "modes": ["bus", "tube"], "icsCode": "1000135", "stopType": "NaptanMetroStation", "stationNaptan": "940GZZLULSQ", "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": "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": "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": "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": "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": "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"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490000135A", "stationAtcoCode": "490G00135B", "lineIdentifier": ["24", "n20", "176", "n279", "n29", "29", "n41", "n5"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490000135B", "stationAtcoCode": "490G00135B", "lineIdentifier": ["24", "n20", "176", "n279", "n29", "29", "n41", "n5"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "940GZZLULSQ", "lineIdentifier": ["northern"]}, {"$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": "bus", "lineIdentifier": ["24", "n20", "176", "n279", "n29", "29", "n41", "n5"]}, {"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["northern", "piccadilly"]}], "status": true, "id": "940GZZLULSQ", "commonName": "Leicester Square 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": "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": "Lifts", "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": "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": "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": "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": "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": "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": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_64"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_83"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_192"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_226"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_233"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_325"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_341"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_383"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_386"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_388"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5506"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5596"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5016"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5670"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5468"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5364"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5325"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5281"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5671"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5809"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5737"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_4978"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5875"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5855"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5090"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5481"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5853"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5395"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5867"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5017"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5854"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5856"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5758"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5572"}], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490G00135B", "modes": ["bus"], "icsCode": "1000135", "stopType": "NaptanOnstreetBusCoachStopCluster", "stationNaptan": "490G00135B", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490G00135B", "commonName": "Leicester Square Station", "placeType": "StopPoint", "additionalProperties": [], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000135A", "indicator": "Stop L", "stopLetter": "L", "modes": ["bus"], "icsCode": "1000135", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00135B", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000135A", "commonName": "Leicester Square Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.510548, "lon": -0.128474}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000135B", "indicator": "Stop J", "stopLetter": "J", "modes": ["bus"], "icsCode": "1000135", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00135B", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000135B", "commonName": "Leicester Square Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.511589, "lon": -0.128331}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000135S", "indicator": "Stop", "modes": ["bus"], "icsCode": "1000135", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00135B", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000135S", "commonName": "Leicester Square Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.510907, "lon": -0.128416}], "lat": 51.510548, "lon": -0.128474}, {"$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": "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}], "lat": 51.511386, "lon": -0.128426}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "940GZZLULVT", "modes": ["tube"], "icsCode": "1000138", "stopType": "NaptanMetroStation", "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"}, {"$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": ["hammersmith-city", "circle", "metropolitan"]}, {"$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": ["hammersmith-city", "circle", "metropolitan", "central"]}], "status": true, "id": "940GZZLULVT", "commonName": "Liverpool Street Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$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": "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_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_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"}, {"$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": "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)"}, {"$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_140"}, {"$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": "ServiceInfo", "key": "Night", "sourceSystemKey": "TransXchangeETL", "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": "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": "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": "Car park", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$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": "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": "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": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "5"}], "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": [{"$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": "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}], "lat": 51.517372, "lon": -0.083182}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "940GZZLULYN", "modes": ["bus", "tube"], "icsCode": "1000136", "stopType": "NaptanMetroStation", "stationNaptan": "940GZZLULYN", "lines": [{"$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": "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": "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": "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": "69", "name": "69", "uri": "/Line/69", "type": "Line", "crowding": {"$type": "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": "490000136A", "stationAtcoCode": "490G00136A", "lineIdentifier": ["158", "97", "58", "69"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490000136B", "stationAtcoCode": "490G00136A", "lineIdentifier": ["158", "97", "58", "69"]}, {"$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": "bus", "lineIdentifier": ["158", "97", "58", "69"]}, {"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["central"]}], "status": true, "id": "940GZZLULYN", "commonName": "Leyton 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": "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": "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": "Gates", "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": "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": "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": "0"}, {"$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": "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": "Bridge", "sourceSystemKey": "StaticObjects", "value": "no"}], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490G00136A", "modes": ["bus"], "icsCode": "1000136", "stopType": "NaptanOnstreetBusCoachStopCluster", "stationNaptan": "490G00136A", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490G00136A", "commonName": "Leyton Station", "placeType": "StopPoint", "additionalProperties": [], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000136A", "indicator": "Stop A", "stopLetter": "A", "modes": ["bus"], "icsCode": "1000136", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00136A", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000136A", "commonName": "Leyton Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.556075, "lon": -0.005545}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000136B", "indicator": "Stop B", "stopLetter": "B", "modes": ["bus"], "icsCode": "1000136", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00136A", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000136B", "commonName": "Leyton Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.55714, "lon": -0.006307}], "lat": 51.556075, "lon": -0.005545}, {"$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": "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}], "lat": 51.556589, "lon": -0.005523}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "940GZZLULYS", "modes": ["bus", "tube"], "icsCode": "1000137", "stopType": "NaptanMetroStation", "stationNaptan": "940GZZLULYS", "lines": [{"$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": "w13", "name": "W13", "uri": "/Line/w13", "type": "Line", "crowding": {"$type": "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": "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": "w14", "name": "W14", "uri": "/Line/w14", "type": "Line", "crowding": {"$type": "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": "145", "name": "145", "uri": "/Line/145", "type": "Line", "crowding": {"$type": "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": "490000137T", "stationAtcoCode": "490G00137T", "lineIdentifier": ["66", "w13", "145"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490000137X", "stationAtcoCode": "490G00137T", "lineIdentifier": ["66", "w13", "145"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490000137W", "stationAtcoCode": "490G00137T", "lineIdentifier": ["n8", "w14", "257"]}, {"$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": "bus", "lineIdentifier": ["66", "w13", "n8", "w14", "257", "145"]}, {"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["central"]}], "status": true, "id": "940GZZLULYS", "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": "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": "Gates", "sourceSystemKey": "StaticObjects", "value": "5"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, 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": "3+4"}, {"$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": "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": "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": "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": "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": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5368"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5439"}, {"$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": "490G00137T", "modes": ["bus"], "icsCode": "1000137", "stopType": "NaptanOnstreetBusCoachStopCluster", "stationNaptan": "490G00137T", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490G00137T", "commonName": "Leytonstone Station", "placeType": "StopPoint", "additionalProperties": [], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000137T", "indicator": "Stop T", "stopLetter": "T", "modes": ["bus"], "icsCode": "1000137", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00137T", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000137T", "commonName": "Leytonstone Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.568749, "lon": 0.009049}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000137V", "indicator": "Stop V", "stopLetter": "V", "modes": ["bus"], "icsCode": "1000137", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00137T", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000137V", "commonName": "Leytonstone Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.56891, "lon": 0.009085}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000137W", "indicator": "Stop W", "stopLetter": "W", "modes": ["bus"], "icsCode": "1000137", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00137T", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000137W", "commonName": "Leytonstone Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.569068, "lon": 0.009294}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000137X", "indicator": "Stop X", "stopLetter": "X", "modes": ["bus"], "icsCode": "1000137", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00137T", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000137X", "commonName": "Leytonstone Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.569238, "lon": 0.009388}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490009139RB", "indicator": "Stop", "modes": ["bus"], "icsCode": "1000137", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00137T", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490009139RB", "commonName": "Leytonstone Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.569285, "lon": 0.009737}], "lat": 51.569068, "lon": 0.009294}, {"$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": "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}], "lat": 51.568324, "lon": 0.008194}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "940GZZLUMBA", "modes": ["tube", "bus"], "icsCode": "1000144", "stopType": "NaptanMetroStation", "stationNaptan": "940GZZLUMBA", "lines": [{"$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": "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": "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": "7", "name": "7", "uri": "/Line/7", "type": "Line", "crowding": {"$type": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "n98", "name": "N98", "uri": "/Line/n98", "type": "Line", "crowding": {"$type": "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": "490000144W", "stationAtcoCode": "490G00144R", "lineIdentifier": ["n2", "390", "148", "414", "23", "n137", "2", "36", "74", "n74", "n32", "137", "6", "13"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490000144K", "stationAtcoCode": "490G00144L", "lineIdentifier": ["390", "7", "98", "n137", "n207", "n7", "n98"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490000144O", "stationAtcoCode": "490G00144L", "lineIdentifier": ["7", "98", "n7", "n98"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490000144P", "stationAtcoCode": "490G00144L", "lineIdentifier": ["30", "189", "94", "274", "n207", "113"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490000144L", "stationAtcoCode": "490G00144L", "lineIdentifier": ["189", "94", "274", "13", "113"]}, {"$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": "bus", "lineIdentifier": ["n2", "390", "148", "7", "98", "414", "30", "23", "189", "n137", "2", "36", "94", "74", "n74", "274", "n32", "137", "6", "n207", "n7", "13", "113", "n98"]}, {"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["central"]}], "status": true, "id": "940GZZLUMBA", "commonName": "Marble Arch 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": "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": "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": "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": "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": "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": "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": "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": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_99"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_111"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_138"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_169"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_180"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_389"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_403"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_514"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5139"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_4478"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_4977"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_4802"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_4583"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5617"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5672"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5820"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5104"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5203"}], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490G00144L", "modes": ["bus"], "icsCode": "1000144", "stopType": "NaptanOnstreetBusCoachStopCluster", "stationNaptan": "490G00144L", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490G00144L", "commonName": "Marble Arch Station", "placeType": "StopPoint", "additionalProperties": [], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000144K", "indicator": "Stop K", "stopLetter": "K", "modes": ["bus"], "icsCode": "1000144", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00144L", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000144K", "commonName": "Marble Arch Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.513582, "lon": -0.157664}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000144L", "indicator": "Stop L", "stopLetter": "L", "modes": ["bus"], "icsCode": "1000144", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00144L", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000144L", "commonName": "Marble Arch Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.513685, "lon": -0.156752}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000144O", "indicator": "Stop O", "stopLetter": "O", "modes": ["bus"], "icsCode": "1000144", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00144L", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000144O", "commonName": "Marble Arch Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.513561, "lon": -0.156858}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000144P", "indicator": "Stop P", "stopLetter": "P", "modes": ["bus"], "icsCode": "1000144", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00144L", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000144P", "commonName": "Marble Arch Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.513456, "lon": -0.157612}], "lat": 51.513582, "lon": -0.157664}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490G00144R", "modes": ["bus"], "icsCode": "1000144", "stopType": "NaptanOnstreetBusCoachStopCluster", "stationNaptan": "490G00144R", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490G00144R", "commonName": "Marble Arch Station", "placeType": "StopPoint", "additionalProperties": [], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000144W", "indicator": "Stop W", "stopLetter": "W", "modes": ["bus"], "icsCode": "1000144", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00144R", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000144W", "commonName": "Marble Arch", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.511606, "lon": -0.158349}], "lat": 51.511606, "lon": -0.158349}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490G15205S1", "modes": ["bus"], "icsCode": "1000144", "stopType": "NaptanOnstreetBusCoachStopCluster", "stationNaptan": "490G15205S1", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490G15205S1", "commonName": "Marble Arch Station", "placeType": "StopPoint", "additionalProperties": [], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "49000144CSZ", "indicator": "->S", "stopLetter": "->S", "modes": ["bus"], "icsCode": "1000144", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G15205S1", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "49000144CSZ", "commonName": "Marble Arch Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.511825, "lon": -0.157418}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490009633X", "indicator": "Stop 14", "stopLetter": "14", "modes": ["bus"], "icsCode": "1000144", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G15205S1", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490009633X", "commonName": "Marble Arch Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.511888, "lon": -0.15854}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490009633Z", "indicator": "Stop Z", "stopLetter": "Z", "modes": ["bus"], "icsCode": "1000144", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G15205S1", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490009633Z", "commonName": "Marble Arch Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.512149, "lon": -0.158587}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490015205S", "indicator": "Stop RH", "stopLetter": "RH", "modes": ["bus"], "icsCode": "1000144", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G15205S1", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490015205S", "commonName": "Marble Arch Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.51188, "lon": -0.157517}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490015205S1", "indicator": "->S", "stopLetter": "->S", "modes": ["bus"], "icsCode": "1000144", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G15205S1", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490015205S1", "commonName": "Marble Arch Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.511735, "lon": -0.157407}], "lat": 51.511886, "lon": -0.158439}, {"$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": "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}], "lat": 51.513424, "lon": -0.158953}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "940GZZLUMDN", "modes": ["bus", "tube"], "icsCode": "1000151", "stopType": "NaptanMetroStation", "stationNaptan": "940GZZLUMDN", "lines": [{"$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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "n155", "name": "N155", "uri": "/Line/n155", "type": "Line", "crowding": {"$type": "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": "490000151K", "stationAtcoCode": "490G00151H", "lineIdentifier": ["413", "154", "163", "293"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490000151C", "stationAtcoCode": "490G00151H", "lineIdentifier": ["154", "201", "157", "118", "470", "n133", "k5", "n155"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490000151B", "stationAtcoCode": "490G00151H", "lineIdentifier": ["164", "80"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490000151A", "stationAtcoCode": "490G00151H", "lineIdentifier": ["93", "470"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "940GZZLUMDN", "lineIdentifier": ["northern"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490000151L", "stationAtcoCode": "490G00151H", "lineIdentifier": ["157", "118", "n133", "n155"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "bus", "lineIdentifier": ["413", "154", "163", "164", "93", "201", "157", "118", "80", "293", "470", "n133", "k5", "n155"]}, {"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["northern"]}], "status": true, "id": "940GZZLUMDN", "commonName": "Morden 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": "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": "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": "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": "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": "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": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_4805"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5721"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "CarParks_800503"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "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": "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": "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": "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": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490G00151H", "modes": ["bus"], "icsCode": "1000151", "stopType": "NaptanOnstreetBusCoachStopCluster", "stationNaptan": "490G00151H", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490G00151H", "commonName": "Morden Station", "placeType": "StopPoint", "additionalProperties": [], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000151A", "indicator": "Stop A", "stopLetter": "A", "modes": ["bus"], "icsCode": "1000151", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00151H", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000151A", "commonName": "Morden Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.402077, "lon": -0.19477}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000151B", "indicator": "Stop B", "stopLetter": "B", "modes": ["bus"], "icsCode": "1000151", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00151H", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000151B", "commonName": "Morden Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.402587, "lon": -0.194074}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000151C", "indicator": "Stop C", "stopLetter": "C", "modes": ["bus"], "icsCode": "1000151", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00151H", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000151C", "commonName": "Morden Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.402456, "lon": -0.194324}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000151K", "indicator": "Stop M", "stopLetter": "M", "modes": ["bus"], "icsCode": "1000151", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00151H", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000151K", "commonName": "Morden Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.401891, "lon": -0.195568}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000151L", "indicator": "Stop N", "stopLetter": "N", "modes": ["bus"], "icsCode": "1000151", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00151H", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000151L", "commonName": "Morden Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.401998, "lon": -0.194917}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000151W", "indicator": "Stop ->W", "stopLetter": "->W", "modes": ["bus"], "icsCode": "1000151", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00151H", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000151W", "commonName": "Morden Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.401686, "lon": -0.195677}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000151Z", "indicator": "Stop", "modes": ["bus"], "icsCode": "1000151", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00151H", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000151Z", "commonName": "Morden Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.401686, "lon": -0.195677}], "lat": 51.401686, "lon": -0.195677}, {"$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": "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}], "lat": 51.402142, "lon": -0.194839}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "940GZZLUMED", "modes": ["bus", "tube"], "icsCode": "1000146", "stopType": "NaptanMetroStation", "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"}, {"$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": "d7", "name": "D7", "uri": "/Line/d7", "type": "Line", "crowding": {"$type": "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": "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": "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": "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": "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": "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"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "323", "name": "323", "uri": "/Line/323", "type": "Line", "crowding": {"$type": "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"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "940GZZLUMED", "lineIdentifier": ["central"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490000146A", "stationAtcoCode": "490G00146B", "lineIdentifier": ["d6", "d7", "n277", "277", "323"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490000146B", "stationAtcoCode": "490G00146B", "lineIdentifier": ["d6", "d7", "n277", "277", "323"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490000146C", "stationAtcoCode": "490G00146C", "lineIdentifier": ["n25", "205", "25", "n205"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490000146D", "stationAtcoCode": "490G00146C", "lineIdentifier": ["205", "425", "25", "n205"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490000146W", "stationAtcoCode": "490G00146C", "lineIdentifier": ["425"]}, {"$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": ["central", "hammersmith-city", "district"]}, {"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "bus", "lineIdentifier": ["d6", "d7", "n25", "n277", "205", "277", "425", "25", "323", "n205"]}], "status": true, "id": "940GZZLUMED", "commonName": "Mile End 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": "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": "subway to street."}, {"$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": "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": "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": "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": "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": "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": "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": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "7"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "TaxiRankOutsideStation", "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": "BlueBadgeCarParkSpaces", "sourceSystemKey": "LRAD", "value": "0"}, {"$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": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_467"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_492"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_497"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_518"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5675"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_522"}], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490G00146B", "modes": ["bus"], "icsCode": "1000146", "stopType": "NaptanOnstreetBusCoachStopCluster", "stationNaptan": "490G00146B", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490G00146B", "commonName": "Mile End Station", "placeType": "StopPoint", "additionalProperties": [], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000146A", "indicator": "Stop A", "stopLetter": "A", "modes": ["bus"], "icsCode": "1000146", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00146B", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000146A", "commonName": "Mile End Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.52427, "lon": -0.034398}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000146B", "indicator": "Stop B", "stopLetter": "B", "modes": ["bus"], "icsCode": "1000146", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00146B", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000146B", "commonName": "Mile End Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.523751, "lon": -0.034535}], "lat": 51.52427, "lon": -0.034398}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490G00146C", "modes": ["bus"], "icsCode": "1000146", "stopType": "NaptanOnstreetBusCoachStopCluster", "stationNaptan": "490G00146C", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490G00146C", "commonName": "Mile End Station", "placeType": "StopPoint", "additionalProperties": [], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000146C", "indicator": "Stop C", "stopLetter": "C", "modes": ["bus"], "icsCode": "1000146", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00146C", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000146C", "commonName": "Mile End Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.525364, "lon": -0.033125}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000146D", "indicator": "Stop D", "stopLetter": "D", "modes": ["bus"], "icsCode": "1000146", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00146C", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000146D", "commonName": "Mile End Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.525368, "lon": -0.033918}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000146W", "indicator": "Stop M", "stopLetter": "M", "modes": ["bus"], "icsCode": "1000146", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00146C", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000146W", "commonName": "Mile End Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.525532, "lon": -0.032426}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490015151J", "indicator": "Stand J", "stopLetter": "J", "modes": ["bus"], "icsCode": "1000146", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00146C", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490015151J", "commonName": "Mile End Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.5257, "lon": -0.035518}], "lat": 51.525368, "lon": -0.033918}, {"$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": "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}], "lat": 51.525122, "lon": -0.03364}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "940GZZLUMGT", "modes": ["tube"], "icsCode": "1000149", "stopType": "NaptanMetroStation", "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": "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": "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"]}, {"$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": ["hammersmith-city", "circle", "northern", "metropolitan"]}], "status": true, "id": "940GZZLUMGT", "commonName": "Moorgate 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": "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": "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": "Payphones", "sourceSystemKey": "StaticObjects", "value": "4"}, {"$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": "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": "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": "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": "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": "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_120"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_127"}, {"$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_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_275"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_331"}, {"$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": "BikePoints_838"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5907"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5929"}, {"$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_5897"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5477"}, {"$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_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_5923"}, {"$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": "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}], "lat": 51.518176, "lon": -0.088322}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "940GZZLUMHL", "modes": ["bus", "tube"], "icsCode": "1000147", "stopType": "NaptanMetroStation", "stationNaptan": "940GZZLUMHL", "lines": [{"$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"}, {"$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"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490000147A", "stationAtcoCode": "490G00147E", "lineIdentifier": ["240", "382", "221"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490000147B", "stationAtcoCode": "490G00147E", "lineIdentifier": ["240", "382", "221"]}, {"$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": "bus", "lineIdentifier": ["240", "382", "221"]}, {"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["northern"]}], "status": true, "id": "940GZZLUMHL", "commonName": "Mill Hill 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": "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": "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": "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": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$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": "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": "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": "Help 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": "CarParks_800483"}], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490G00147E", "modes": ["bus"], "icsCode": "1000147", "stopType": "NaptanOnstreetBusCoachStopCluster", "stationNaptan": "490G00147E", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490G00147E", "commonName": "Mill Hill East Station", "placeType": "StopPoint", "additionalProperties": [], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000147A", "indicator": "Stop A", "stopLetter": "A", "modes": ["bus"], "icsCode": "1000147", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00147E", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000147A", "commonName": "Mill Hill East Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.608554, "lon": -0.210161}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000147B", "indicator": "Stop B", "stopLetter": "B", "modes": ["bus"], "icsCode": "1000147", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00147E", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000147B", "commonName": "Mill Hill East Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.608501, "lon": -0.209614}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000147E", "indicator": "Stop", "modes": ["bus"], "icsCode": "1000147", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00147E", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000147E", "commonName": "Mill Hill East Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.608653, "lon": -0.210142}], "lat": 51.608501, "lon": -0.209614}, {"$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": "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}], "lat": 51.608229, "lon": -0.209986}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "940GZZLUMMT", "modes": ["tube", "bus"], "icsCode": "1000148", "stopType": "NaptanMetroStation", "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"}, {"$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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "21", "name": "21", "uri": "/Line/21", "type": "Line", "crowding": {"$type": "Tfl.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"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490009267E", "stationAtcoCode": "490G09267E", "lineIdentifier": ["35", "n199", "133", "n21", "43", "n133", "141", "149", "388", "17", "21"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490009267D", "stationAtcoCode": "490G09267E", "lineIdentifier": ["35", "n199", "133", "n21", "43", "n133", "344", "141", "149", "388", "17", "21"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490000148W", "stationAtcoCode": "490G00148K", "lineIdentifier": ["15", "n15"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490000148K", "stationAtcoCode": "490G00148K", "lineIdentifier": ["15", "n15"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["circle", "district"]}, {"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "bus", "lineIdentifier": ["35", "n199", "133", "n21", "43", "n133", "344", "141", "15", "149", "388", "17", "n15", "21"]}], "status": true, "id": "940GZZLUMMT", "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": "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": "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": "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": "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": "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": "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": "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": "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": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_101"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_199"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_276"}, {"$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_579"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_587"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_732"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5905"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5901"}, {"$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_5916"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5919"}], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490G00148C", "modes": ["bus"], "icsCode": "1000148", "stopType": "NaptanOnstreetBusCoachStopCluster", "stationNaptan": "940GZZLUMMT", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490G00148C", "commonName": "Monument Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.5107, "lon": -0.085969}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490G00148K", "modes": ["bus"], "icsCode": "1000148", "stopType": "NaptanOnstreetBusCoachStopCluster", "stationNaptan": "490G00148K", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490G00148K", "commonName": "Monument Station", "placeType": "StopPoint", "additionalProperties": [], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000148K", "indicator": "Stop H", "stopLetter": "H", "modes": ["bus"], "icsCode": "1000148", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00148K", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000148K", "commonName": "Monument Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.510753, "lon": -0.084886}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000148W", "indicator": "Stop J", "stopLetter": "J", "modes": ["bus"], "icsCode": "1000148", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00148K", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000148W", "commonName": "Monument Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.510649, "lon": -0.085107}], "lat": 51.510753, "lon": -0.084886}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490G00148M", "modes": ["bus"], "icsCode": "1000148", "stopType": "NaptanOnstreetBusCoachStopCluster", "stationNaptan": "940GZZLUMMT", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490G00148M", "commonName": "Monument Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.5107, "lon": -0.085969}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490G09267E", "modes": ["bus"], "icsCode": "1000148", "stopType": "NaptanOnstreetBusCoachStopCluster", "stationNaptan": "490G09267E", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490G09267E", "commonName": "Monument Station", "placeType": "StopPoint", "additionalProperties": [], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490009267D", "indicator": "Stop Q", "stopLetter": "Q", "modes": ["bus"], "icsCode": "1000148", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G09267E", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490009267D", "commonName": "Monument Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.509464, "lon": -0.087476}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490009267E", "indicator": "Stop P", "stopLetter": "P", "modes": ["bus"], "icsCode": "1000148", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G09267E", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490009267E", "commonName": "Monument Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.509502, "lon": -0.087028}], "lat": 51.509502, "lon": -0.087028}, {"$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": "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}], "lat": 51.5107, "lon": -0.085969}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "940GZZLUMPK", "modes": ["tube"], "icsCode": "1000150", "stopType": "NaptanMetroStation", "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": "940GZZLUMPK", "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": "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": "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": "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": "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": "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": "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": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "CarParks_800451"}], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "210G9438", "modes": [], "icsCode": "1000310", "stopType": "NaptanOnstreetBusCoachStopPair", "stationNaptan": "210G9438", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "210G9438", "commonName": "Moor Park Station", "placeType": "StopPoint", "additionalProperties": [], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "210021803521", "indicator": "o/s", "modes": [], "icsCode": "1000310", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "210G9438", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "210021803521", "commonName": "Moor Park Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.629539, "lon": -0.433938}], "lat": 51.629539, "lon": -0.433938}, {"$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": "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}], "lat": 51.629845, "lon": -0.432454}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "940GZZLUMRH", "modes": ["bus", "tube"], "icsCode": "1000142", "stopType": "NaptanMetroStation", "stationNaptan": "940GZZLUMRH", "lines": [{"$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": "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": "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": "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": "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": "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": "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": "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": "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", "naptanIdReference": "490000142G", "stationAtcoCode": "490G00142G", "lineIdentifier": ["279"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490000142F", "stationAtcoCode": "490G00142G", "lineIdentifier": ["279", "n279", "259"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490015501K", "stationAtcoCode": "490G00142J", "lineIdentifier": ["141", "341"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490000142C", "stationAtcoCode": "490G00142A", "lineIdentifier": ["141", "341"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490000142B", "stationAtcoCode": "490G00142A", "lineIdentifier": ["29", "n29"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "940GZZLUMRH", "lineIdentifier": ["piccadilly"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490000142H", "stationAtcoCode": "490G00142G", "lineIdentifier": ["n279", "n253", "259", "254", "253"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490000142D", "stationAtcoCode": "490G00142G", "lineIdentifier": ["n253", "254", "253"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "bus", "lineIdentifier": ["279", "141", "29", "n29", "341", "n279", "n253", "259", "254", "253"]}, {"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["piccadilly"]}], "status": true, "id": "940GZZLUMRH", "commonName": "Manor 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": "Car park", "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": "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": "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": "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": "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": "ServiceInfo", "key": "Night", "sourceSystemKey": "TransXchangeETL", "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": "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": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5608"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490G00142A", "modes": ["bus"], "icsCode": "1000142", "stopType": "NaptanOnstreetBusCoachStopCluster", "stationNaptan": "490G00142A", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490G00142A", "commonName": "Manor House Station", "placeType": "StopPoint", "additionalProperties": [], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000142B", "indicator": "Stop B", "stopLetter": "B", "modes": ["bus"], "icsCode": "1000142", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00142A", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000142B", "commonName": "Manor House Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.572159, "lon": -0.096795}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000142C", "indicator": "Stop C", "stopLetter": "C", "modes": ["bus"], "icsCode": "1000142", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00142A", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000142C", "commonName": "Manor House Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.571341, "lon": -0.096237}], "lat": 51.571341, "lon": -0.096237}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490G00142G", "modes": ["bus"], "icsCode": "1000142", "stopType": "NaptanOnstreetBusCoachStopCluster", "stationNaptan": "490G00142G", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490G00142G", "commonName": "Manor House Station", "placeType": "StopPoint", "additionalProperties": [], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000142D", "indicator": "Stop D", "stopLetter": "D", "modes": ["bus"], "icsCode": "1000142", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00142G", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000142D", "commonName": "Manor House Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.571399, "lon": -0.094287}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000142F", "indicator": "Stop F", "stopLetter": "F", "modes": ["bus"], "icsCode": "1000142", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00142G", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000142F", "commonName": "Manor House Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.571503, "lon": -0.09408}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000142G", "indicator": "Stop AP", "stopLetter": "AP", "modes": ["bus"], "icsCode": "1000142", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00142G", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000142G", "commonName": "Manor House Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.571339, "lon": -0.093943}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000142H", "indicator": "Stop H", "stopLetter": "H", "modes": ["bus"], "icsCode": "1000142", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00142G", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000142H", "commonName": "Manor House Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.571244, "lon": -0.094192}], "lat": 51.571244, "lon": -0.094192}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490G00142J", "modes": ["bus"], "icsCode": "1000142", "stopType": "NaptanOnstreetBusCoachStopCluster", "stationNaptan": "490G00142J", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490G00142J", "commonName": "Manor House Station", "placeType": "StopPoint", "additionalProperties": [], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490015501K", "indicator": "Stop K", "stopLetter": "K", "modes": ["bus"], "icsCode": "1000142", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00142J", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490015501K", "commonName": "Manor House Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.570298, "lon": -0.095747}], "lat": 51.570298, "lon": -0.095747}, {"$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": "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}], "lat": 51.570738, "lon": -0.096118}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "940GZZLUMSH", "modes": ["bus", "tube"], "icsCode": "1000143", "stopType": "NaptanMetroStation", "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"}, {"$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": "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": "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": "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": "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": "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": "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": "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": "n15", "name": "N15", "uri": "/Line/n15", "type": "Line", "crowding": {"$type": "Tfl.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"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490000143E", "stationAtcoCode": "490G00143E", "lineIdentifier": ["n21", "133", "n199", "17", "n26", "15", "n550", "26", "n15"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["district", "circle"]}, {"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "bus", "lineIdentifier": ["n21", "133", "n199", "17", "n26", "15", "n550", "26", "n15"]}], "status": true, "id": "940GZZLUMSH", "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": "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": "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": "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": "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": "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"}, {"$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": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_48"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_71"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_101"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_120"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_136"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_427"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_579"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5926"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5907"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5897"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5899"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5918"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5922"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5921"}], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490G00143E", "modes": ["bus"], "icsCode": "1000143", "stopType": "NaptanOnstreetBusCoachStopCluster", "stationNaptan": "490G00143E", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490G00143E", "commonName": "Mansion House Station", "placeType": "StopPoint", "additionalProperties": [], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000143E", "indicator": "Stop ME", "stopLetter": "ME", "modes": ["bus"], "icsCode": "1000143", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00143E", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000143E", "commonName": "Mansion House Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.512669, "lon": -0.09488}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000143E1", "indicator": "Stop", "modes": ["bus"], "icsCode": "1000143", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00143E", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000143E1", "commonName": "Mansion House Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.512233, "lon": -0.093471}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000143W", "indicator": "Stop MS", "stopLetter": "MS", "modes": ["bus"], "icsCode": "1000143", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00143E", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000143W", "commonName": "Mansion House Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.512136, "lon": -0.094715}], "lat": 51.512233, "lon": -0.093471}, {"$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": "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}], "lat": 51.512117, "lon": -0.094009}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "940GZZLUMTC", "modes": ["bus", "tube"], "icsCode": "1000152", "stopType": "NaptanMetroStation", "stationNaptan": "940GZZLUMTC", "lines": [{"$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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "n27", "name": "N27", "uri": "/Line/n27", "type": "Line", "crowding": {"$type": "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": "490000152C", "stationAtcoCode": "490G00152G", "lineIdentifier": ["n279", "n29", "134", "29", "24"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490000152A", "stationAtcoCode": "490G00152G", "lineIdentifier": ["n279", "27", "n29", "134", "29", "n5", "n20", "24", "n27"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490000152D", "stationAtcoCode": "490G00152G", "lineIdentifier": ["27", "n27"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490000152F", "stationAtcoCode": "490G00152G", "lineIdentifier": ["n253", "1", "253"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490000152G", "stationAtcoCode": "490G00152G", "lineIdentifier": ["n253", "1", "n5", "n20", "253"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490000152K", "stationAtcoCode": "490G00152K", "lineIdentifier": ["214"]}, {"$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": "bus", "lineIdentifier": ["n279", "27", "n253", "1", "n29", "134", "29", "n5", "n20", "24", "214", "253", "n27"]}, {"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["northern"]}], "status": true, "id": "940GZZLUMTC", "commonName": "Mornington Crescent 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": "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": "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": "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": "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": "Mornington Crescent Station,London Underground Ltd.,Eversholt St,London,NW1 2JA"}, {"$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"}, {"$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": "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": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_90"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_131"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_362"}, {"$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": "TaxiRank_5489"}], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490G00152G", "modes": ["bus"], "icsCode": "1000152", "stopType": "NaptanOnstreetBusCoachStopCluster", "stationNaptan": "490G00152G", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490G00152G", "commonName": "Mornington Crescent Station", "placeType": "StopPoint", "additionalProperties": [], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000152A", "indicator": "Stop A", "stopLetter": "A", "modes": ["bus"], "icsCode": "1000152", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00152G", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000152A", "commonName": "Mornington Crescent Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.534029, "lon": -0.13932}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000152C", "indicator": "Stop C", "stopLetter": "C", "modes": ["bus"], "icsCode": "1000152", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00152G", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000152C", "commonName": "Mornington Crescent Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.533443, "lon": -0.138623}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000152D", "indicator": "Stop D", "stopLetter": "D", "modes": ["bus"], "icsCode": "1000152", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00152G", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000152D", "commonName": "Mornington Crescent Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.534116, "lon": -0.139086}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000152F", "indicator": "Stop F", "stopLetter": "F", "modes": ["bus"], "icsCode": "1000152", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00152G", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000152F", "commonName": "Mornington Cres Stn / Camden Tn Library", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.534158, "lon": -0.138363}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000152G", "indicator": "Stop G", "stopLetter": "G", "modes": ["bus"], "icsCode": "1000152", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00152G", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000152G", "commonName": "Mornington Cres Stn / Camden Tn Library", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.534136, "lon": -0.138105}], "lat": 51.533443, "lon": -0.138623}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490G00152K", "modes": ["bus"], "icsCode": "1000152", "stopType": "NaptanOnstreetBusCoachStopCluster", "stationNaptan": "490G00152K", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490G00152K", "commonName": "Mornington Crescent Station", "placeType": "StopPoint", "additionalProperties": [], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000152K", "indicator": "Stop K", "stopLetter": "K", "modes": ["bus"], "icsCode": "1000152", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00152K", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000152K", "commonName": "Mornington Crescent Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.534801, "lon": -0.136967}], "lat": 51.534801, "lon": -0.136967}, {"$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": "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}], "lat": 51.534679, "lon": -0.138789}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "940GZZLUMVL", "modes": ["tube"], "icsCode": "1000141", "stopType": "NaptanMetroStation", "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": "940GZZLUMVL", "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": "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": "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": "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": "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": "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": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_8"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5426"}], "children": [{"$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": "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}], "lat": 51.529777, "lon": -0.185758}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "940GZZLUMYB", "modes": ["tube"], "icsCode": "1000145", "stopType": "NaptanMetroStation", "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": "940GZZLUMYB", "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": "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": "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": "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."}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_43"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_45"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_114"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_182"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_201"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_208"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_396"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_605"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_759"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5742"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_4404"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5823"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5894"}], "children": [{"$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}], "lat": 51.522322, "lon": -0.163207}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "940GZZLUNAN", "modes": ["bus", "tube"], "icsCode": "1000157", "stopType": "NaptanMetroStation", "stationNaptan": "940GZZLUNAN", "lines": [{"$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": "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": "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": "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": "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": "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", "naptanIdReference": "490000157ZZ", "stationAtcoCode": "490G00157V", "lineIdentifier": ["218"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490000157V", "stationAtcoCode": "490G00157V", "lineIdentifier": ["440", "n266", "487", "266", "260"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490000157W", "stationAtcoCode": "490G00157V", "lineIdentifier": ["440"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490000157B", "stationAtcoCode": "490G00157B", "lineIdentifier": ["n266", "266"]}, {"$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": "bus", "lineIdentifier": ["218", "440", "n266", "487", "266", "260"]}, {"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["central"]}], "status": true, "id": "940GZZLUNAN", "commonName": "North Acton 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": "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"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.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": "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": "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": "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": "Help Points", "sourceSystemKey": "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": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "2+3"}], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490G00157B", "modes": ["bus"], "icsCode": "1000157", "stopType": "NaptanOnstreetBusCoachStopCluster", "stationNaptan": "490G00157B", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490G00157B", "commonName": "North Acton Station", "placeType": "StopPoint", "additionalProperties": [], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000157B", "indicator": "Stop B", "stopLetter": "B", "modes": ["bus"], "icsCode": "1000157", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00157B", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000157B", "commonName": "North Acton Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.523019, "lon": -0.257958}], "lat": 51.523019, "lon": -0.257958}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490G00157V", "modes": ["bus"], "icsCode": "1000157", "stopType": "NaptanOnstreetBusCoachStopCluster", "stationNaptan": "490G00157V", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490G00157V", "commonName": "North Acton Station", "placeType": "StopPoint", "additionalProperties": [], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000157RB", "indicator": "->E", "stopLetter": "->E", "modes": ["bus"], "icsCode": "1000157", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00157V", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000157RB", "commonName": "North Acton Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.522816, "lon": -0.25945}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000157V", "indicator": "Stop Z", "stopLetter": "Z", "modes": ["bus"], "icsCode": "1000157", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00157V", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000157V", "commonName": "North Acton Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.522868, "lon": -0.259261}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000157W", "indicator": "Stop X", "stopLetter": "X", "modes": ["bus"], "icsCode": "1000157", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00157V", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000157W", "commonName": "North Acton Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.522875, "lon": -0.259751}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000157ZT", "indicator": "->E", "stopLetter": "->E", "modes": ["bus"], "icsCode": "1000157", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00157V", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000157ZT", "commonName": "North Acton Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.522844, "lon": -0.259492}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000157ZZ", "indicator": "->E", "stopLetter": "->E", "modes": ["bus"], "icsCode": "1000157", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00157V", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000157ZZ", "commonName": "North Acton Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.522988, "lon": -0.259473}], "lat": 51.522875, "lon": -0.259751}, {"$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": "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}], "lat": 51.523524, "lon": -0.259755}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "940GZZLUNBP", "modes": ["bus", "tube"], "icsCode": "1000154", "stopType": "NaptanMetroStation", "stationNaptan": "940GZZLUNBP", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "396", "name": "396", "uri": "/Line/396", "type": "Line", "crowding": {"$type": "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": "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": "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", "naptanIdReference": "490000154B", "stationAtcoCode": "490G00154B", "lineIdentifier": ["396", "296", "66"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490000154A", "stationAtcoCode": "490G00154B", "lineIdentifier": ["396", "296", "66"]}, {"$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": "bus", "lineIdentifier": ["396", "296", "66"]}, {"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["central"]}], "status": true, "id": "940GZZLUNBP", "commonName": "Newbury Park 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": "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": "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": "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": "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": "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": "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": "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": "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": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5813"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "CarParks_800484"}], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490G00154B", "modes": ["bus"], "icsCode": "1000154", "stopType": "NaptanOnstreetBusCoachStopCluster", "stationNaptan": "490G00154B", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490G00154B", "commonName": "Newbury Park Station", "placeType": "StopPoint", "additionalProperties": [], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000154A", "indicator": "Stand NA", "stopLetter": "NA", "modes": ["bus"], "icsCode": "1000154", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00154B", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000154A", "commonName": "Newbury Park Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.5756, "lon": 0.090431}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000154B", "indicator": "Stop NB", "stopLetter": "NB", "modes": ["bus"], "icsCode": "1000154", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00154B", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000154B", "commonName": "Newbury Park Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.575099, "lon": 0.091823}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000154S", "indicator": "Stop", "modes": ["bus"], "icsCode": "1000154", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00154B", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000154S", "commonName": "Newbury Park Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.575622, "lon": 0.090707}], "lat": 51.575099, "lon": 0.091823}, {"$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": "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}], "lat": 51.575726, "lon": 0.090004}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "940GZZLUNDN", "modes": ["bus", "tube"], "icsCode": "1000153", "stopType": "NaptanMetroStation", "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"}, {"$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"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "940GZZLUNDN", "lineIdentifier": ["jubilee"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490000153BB", "stationAtcoCode": "490G00153AA", "lineIdentifier": ["297"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490000153AA", "stationAtcoCode": "490G00153AA", "lineIdentifier": ["297"]}], "lineModeGroups": [{"$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": ["297"]}], "status": true, "id": "940GZZLUNDN", "commonName": "Neasden 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": "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": "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": "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": "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": "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": "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": "Toilets", "sourceSystemKey": "StaticObjects", "value": "yes (male, female, disabled/baby-changing facilities)"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5830"}], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490G00153AA", "modes": ["bus"], "icsCode": "1000153", "stopType": "NaptanOnstreetBusCoachStopCluster", "stationNaptan": "490G00153AA", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490G00153AA", "commonName": "Neasden Station", "placeType": "StopPoint", "additionalProperties": [], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000153AA", "indicator": "Stop AA", "stopLetter": "AA", "modes": ["bus"], "icsCode": "1000153", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00153AA", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000153AA", "commonName": "Neasden Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.554369, "lon": -0.249678}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000153BB", "indicator": "Stop BB", "stopLetter": "BB", "modes": ["bus"], "icsCode": "1000153", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00153AA", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000153BB", "commonName": "Neasden Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.553613, "lon": -0.249649}], "lat": 51.554369, "lon": -0.249678}, {"$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": "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}], "lat": 51.553986, "lon": -0.249837}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "940GZZLUNEN", "modes": ["bus", "tube"], "icsCode": "1000158", "stopType": "NaptanMetroStation", "stationNaptan": "940GZZLUNEN", "lines": [{"$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": "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": "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": "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", "naptanIdReference": "490000158A", "stationAtcoCode": "490G00158A", "lineIdentifier": ["n83", "483", "112"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490011333B", "stationAtcoCode": "490G00158A", "lineIdentifier": ["n83", "483"]}, {"$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": "bus", "lineIdentifier": ["n83", "483", "112"]}, {"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["piccadilly"]}], "status": true, "id": "940GZZLUNEN", "commonName": "North Ealing 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": "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": "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": "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": "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": "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": "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": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "CarParks_800452"}], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490G00158A", "modes": ["bus"], "icsCode": "1000158", "stopType": "NaptanOnstreetBusCoachStopCluster", "stationNaptan": "490G00158A", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490G00158A", "commonName": "North Ealing Station", "placeType": "StopPoint", "additionalProperties": [], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000158A", "indicator": "Stop EQ", "stopLetter": "EQ", "modes": ["bus"], "icsCode": "1000158", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00158A", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000158A", "commonName": "North Ealing Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.517637, "lon": -0.291241}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490011333B", "indicator": "Stop ER", "stopLetter": "ER", "modes": ["bus"], "icsCode": "1000158", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00158A", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490011333B", "commonName": "North Ealing Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.516357, "lon": -0.291678}], "lat": 51.517637, "lon": -0.291241}, {"$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": "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}], "lat": 51.517505, "lon": -0.288868}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "940GZZLUNFD", "modes": ["tube", "bus"], "icsCode": "1000159", "stopType": "NaptanMetroStation", "stationNaptan": "940GZZLUNFD", "lines": [{"$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": "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": "e2", "name": "E2", "uri": "/Line/e2", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "e3", "name": "E3", "uri": "/Line/e3", "type": "Line", "crowding": {"$type": "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": "490000159A", "stationAtcoCode": "490G00159X", "lineIdentifier": ["n11", "e3", "e2"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490000159B", "stationAtcoCode": "490G00159X", "lineIdentifier": ["n11", "e2", "e3"]}, {"$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": "bus", "lineIdentifier": ["n11", "e2", "e3"]}, {"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["piccadilly"]}], "status": true, "id": "940GZZLUNFD", "commonName": "Northfields 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": "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": "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": "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": "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": "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"}, {"$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": "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": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "yes"}], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490G00159X", "modes": ["bus"], "icsCode": "1000159", "stopType": "NaptanOnstreetBusCoachStopCluster", "stationNaptan": "490G00159X", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490G00159X", "commonName": "Northfields Station", "placeType": "StopPoint", "additionalProperties": [], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000159A", "indicator": "Stop B", "stopLetter": "B", "modes": ["bus"], "icsCode": "1000159", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00159X", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000159A", "commonName": "Northfields Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.498788, "lon": -0.31422}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000159B", "indicator": "Stop G", "stopLetter": "G", "modes": ["bus"], "icsCode": "1000159", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00159X", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000159B", "commonName": "Northfields Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.499574, "lon": -0.315041}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000159X", "indicator": "Stop Q", "stopLetter": "Q", "modes": ["bus"], "icsCode": "1000159", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00159X", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000159X", "commonName": "Northfields Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.499123, "lon": -0.314323}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000159Z", "indicator": "Stop Z", "stopLetter": "Z", "modes": ["bus"], "icsCode": "1000159", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00159X", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000159Z", "commonName": "Northfields Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.499055, "lon": -0.314642}], "lat": 51.499574, "lon": -0.315041}, {"$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": "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}], "lat": 51.499319, "lon": -0.314719}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "940GZZLUNGW", "modes": ["tube"], "icsCode": "1000160", "stopType": "NaptanMetroStation", "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": "940GZZLUNGW", "commonName": "North Greenwich 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": "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": "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": "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": "Escalators", "sourceSystemKey": "StaticObjects", "value": "9"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, 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": "WiFi", "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 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": "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": "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": "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": "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": "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": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5930"}, {"$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": [{"$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": "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 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": "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": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "3"}, {"$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": "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": "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": "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": "Escalators", "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": "Car park", "sourceSystemKey": "StaticObjects", "value": "yes"}], "children": [], "lat": 51.500382, "lon": 0.005191}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUNGW2", "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": "9400ZZLUNGW2", "commonName": "North Greenwich 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": "Toilets", "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, 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": "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": "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": "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": "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": "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"}], "children": [], "lat": 51.500425, "lon": 0.005308}], "lat": 51.50047, "lon": 0.004287}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "940GZZLUNHA", "modes": ["bus", "tube"], "icsCode": "1000161", "stopType": "NaptanMetroStation", "stationNaptan": "940GZZLUNHA", "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": "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": "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": "490000161B", "stationAtcoCode": "490G00161B", "lineIdentifier": ["h10"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "940GZZLUNHA", "lineIdentifier": ["metropolitan"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490000161A", "stationAtcoCode": "490G00161B", "lineIdentifier": ["h9"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "bus", "lineIdentifier": ["h10", "h9"]}, {"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["metropolitan"]}], "status": true, "id": "940GZZLUNHA", "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": "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": "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": "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": "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": "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": "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": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_4936"}], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490G00161B", "modes": ["bus"], "icsCode": "1000161", "stopType": "NaptanOnstreetBusCoachStopCluster", "stationNaptan": "490G00161B", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490G00161B", "commonName": "North Harrow Station", "placeType": "StopPoint", "additionalProperties": [], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000161A", "indicator": "Stop NK", "stopLetter": "NK", "modes": ["bus"], "icsCode": "1000161", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00161B", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000161A", "commonName": "North Harrow Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.584392, "lon": -0.362266}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000161B", "indicator": "Stop NA", "stopLetter": "NA", "modes": ["bus"], "icsCode": "1000161", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00161B", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000161B", "commonName": "North Harrow Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.584573, "lon": -0.362375}], "lat": 51.584573, "lon": -0.362375}, {"$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": "9400ZZLUNHA", "modes": ["tube"], "icsCode": "1000161", "stopType": "NaptanMetroAccessArea", "stationNaptan": "940GZZLUNHA", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "9400ZZLUNHA", "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": "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": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "5"}, {"$type": "Tfl.Api.Presentation.Entities.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": "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": "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": "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": "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": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}], "children": [], "lat": 51.584872, "lon": -0.362408}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUNHA1", "modes": ["tube"], "icsCode": "1000161", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUNHA", "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": "940GZZLUNHA", "lineIdentifier": ["metropolitan"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["metropolitan"]}], "status": true, "id": "9400ZZLUNHA1", "commonName": "North Harrow 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": "Lifts", "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": "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": "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": "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 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": "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": "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.585094, "lon": -0.362833}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUNHA2", "modes": ["tube"], "icsCode": "1000161", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUNHA", "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": "940GZZLUNHA", "lineIdentifier": ["metropolitan"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["metropolitan"]}], "status": true, "id": "9400ZZLUNHA2", "commonName": "North Harrow 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": "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": "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": "Gates", "sourceSystemKey": "StaticObjects", "value": "3"}, {"$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": "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": "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": "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"}], "children": [], "lat": 51.585066, "lon": -0.362776}], "lat": 51.584872, "lon": -0.362408}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "940GZZLUNHG", "modes": ["tube", "bus"], "icsCode": "1000167", "stopType": "NaptanMetroStation", "stationNaptan": "940GZZLUNHG", "lines": [{"$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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "n28", "name": "N28", "uri": "/Line/n28", "type": "Line", "crowding": {"$type": "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": "490015039C", "stationAtcoCode": "490G00167G", "lineIdentifier": ["27", "452", "52", "n31", "28", "n27", "328", "n28"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490000167G", "stationAtcoCode": "490G00167G", "lineIdentifier": ["27", "452", "52", "n31", "28", "n27", "328", "n28"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "940GZZLUNHG", "lineIdentifier": ["circle", "district"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490000167H", "stationAtcoCode": "490G00167G", "lineIdentifier": ["n207", "94", "148"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "940GZZLUNHG", "lineIdentifier": ["central"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490000167F", "stationAtcoCode": "490G00167G", "lineIdentifier": ["70"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "bus", "lineIdentifier": ["27", "n207", "452", "52", "94", "n31", "70", "28", "148", "n27", "328", "n28"]}, {"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["circle", "district", "central"]}], "status": true, "id": "940GZZLUNHG", "commonName": "Notting Hill Gate 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": "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": "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": "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": "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": "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": "ServiceInfo", "key": "Night", "sourceSystemKey": "TransXchangeETL", "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": "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": "Gates", "sourceSystemKey": "StaticObjects", "value": "6"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_212"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_225"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_333"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_337"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_3995"}], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490G00167G", "modes": ["bus"], "icsCode": "1000167", "stopType": "NaptanOnstreetBusCoachStopCluster", "stationNaptan": "490G00167G", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490G00167G", "commonName": "Notting Hill Gate Station", "placeType": "StopPoint", "additionalProperties": [], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000167E1", "indicator": "->E", "stopLetter": "->E", "modes": ["bus"], "icsCode": "1000167", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00167G", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000167E1", "commonName": "Notting Hill Gate Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.509204, "lon": -0.195928}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000167F", "indicator": "Stop F", "stopLetter": "F", "modes": ["bus"], "icsCode": "1000167", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00167G", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000167F", "commonName": "Notting Hill Gate Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.508086, "lon": -0.195108}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000167G", "indicator": "Stop G", "stopLetter": "G", "modes": ["bus"], "icsCode": "1000167", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00167G", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000167G", "commonName": "Notting Hill Gate Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.508772, "lon": -0.195297}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000167H", "indicator": "Stop H", "stopLetter": "H", "modes": ["bus"], "icsCode": "1000167", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00167G", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000167H", "commonName": "Notting Hill Gate Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.509284, "lon": -0.194671}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490015039C", "indicator": "Stop C", "stopLetter": "C", "modes": ["bus"], "icsCode": "1000167", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00167G", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490015039C", "commonName": "Notting Hill Gate Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.509258, "lon": -0.197079}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490015463N", "indicator": "Stop N", "stopLetter": "N", "modes": ["bus"], "icsCode": "1000167", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00167G", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490015463N", "commonName": "Notting Hill Gate Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.5096, "lon": -0.192987}], "lat": 51.5096, "lon": -0.192987}, {"$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": "9400ZZLUNHG", "modes": ["tube"], "icsCode": "1000167", "stopType": "NaptanMetroAccessArea", "stationNaptan": "940GZZLUNHG", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "9400ZZLUNHG", "commonName": "Notting Hill Gate 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": "Help Points", "sourceSystemKey": "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": "1+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": "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": "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": "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": "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.509128, "lon": -0.196104}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUNHG1", "modes": ["tube"], "icsCode": "1000167", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUNHG", "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": "940GZZLUNHG", "lineIdentifier": ["central"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["central"]}], "status": true, "id": "9400ZZLUNHG1", "commonName": "Notting Hill Gate 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": "Waiting Room", "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": "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": "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": "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": "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": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}], "children": [], "lat": 51.508921, "lon": -0.197309}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUNHG2", "modes": ["tube"], "icsCode": "1000167", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUNHG", "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": "940GZZLUNHG", "lineIdentifier": ["central"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["central"]}], "status": true, "id": "9400ZZLUNHG2", "commonName": "Notting Hill Gate 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": "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": "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": "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": "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": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "1+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": "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": "Gates", "sourceSystemKey": "StaticObjects", "value": "6"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}], "children": [], "lat": 51.508988, "lon": -0.196974}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUNHG3", "modes": ["tube"], "icsCode": "1000167", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUNHG", "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": "940GZZLUNHG", "lineIdentifier": ["district", "circle"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["district", "circle"]}], "status": true, "id": "9400ZZLUNHG3", "commonName": "Notting Hill Gate 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": "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": "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": "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": "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": "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": "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": "0"}], "children": [], "lat": 51.508749, "lon": -0.196033}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUNHG4", "modes": ["tube"], "icsCode": "1000167", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUNHG", "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": "940GZZLUNHG", "lineIdentifier": ["circle", "district"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["circle", "district"]}], "status": true, "id": "9400ZZLUNHG4", "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": "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": "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": "Escalators", "sourceSystemKey": "StaticObjects", "value": "6"}, {"$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": "subway to street."}, {"$type": "Tfl.Api.Presentation.Entities.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": "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": "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": "Payphones", "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.508677, "lon": -0.196007}], "lat": 51.509128, "lon": -0.196104}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "940GZZLUNHT", "modes": ["bus", "tube"], "icsCode": "1000162", "stopType": "NaptanMetroStation", "stationNaptan": "940GZZLUNHT", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "282", "name": "282", "uri": "/Line/282", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "120", "name": "120", "uri": "/Line/120", "type": "Line", "crowding": {"$type": "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": "90", "name": "90", "uri": "/Line/90", "type": "Line", "crowding": {"$type": "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": "395", "name": "395", "uri": "/Line/395", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "sl9", "name": "SL9", "uri": "/Line/sl9", "type": "Line", "crowding": {"$type": "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": "n7", "name": "N7", "uri": "/Line/n7", "type": "Line", "crowding": {"$type": "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": "490000162A", "stationAtcoCode": "490G00162X1", "lineIdentifier": ["282", "120", "140", "90", "395", "sl9", "n140", "n7"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490000162B", "stationAtcoCode": "490G00162X1", "lineIdentifier": ["282", "120", "140", "90", "395", "sl9", "n140", "n7"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "940GZZLUNHT", "lineIdentifier": ["central"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "bus", "lineIdentifier": ["282", "120", "140", "90", "395", "sl9", "n140", "n7"]}, {"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["central"]}], "status": true, "id": "940GZZLUNHT", "commonName": "Northolt 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": "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": "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": "Opening Time", "key": "SunFrom", "sourceSystemKey": "StaticObjects", "value": "09:00"}, {"$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": "SatTo", "sourceSystemKey": "StaticObjects", "value": "17: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": "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": "Cash Machines", "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": "SunTo", "sourceSystemKey": "StaticObjects", "value": "15: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": "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": "Opening Time", "key": "MonFriTo", "sourceSystemKey": "StaticObjects", "value": "19: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": "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"}], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490G00162X1", "modes": ["bus"], "icsCode": "1000162", "stopType": "NaptanOnstreetBusCoachStopCluster", "stationNaptan": "490G00162X1", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490G00162X1", "commonName": "Northolt Station", "placeType": "StopPoint", "additionalProperties": [], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000162A", "indicator": "Stop A", "stopLetter": "A", "modes": ["bus"], "icsCode": "1000162", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00162X1", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000162A", "commonName": "Northolt Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.547668, "lon": -0.368777}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000162B", "indicator": "Stop B", "stopLetter": "B", "modes": ["bus"], "icsCode": "1000162", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00162X1", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000162B", "commonName": "Northolt Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.548477, "lon": -0.367407}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000162N", "indicator": "Stop", "modes": ["bus"], "icsCode": "1000162", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00162X1", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000162N", "commonName": "Northolt Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.549887, "lon": -0.364746}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000162X1", "indicator": "Stop U", "stopLetter": "U", "modes": ["bus"], "icsCode": "1000162", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00162X1", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000162X1", "commonName": "Northolt Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.547397, "lon": -0.369306}], "lat": 51.547397, "lon": -0.369306}, {"$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": "9400ZZLUNHT", "modes": ["tube"], "icsCode": "1000162", "stopType": "NaptanMetroAccessArea", "stationNaptan": "940GZZLUNHT", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "9400ZZLUNHT", "commonName": "Northolt 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": "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": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$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": "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": "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": "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": "Opening Time", "key": "SunFrom", "sourceSystemKey": "StaticObjects", "value": "09: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": "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": "Opening Time", "key": "SunTo", "sourceSystemKey": "StaticObjects", "value": "15:30"}, {"$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": "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": "19:15"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "yes (male, female)"}], "children": [], "lat": 51.548236, "lon": -0.368699}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUNHT1", "modes": ["tube"], "icsCode": "1000162", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUNHT", "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": "940GZZLUNHT", "lineIdentifier": ["central"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["central"]}], "status": true, "id": "9400ZZLUNHT1", "commonName": "Northolt 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": "Opening Time", "key": "SunTo", "sourceSystemKey": "StaticObjects", "value": "15:30"}, {"$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": "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": "Other Facilities", "sourceSystemKey": "StaticObjects", "value": "routeways platform to ticket hall."}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Opening Time", "key": "SunFrom", "sourceSystemKey": "StaticObjects", "value": "09: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": "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": "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": "MonFriTo", "sourceSystemKey": "StaticObjects", "value": "19: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": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$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": "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": "Help 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:15"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "2"}], "children": [], "lat": 51.548457, "lon": -0.369124}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUNHT2", "modes": ["tube"], "icsCode": "1000162", "stopType": "NaptanRailAccessArea", "stationNaptan": "940GZZLUNHT", "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": "940GZZLUNHT", "lineIdentifier": ["central"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["central"]}], "status": true, "id": "9400ZZLUNHT2", "commonName": "Northolt 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": "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": "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": "routeways platform to ticket hall."}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Opening Time", "key": "SunFrom", "sourceSystemKey": "StaticObjects", "value": "09: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": "Opening Time", "key": "SatFrom", "sourceSystemKey": "StaticObjects", "value": "08:00"}, {"$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": "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": "Opening Time", "key": "MonFriTo", "sourceSystemKey": "StaticObjects", "value": "19: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": "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": "yes (male, female)"}, {"$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": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Opening Time", "key": "SatTo", "sourceSystemKey": "StaticObjects", "value": "17:30"}], "children": [], "lat": 51.548457, "lon": -0.369124}], "lat": 51.548236, "lon": -0.368699}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "940GZZLUNKP", "modes": ["tube", "bus"], "icsCode": "1000164", "stopType": "NaptanMetroStation", "stationNaptan": "940GZZLUNKP", "lines": [{"$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": "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": "h18", "name": "H18", "uri": "/Line/h18", "type": "Line", "crowding": {"$type": "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": "490000164MM", "stationAtcoCode": "490G00164NN", "lineIdentifier": ["h19"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "940GZZLUNKP", "lineIdentifier": ["metropolitan"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490000164NN", "stationAtcoCode": "490G00164NN", "lineIdentifier": ["h18"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "bus", "lineIdentifier": ["h19", "h18"]}, {"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["metropolitan"]}], "status": true, "id": "940GZZLUNKP", "commonName": "Northwick 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": "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": "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": "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": "Help Points", "sourceSystemKey": "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": "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": "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": "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"}], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490G00164NN", "modes": ["bus"], "icsCode": "1000164", "stopType": "NaptanOnstreetBusCoachStopCluster", "stationNaptan": "490G00164NN", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490G00164NN", "commonName": "Northwick Park Station", "placeType": "StopPoint", "additionalProperties": [], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000164MM", "indicator": "Stop MM", "stopLetter": "MM", "modes": ["bus"], "icsCode": "1000164", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00164NN", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000164MM", "commonName": "Northwick Park Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.579017, "lon": -0.317935}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000164NN", "indicator": "Stop NN", "stopLetter": "NN", "modes": ["bus"], "icsCode": "1000164", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00164NN", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000164NN", "commonName": "Northwick Park Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.579077, "lon": -0.318337}], "lat": 51.579017, "lon": -0.317935}, {"$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": "9400ZZLUNKP", "modes": ["tube"], "icsCode": "1000164", "stopType": "NaptanMetroAccessArea", "stationNaptan": "940GZZLUNKP", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "9400ZZLUNKP", "commonName": "Northwick Park Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$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": "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": "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": "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": "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": "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": "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": "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"}], "children": [], "lat": 51.578481, "lon": -0.318056}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUNKP1", "modes": ["tube"], "icsCode": "1000164", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUNKP", "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": "940GZZLUNKP", "lineIdentifier": ["metropolitan"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["metropolitan"]}], "status": true, "id": "9400ZZLUNKP1", "commonName": "Northwick 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": "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": "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": "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": "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": "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": "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": "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.578393, "lon": -0.317569}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUNKP2", "modes": ["tube"], "icsCode": "1000164", "stopType": "NaptanRailAccessArea", "stationNaptan": "940GZZLUNKP", "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": "940GZZLUNKP", "lineIdentifier": ["metropolitan"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["metropolitan"]}], "status": true, "id": "9400ZZLUNKP2", "commonName": "Northwick Park 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": "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": "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": "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": "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": "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": "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": "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"}], "children": [], "lat": 51.578393, "lon": -0.317554}], "lat": 51.578481, "lon": -0.318056}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "940GZZLUNOW", "modes": ["bus", "tube"], "icsCode": "1000165", "stopType": "NaptanMetroStation", "stationNaptan": "940GZZLUNOW", "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": "282", "name": "282", "uri": "/Line/282", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "331", "name": "331", "uri": "/Line/331", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "h11", "name": "H11", "uri": "/Line/h11", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "940GZZLUNOW", "lineIdentifier": ["metropolitan"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490015504C", "stationAtcoCode": "490G00165B", "lineIdentifier": ["282", "h11"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490015504D", "stationAtcoCode": "490G00165B", "lineIdentifier": ["282", "h11"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490000165A", "stationAtcoCode": "490G00165B", "lineIdentifier": ["331"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490000165B", "stationAtcoCode": "490G00165B", "lineIdentifier": ["331"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["metropolitan"]}, {"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "bus", "lineIdentifier": ["282", "331", "h11"]}], "status": true, "id": "940GZZLUNOW", "commonName": "Northwood Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$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": "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": "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": "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": "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, 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": "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": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "CarParks_800454"}], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490G00165B", "modes": ["bus"], "icsCode": "1000165", "stopType": "NaptanOnstreetBusCoachStopCluster", "stationNaptan": "490G00165B", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490G00165B", "commonName": "Northwood Station", "placeType": "StopPoint", "additionalProperties": [], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000165A", "indicator": "Stop A", "stopLetter": "A", "modes": ["bus"], "icsCode": "1000165", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00165B", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000165A", "commonName": "Northwood Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.611121, "lon": -0.423696}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000165B", "indicator": "Stop B", "stopLetter": "B", "modes": ["bus"], "icsCode": "1000165", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00165B", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000165B", "commonName": "Northwood Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.610822, "lon": -0.42349}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000165E", "indicator": "Stop E", "stopLetter": "E", "modes": ["bus"], "icsCode": "1000165", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00165B", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000165E", "commonName": "Northwood Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.6107, "lon": -0.423162}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490015504C", "indicator": "Stop C", "stopLetter": "C", "modes": ["bus"], "icsCode": "1000165", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00165B", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490015504C", "commonName": "Northwood Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.61127, "lon": -0.422695}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490015504D", "indicator": "Stop D", "stopLetter": "D", "modes": ["bus"], "icsCode": "1000165", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00165B", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490015504D", "commonName": "Northwood Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.611372, "lon": -0.422951}], "lat": 51.610822, "lon": -0.42349}, {"$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": "9400ZZLUNOW", "modes": ["tube"], "icsCode": "1000165", "stopType": "NaptanMetroAccessArea", "stationNaptan": "940GZZLUNOW", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "9400ZZLUNOW", "commonName": "Northwood Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$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": "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": "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": "Toilets", "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, 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": "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": "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": "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"}], "children": [], "lat": 51.611053, "lon": -0.423829}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUNOW1", "modes": ["tube"], "icsCode": "1000165", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUNOW", "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": "940GZZLUNOW", "lineIdentifier": ["metropolitan"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["metropolitan"]}], "status": true, "id": "9400ZZLUNOW1", "commonName": "Northwood 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": "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": "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": "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"}, {"$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": "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": "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.611001, "lon": -0.42399}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUNOW2", "modes": ["tube"], "icsCode": "1000165", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUNOW", "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": "940GZZLUNOW", "lineIdentifier": ["metropolitan"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["metropolitan"]}], "status": true, "id": "9400ZZLUNOW2", "commonName": "Northwood 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": "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": "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": "12 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": "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": "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": "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": "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.610947, "lon": -0.423963}], "lat": 51.611053, "lon": -0.423829}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "940GZZLUNWH", "modes": ["tube", "bus"], "icsCode": "1000166", "stopType": "NaptanMetroStation", "stationNaptan": "940GZZLUNWH", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "h13", "name": "H13", "uri": "/Line/h13", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "282", "name": "282", "uri": "/Line/282", "type": "Line", "crowding": {"$type": "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", "naptanIdReference": "490000166A", "stationAtcoCode": "490G00166B", "lineIdentifier": ["h13", "282"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490000166B", "stationAtcoCode": "490G00166B", "lineIdentifier": ["h13", "282"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "940GZZLUNWH", "lineIdentifier": ["metropolitan"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "bus", "lineIdentifier": ["h13", "282"]}, {"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["metropolitan"]}], "status": true, "id": "940GZZLUNWH", "commonName": "Northwood Hills 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": "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": "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": "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": "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": "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": "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": "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": "Northwood Hills Station,London Underground Ltd.,Joel St,Northwood,Middx,HA6 1NZ"}], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490G00166B", "modes": ["bus"], "icsCode": "1000166", "stopType": "NaptanOnstreetBusCoachStopCluster", "stationNaptan": "490G00166B", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490G00166B", "commonName": "Northwood Hills Station", "placeType": "StopPoint", "additionalProperties": [], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000166A", "indicator": "Stop A", "stopLetter": "A", "modes": ["bus"], "icsCode": "1000166", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00166B", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000166A", "commonName": "Northwood Hills Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.600382, "lon": -0.409528}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000166B", "indicator": "Stop B", "stopLetter": "B", "modes": ["bus"], "icsCode": "1000166", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00166B", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000166B", "commonName": "Northwood Hills Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.601167, "lon": -0.409688}], "lat": 51.601167, "lon": -0.409688}, {"$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": "9400ZZLUNWH", "modes": ["tube"], "icsCode": "1000166", "stopType": "NaptanMetroAccessArea", "stationNaptan": "940GZZLUNWH", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "9400ZZLUNWH", "commonName": "Northwood Hills 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": "10 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": "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": "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": "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": "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": "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": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "6"}], "children": [], "lat": 51.600572, "lon": -0.409464}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUNWH1", "modes": ["tube"], "icsCode": "1000166", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUNWH", "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": "940GZZLUNWH", "lineIdentifier": ["metropolitan"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["metropolitan"]}], "status": true, "id": "9400ZZLUNWH1", "commonName": "Northwood Hills 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."}, {"$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": "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": "Payphones", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$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": "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": "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": "10 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.600529, "lon": -0.408974}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUNWH2", "modes": ["tube"], "icsCode": "1000166", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUNWH", "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": "940GZZLUNWH", "lineIdentifier": ["metropolitan"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["metropolitan"]}], "status": true, "id": "9400ZZLUNWH2", "commonName": "Northwood Hills 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": "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": "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": "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": "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": "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": "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": "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": "6"}], "children": [], "lat": 51.600492, "lon": -0.408875}], "lat": 51.600572, "lon": -0.409464}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "940GZZLUNWY", "modes": ["tube"], "icsCode": "1000163", "stopType": "NaptanMetroStation", "stationNaptan": "940GZZLUNWY", "hubNaptanCode": "HUBNWB", "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": "940GZZLUNWY", "lineIdentifier": ["bakerloo"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["bakerloo"]}], "status": true, "id": "940GZZLUNWY", "commonName": "North Wembley 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": "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": "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": "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": "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": "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": "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": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 601 4867"}], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUNWY", "modes": ["tube"], "icsCode": "1000163", "stopType": "NaptanMetroAccessArea", "stationNaptan": "940GZZLUNWY", "hubNaptanCode": "HUBNWB", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "9400ZZLUNWY", "commonName": "North Wembley 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": "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": "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": "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": "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": "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": "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": "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.562551, "lon": -0.304}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUNWY1", "modes": ["tube"], "icsCode": "1000163", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUNWY", "hubNaptanCode": "HUBNWB", "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": "940GZZLUNWY", "lineIdentifier": ["bakerloo"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["bakerloo"]}], "status": true, "id": "9400ZZLUNWY1", "commonName": "North Wembley 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": "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": "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": "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": "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"}], "children": [], "lat": 51.562322, "lon": -0.303691}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUNWY2", "indicator": "southbound", "modes": ["tube"], "icsCode": "1000163", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUNWY", "hubNaptanCode": "HUBNWB", "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": "940GZZLUNWY", "lineIdentifier": ["bakerloo"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["bakerloo"]}], "status": true, "id": "9400ZZLUNWY2", "commonName": "North Wembley 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": "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": "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": "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": "Toilets", "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": "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"}], "children": [], "lat": 51.5628, "lon": -0.303774}], "lat": 51.562551, "lon": -0.304}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "940GZZLUOAK", "modes": ["bus", "tube"], "icsCode": "1000168", "stopType": "NaptanMetroStation", "stationNaptan": "940GZZLUOAK", "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": "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": "377", "name": "377", "uri": "/Line/377", "type": "Line", "crowding": {"$type": "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"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490000168A", "stationAtcoCode": "490G00168A", "lineIdentifier": ["121", "n91", "307"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "940GZZLUOAK", "lineIdentifier": ["piccadilly"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490000168B", "stationAtcoCode": "490G00168A", "lineIdentifier": ["377"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "bus", "lineIdentifier": ["121", "n91", "377", "307"]}, {"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["piccadilly"]}], "status": true, "id": "940GZZLUOAK", "commonName": "Oakwood 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": "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": "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": "Geo", "key": "Zone", "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": "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": "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": "Accessibility", "key": "AccessViaLift", "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": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "CarParks_800485"}, {"$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": "Oakwood Station,London Underground Ltd.,Bramley Rd,London,N14 4UT"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$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": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5844"}], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490G00168A", "modes": ["bus"], "stopType": "NaptanOnstreetBusCoachStopCluster", "stationNaptan": "490G00168A", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490G00168A", "commonName": "Oakwood Station", "placeType": "StopPoint", "additionalProperties": [], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000168A", "indicator": "Stop A", "stopLetter": "A", "modes": ["bus"], "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00168A", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000168A", "commonName": "Oakwood Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.647792, "lon": -0.131934}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000168B", "indicator": "Stop B", "stopLetter": "B", "modes": ["bus"], "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00168A", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000168B", "commonName": "Oakwood Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.647421, "lon": -0.132339}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000168Y", "indicator": "->S", "stopLetter": "->S", "modes": ["bus"], "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00168A", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000168Y", "commonName": "Oakwood Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.646982, "lon": -0.132444}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000168Z", "indicator": "Stop", "modes": ["bus"], "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00168A", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000168Z", "commonName": "Oakwood Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.646966, "lon": -0.13256}], "lat": 51.646982, "lon": -0.132444}, {"$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": "9400ZZLUOAK", "modes": ["tube"], "icsCode": "1000168", "stopType": "NaptanMetroAccessArea", "stationNaptan": "940GZZLUOAK", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "9400ZZLUOAK", "commonName": "Oakwood 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": "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": "Lifts", "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": "Car park", "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"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.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": "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": "Gates", "sourceSystemKey": "StaticObjects", "value": "3"}, {"$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": "Bridge", "sourceSystemKey": "StaticObjects", "value": "yes"}], "children": [], "lat": 51.647725, "lon": -0.132168}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUOAK1", "modes": ["tube"], "icsCode": "1000168", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUOAK", "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": "940GZZLUOAK", "lineIdentifier": ["piccadilly"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["piccadilly"]}], "status": true, "id": "9400ZZLUOAK1", "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": "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": "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": "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": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "5"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.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": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$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": "Help 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.647336, "lon": -0.131418}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUOAK2", "modes": ["tube"], "icsCode": "1000168", "stopType": "NaptanRailAccessArea", "stationNaptan": "940GZZLUOAK", "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": "940GZZLUOAK", "lineIdentifier": ["piccadilly"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["piccadilly"]}], "status": true, "id": "9400ZZLUOAK2", "commonName": "Oakwood 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": "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": "Oakwood Station,London Underground Ltd.,Bramley Rd,London,N14 4UT"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "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": "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": "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": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}], "children": [], "lat": 51.647327, "lon": -0.131433}], "lat": 51.647726, "lon": -0.132182}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "940GZZLUODS", "modes": ["tube"], "icsCode": "1000169", "stopType": "NaptanMetroStation", "stationNaptan": "940GZZLUODS", "hubNaptanCode": "HUBOLD", "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": "940GZZLUODS", "lineIdentifier": ["northern"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["northern"]}], "status": true, "id": "940GZZLUODS", "commonName": "Old 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": "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": "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": "Toilets", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Old Street Station,London Underground Ltd.,Old St,London,EC1Y 1BE"}, {"$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": "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": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_119"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_32"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_73"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.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"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_323"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_319"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5116"}], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUODS", "modes": ["tube"], "icsCode": "1000169", "stopType": "NaptanMetroAccessArea", "stationNaptan": "940GZZLUODS", "hubNaptanCode": "HUBOLD", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "9400ZZLUODS", "commonName": "Old Street 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": "Help Points", "sourceSystemKey": "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": "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": "Address", "sourceSystemKey": "StaticObjects", "value": "Old Street Station,London Underground Ltd.,Old St,London,EC1Y 1BE"}, {"$type": "Tfl.Api.Presentation.Entities.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": "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.525864, "lon": -0.08777}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUODS1", "modes": ["tube"], "icsCode": "1000169", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUODS", "hubNaptanCode": "HUBOLD", "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": "940GZZLUODS", "lineIdentifier": ["northern"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["northern"]}], "status": true, "id": "9400ZZLUODS1", "commonName": "Old 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": "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": "Address", "sourceSystemKey": "StaticObjects", "value": "Old Street Station,London Underground Ltd.,Old St,London,EC1Y 1BE"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.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": "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": "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": "Geo", "key": "Zone", "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": "Lifts", "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.524988, "lon": -0.087547}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUODS2", "modes": ["tube"], "icsCode": "1000169", "stopType": "NaptanRailAccessArea", "stationNaptan": "940GZZLUODS", "hubNaptanCode": "HUBOLD", "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": "940GZZLUODS", "lineIdentifier": ["northern"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["northern"]}], "status": true, "id": "9400ZZLUODS2", "commonName": "Old Street 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": "Old Street Station,London Underground Ltd.,Old St,London,EC1Y 1BE"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.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": "Help Points", "sourceSystemKey": "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": "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": "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": "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": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "1"}], "children": [], "lat": 51.524979, "lon": -0.087547}], "lat": 51.525864, "lon": -0.08777}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "940GZZLUOSY", "modes": ["bus", "tube"], "icsCode": "1000171", "stopType": "NaptanMetroStation", "stationNaptan": "940GZZLUOSY", "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": "h91", "name": "H91", "uri": "/Line/h91", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "940GZZLUOSY", "lineIdentifier": ["piccadilly"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490000171B", "stationAtcoCode": "490G00171A", "lineIdentifier": ["h91"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490000171A", "stationAtcoCode": "490G00171A", "lineIdentifier": ["h91"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["piccadilly"]}, {"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "bus", "lineIdentifier": ["h91"]}], "status": true, "id": "940GZZLUOSY", "commonName": "Osterley 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": "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": "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": "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": "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": "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": "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": "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": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "CarParks_800455"}], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490G00171A", "modes": ["bus"], "icsCode": "1000171", "stopType": "NaptanOnstreetBusCoachStopCluster", "stationNaptan": "490G00171A", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490G00171A", "commonName": "Osterley Station", "placeType": "StopPoint", "additionalProperties": [], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000171A", "indicator": "Stop S", "stopLetter": "S", "modes": ["bus"], "icsCode": "1000171", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00171A", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000171A", "commonName": "Osterley Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.480872, "lon": -0.351907}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000171B", "indicator": "Stop P", "stopLetter": "P", "modes": ["bus"], "icsCode": "1000171", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00171A", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000171B", "commonName": "Osterley Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.480655, "lon": -0.351799}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "49000RB47E", "indicator": "Stop", "modes": ["bus"], "icsCode": "1000171", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00171A", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "49000RB47E", "commonName": "Osterley Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.48093, "lon": -0.351559}], "lat": 51.480655, "lon": -0.351799}, {"$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": "9400ZZLUOSY", "modes": ["tube"], "icsCode": "1000171", "stopType": "NaptanMetroAccessArea", "stationNaptan": "940GZZLUOSY", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "9400ZZLUOSY", "commonName": "Osterley 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": "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": "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": "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": "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": "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": "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": "Help Points", "sourceSystemKey": "StaticObjects", "value": "0 on platforms, 0 in ticket halls, 0 elsewhere"}], "children": [], "lat": 51.481274, "lon": -0.352224}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUOSY1", "modes": ["tube"], "icsCode": "1000171", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUOSY", "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": "940GZZLUOSY", "lineIdentifier": ["piccadilly"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["piccadilly"]}], "status": true, "id": "9400ZZLUOSY1", "commonName": "Osterley 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": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "4"}, {"$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": "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": "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": "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"}], "children": [], "lat": 51.481502, "lon": -0.351812}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUOSY2", "modes": ["tube"], "icsCode": "1000171", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUOSY", "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": "940GZZLUOSY", "lineIdentifier": ["piccadilly"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["piccadilly"]}], "status": true, "id": "9400ZZLUOSY2", "commonName": "Osterley 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": "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": "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": "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": "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": "Help 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": "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": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "yes"}], "children": [], "lat": 51.481448, "lon": -0.351843}], "lat": 51.481274, "lon": -0.352224}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "940GZZLUOVL", "modes": ["bus", "tube"], "icsCode": "1000172", "stopType": "NaptanMetroStation", "stationNaptan": "940GZZLUOVL", "lines": [{"$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": "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": "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": "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": "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": "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": "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": "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": "759", "name": "759", "uri": "/Line/759", "type": "Line", "crowding": {"$type": "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": "490000172C", "stationAtcoCode": "490G00172N", "lineIdentifier": ["36", "436", "185", "n136", "759"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490000172Q", "stationAtcoCode": "490G00172N", "lineIdentifier": ["333", "155", "n155"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490000172R", "stationAtcoCode": "490G00172N", "lineIdentifier": ["333", "155", "n155"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490000172D", "stationAtcoCode": "490G00172N", "lineIdentifier": ["36", "436", "185", "n136", "759"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "940GZZLUOVL", "lineIdentifier": ["northern"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "bus", "lineIdentifier": ["36", "333", "436", "185", "n136", "155", "n155", "759"]}, {"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["northern"]}], "status": true, "id": "940GZZLUOVL", "commonName": "Oval 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": "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": "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": "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"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.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": "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": "Photo 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": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_149"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_654"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_440"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_827"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5134"}], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490G00172N", "modes": ["bus"], "icsCode": "1000172", "stopType": "NaptanOnstreetBusCoachStopCluster", "stationNaptan": "490G00172N", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490G00172N", "commonName": "Oval Station", "placeType": "StopPoint", "additionalProperties": [], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000172C", "indicator": "Stop C", "stopLetter": "C", "modes": ["bus"], "icsCode": "1000172", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00172N", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000172C", "commonName": "Oval Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.482392, "lon": -0.112748}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000172D", "indicator": "Stop D", "stopLetter": "D", "modes": ["bus"], "icsCode": "1000172", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00172N", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000172D", "commonName": "Oval Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.482122, "lon": -0.112687}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000172Q", "indicator": "Stop Q", "stopLetter": "Q", "modes": ["bus"], "icsCode": "1000172", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00172N", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000172Q", "commonName": "Oval Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.481538, "lon": -0.11274}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000172R", "indicator": "Stop R", "stopLetter": "R", "modes": ["bus"], "icsCode": "1000172", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00172N", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000172R", "commonName": "Oval Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.481576, "lon": -0.112335}], "lat": 51.481538, "lon": -0.11274}, {"$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": "9400ZZLUOVL", "modes": ["tube"], "icsCode": "1000172", "stopType": "NaptanMetroAccessArea", "stationNaptan": "940GZZLUOVL", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "9400ZZLUOVL", "commonName": "Oval 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": "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."}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo 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": "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": "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": "Help 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.48185, "lon": -0.112439}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUOVL1", "modes": ["tube"], "icsCode": "1000172", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUOVL", "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": "940GZZLUOVL", "lineIdentifier": ["northern"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["northern"]}], "status": true, "id": "9400ZZLUOVL1", "commonName": "Oval 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": "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": "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": "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": "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": "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": "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.481574, "lon": -0.112623}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUOVL2", "modes": ["tube"], "icsCode": "1000172", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUOVL", "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": "940GZZLUOVL", "lineIdentifier": ["northern"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["northern"]}], "status": true, "id": "9400ZZLUOVL2", "commonName": "Oval 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": "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": "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": "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": "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": "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": "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": "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"}], "children": [], "lat": 51.481777, "lon": -0.112399}], "lat": 51.48185, "lon": -0.112439}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "940GZZLUOXC", "modes": ["bus", "tube"], "icsCode": "1000173", "stopType": "NaptanMetroStation", "stationNaptan": "940GZZLUOXC", "lines": [{"$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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "n15", "name": "N15", "uri": "/Line/n15", "type": "Line", "crowding": {"$type": "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": "490000173RG", "stationAtcoCode": "490G00173RG", "lineIdentifier": ["n22", "159", "n136", "n113", "n18", "22", "139", "n109", "94", "n15"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490000173RC", "stationAtcoCode": "490G00173RG", "lineIdentifier": ["n22", "88", "12", "159", "22", "n3", "94", "n15"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "940GZZLUOXC", "lineIdentifier": ["bakerloo"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "940GZZLUOXC", "lineIdentifier": ["victoria"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490000173Z", "stationAtcoCode": "490G00173OQ", "lineIdentifier": ["n137"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "940GZZLUOXC", "lineIdentifier": ["central"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "bus", "lineIdentifier": ["n22", "88", "159", "12", "n136", "n113", "n137", "n18", "22", "139", "n3", "n109", "94", "n15"]}, {"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["bakerloo", "victoria", "central"]}], "status": true, "id": "940GZZLUOXC", "commonName": "Oxford Circus Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5627"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5065"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5816"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5611"}, {"$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": "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": "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": "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": "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": "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": "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": "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": "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": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_6"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_106"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_116"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_141"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_260"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_301"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_311"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_313"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_349"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5683"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5576"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5379"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_4334"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5580"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5500"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_4787"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5866"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5677"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5074"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5195"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5660"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5015"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_4603"}], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490G00173OQ", "modes": ["bus"], "icsCode": "1000173", "stopType": "NaptanOnstreetBusCoachStopCluster", "stationNaptan": "490G00173OQ", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490G00173OQ", "commonName": "Oxford Circus Station", "placeType": "StopPoint", "additionalProperties": [], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000173Z", "indicator": "Stop OH", "stopLetter": "OH", "modes": ["bus"], "icsCode": "1000173", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00173OQ", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000173Z", "commonName": "Oxford Circus Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.515286, "lon": -0.143658}], "lat": 51.515286, "lon": -0.143658}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490G00173RG", "modes": ["bus"], "icsCode": "1000173", "stopType": "NaptanOnstreetBusCoachStopCluster", "stationNaptan": "490G00173RG", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490G00173RG", "commonName": "Oxford Circus Station", "placeType": "StopPoint", "additionalProperties": [], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000173RC", "indicator": "Stop RC", "stopLetter": "RC", "modes": ["bus"], "icsCode": "1000173", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00173RG", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000173RC", "commonName": "Oxford Circus Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.51462, "lon": -0.141942}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000173RG", "indicator": "Stop RG", "stopLetter": "RG", "modes": ["bus"], "icsCode": "1000173", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00173RG", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000173RG", "commonName": "Oxford Circus Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.514589, "lon": -0.141669}], "lat": 51.514589, "lon": -0.141669}, {"$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": "9400ZZLUOXC", "modes": ["tube"], "icsCode": "1000173", "stopType": "NaptanMetroAccessArea", "stationNaptan": "940GZZLUOXC", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "9400ZZLUOXC", "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": "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": "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": "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": "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": "30"}, {"$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": "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": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}], "children": [], "lat": 51.515224, "lon": -0.141903}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUOXC1", "modes": ["tube"], "icsCode": "1000173", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUOXC", "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": "940GZZLUOXC", "lineIdentifier": ["central"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["central"]}], "status": true, "id": "9400ZZLUOXC1", "commonName": "Oxford Circus 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": "14"}, {"$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": "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": "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": "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": "Photo 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": "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": "Lifts", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "3"}], "children": [], "lat": 51.515377, "lon": -0.141363}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUOXC2", "modes": ["tube"], "icsCode": "1000173", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUOXC", "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": "940GZZLUOXC", "lineIdentifier": ["victoria"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["victoria"]}], "status": true, "id": "9400ZZLUOXC2", "commonName": "Oxford 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": "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": "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": "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": "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": "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": "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": "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": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "no"}], "children": [], "lat": 51.51576, "lon": -0.14227}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUOXC3", "modes": ["tube"], "icsCode": "1000173", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUOXC", "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": "940GZZLUOXC", "lineIdentifier": ["bakerloo"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["bakerloo"]}], "status": true, "id": "9400ZZLUOXC3", "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": "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": "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": "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": "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": "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": "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": "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": "Lifts", "sourceSystemKey": "StaticObjects", "value": "0"}], "children": [], "lat": 51.515721, "lon": -0.142084}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUOXC4", "modes": ["tube"], "icsCode": "1000173", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUOXC", "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": "940GZZLUOXC", "lineIdentifier": ["bakerloo"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["bakerloo"]}], "status": true, "id": "9400ZZLUOXC4", "commonName": "Oxford 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": "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": "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": "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": "WiFi", "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": "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": "Photo 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": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "3"}, {"$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"}], "children": [], "lat": 51.515697, "lon": -0.142244}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUOXC5", "modes": ["tube"], "icsCode": "1000173", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUOXC", "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": "940GZZLUOXC", "lineIdentifier": ["central"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["central"]}], "status": true, "id": "9400ZZLUOXC5", "commonName": "Oxford 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": "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": "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": "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": "Payphones", "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": "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": "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": "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": "14"}], "children": [], "lat": 51.515384, "lon": -0.141248}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUOXC6", "modes": ["tube"], "icsCode": "1000173", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUOXC", "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": "940GZZLUOXC", "lineIdentifier": ["victoria"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["victoria"]}], "status": true, "id": "9400ZZLUOXC6", "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": "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": "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": "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": "Waiting Room", "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": "Toilets", "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": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}], "children": [], "lat": 51.515794, "lon": -0.14211}], "lat": 51.515224, "lon": -0.141903}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "940GZZLUPAC", "modes": ["tube"], "icsCode": "1000174", "stopType": "NaptanMetroStation", "stationNaptan": "940GZZLUPAC", "hubNaptanCode": "HUBPAD", "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"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "940GZZLUPAC", "lineIdentifier": ["bakerloo"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "940GZZLUPAC", "lineIdentifier": ["circle", "district"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["bakerloo", "circle", "district"]}], "status": true, "id": "940GZZLUPAC", "commonName": "Paddington Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$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": "Payphones", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$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": "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": "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": "24"}, {"$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": "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": "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": "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": "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)"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_186"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_265"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_279"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_290"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_330"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_370"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_397"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_752"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5967"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5487"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5711"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_4479"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5434"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5499"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5488"}], "children": [{"$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": "9400ZZLUPAC", "modes": ["tube"], "icsCode": "1000174", "stopType": "NaptanMetroAccessArea", "stationNaptan": "940GZZLUPAC", "hubNaptanCode": "HUBPAD", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "9400ZZLUPAC", "commonName": "Paddington 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": "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": "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": "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": "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": "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": "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": "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": "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": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}], "children": [], "lat": 51.516581, "lon": -0.175689}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUPAC1", "modes": ["tube"], "icsCode": "1000174", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUPAC", "hubNaptanCode": "HUBPAD", "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": "940GZZLUPAC", "lineIdentifier": ["bakerloo"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["bakerloo"]}], "status": true, "id": "9400ZZLUPAC1", "commonName": "Paddington 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": "24"}, {"$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": "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": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$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": "Payphones", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$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": "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": "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": "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"}], "children": [], "lat": 51.516299, "lon": -0.17547}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUPAC2", "modes": ["tube"], "icsCode": "1000174", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUPAC", "hubNaptanCode": "HUBPAD", "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": "940GZZLUPAC", "lineIdentifier": ["bakerloo"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["bakerloo"]}], "status": true, "id": "9400ZZLUPAC2", "commonName": "Paddington Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$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": "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": "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": "4"}, {"$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": "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": "Ticket Halls", "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": "VisitorCentre", "key": "Location", "sourceSystemKey": "StaticObjects", "value": "Opposite Platform 1 Paddington Rail 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": "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"}], "children": [], "lat": 51.516345, "lon": -0.175526}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUPAC3", "modes": ["tube"], "icsCode": "1000174", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUPAC", "hubNaptanCode": "HUBPAD", "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": "940GZZLUPAC", "lineIdentifier": ["district", "circle"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["district", "circle"]}], "status": true, "id": "9400ZZLUPAC3", "commonName": "Paddington 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": "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": "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": "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": "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": "Gates", "sourceSystemKey": "StaticObjects", "value": "24"}, {"$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": "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": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$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": "Payphones", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "3"}], "children": [], "lat": 51.515383, "lon": -0.175521}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUPAC4", "modes": ["tube"], "icsCode": "1000174", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUPAC", "hubNaptanCode": "HUBPAD", "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": "940GZZLUPAC", "lineIdentifier": ["circle", "district"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["circle", "district"]}], "status": true, "id": "9400ZZLUPAC4", "commonName": "Paddington 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": "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": "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": "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": "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": "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": "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": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$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": "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": "Payphones", "sourceSystemKey": "StaticObjects", "value": "2"}], "children": [], "lat": 51.515436, "lon": -0.175447}], "lat": 51.516581, "lon": -0.175689}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "940GZZLUPAH", "modes": ["tube"], "icsCode": "1000175", "stopType": "NaptanMetroStation", "stationNaptan": "940GZZLUPAH", "hubNaptanCode": "HUBPAD", "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": "940GZZLUPAH", "lineIdentifier": ["hammersmith-city"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "940GZZLUPAH", "lineIdentifier": ["hammersmith-city", "circle"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["hammersmith-city", "circle"]}], "status": true, "id": "940GZZLUPAH", "commonName": "Paddington (H&C Line)-Underground", "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)"}, {"$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_164"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_165"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_186"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_279"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_290"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_330"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_370"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_592"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_752"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5487"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5711"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5434"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5488"}], "children": [{"$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": "9400ZZLUPAH", "modes": ["tube"], "icsCode": "1000175", "stopType": "NaptanMetroAccessArea", "stationNaptan": "940GZZLUPAH", "hubNaptanCode": "HUBPAD", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "9400ZZLUPAH", "commonName": "Paddington (H&C Line)-Underground", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.518187, "lon": -0.178306}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUPAH1", "modes": ["tube"], "icsCode": "1000175", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUPAH", "hubNaptanCode": "HUBPAD", "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": "940GZZLUPAH", "lineIdentifier": ["hammersmith-city", "circle"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["hammersmith-city", "circle"]}], "status": true, "id": "9400ZZLUPAH1", "commonName": "Paddington (H&C Line)-Underground", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.518201, "lon": -0.178623}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUPAH2", "modes": ["tube"], "icsCode": "1000175", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUPAH", "hubNaptanCode": "HUBPAD", "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": "940GZZLUPAH", "lineIdentifier": ["hammersmith-city"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["hammersmith-city"]}], "status": true, "id": "9400ZZLUPAH2", "commonName": "Paddington (H&C Line)-Underground", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.518163, "lon": -0.178523}], "lat": 51.518187, "lon": -0.178306}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "940GZZLUPCC", "modes": ["tube", "bus"], "icsCode": "1000179", "stopType": "NaptanMetroStation", "stationNaptan": "940GZZLUPCC", "lines": [{"$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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490000179F", "stationAtcoCode": "490G00179D", "lineIdentifier": ["94", "n15", "n18", "n3", "n109", "139", "12", "159", "88", "453", "n113", "n136"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490011515W", "stationAtcoCode": "490G00179D", "lineIdentifier": ["94", "n15", "n18", "n3", "n109", "139", "12", "159", "88", "453", "n136", "n113"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490000179S", "stationAtcoCode": "490G00179B", "lineIdentifier": ["19", "9", "38", "23", "14", "n19", "n9", "n38", "n97"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490000179B", "stationAtcoCode": "490G00179B", "lineIdentifier": ["19", "9", "38", "23", "14", "n19", "n9", "n38", "n97"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "940GZZLUPCC", "lineIdentifier": ["piccadilly"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "940GZZLUPCC", "lineIdentifier": ["bakerloo"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "bus", "lineIdentifier": ["94", "n15", "19", "9", "38", "n18", "23", "n3", "n109", "139", "12", "159", "88", "14", "n19", "n9", "453", "n38", "n97", "n113", "n136"]}, {"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["piccadilly", "bakerloo"]}], "status": true, "id": "940GZZLUPCC", "commonName": "Piccadilly Circus 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": "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": "VisitorCentre", "key": "Location", "sourceSystemKey": "StaticObjects", "value": "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": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$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": "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": "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": "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": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_83"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_129"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_160"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_192"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_226"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_228"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_233"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_260"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_318"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_325"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_383"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_386"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5596"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5016"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5510"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5670"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5191"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5468"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5364"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5325"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5671"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5809"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5737"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5778"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_4978"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5799"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5594"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5432"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5686"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_4182"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5855"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5090"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5481"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5853"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5779"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5317"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5867"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5363"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5017"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5509"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5715"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5854"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5856"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5758"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5572"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5687"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5065"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5800"}], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490G00179B", "modes": ["bus"], "icsCode": "1000179", "stopType": "NaptanOnstreetBusCoachStopCluster", "stationNaptan": "490G00179B", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490G00179B", "commonName": "Piccadilly Circus", "placeType": "StopPoint", "additionalProperties": [], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000179B", "indicator": "Stop B", "stopLetter": "B", "modes": ["bus"], "icsCode": "1000179", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00179B", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000179B", "commonName": "Piccadilly Circus", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.509305, "lon": -0.136235}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000179S", "indicator": "Stop S", "stopLetter": "S", "modes": ["bus"], "icsCode": "1000179", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00179B", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000179S", "commonName": "Piccadilly Circus", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.509153, "lon": -0.13627}], "lat": 51.509305, "lon": -0.136235}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490G00179C", "modes": ["bus"], "icsCode": "1000179", "stopType": "NaptanOnstreetBusCoachStopCluster", "stationNaptan": "940GZZLUPCC", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490G00179C", "commonName": "Piccadilly Circus", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.51005, "lon": -0.133798}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490G00179D", "modes": ["bus"], "icsCode": "1000179", "stopType": "NaptanOnstreetBusCoachStopCluster", "stationNaptan": "490G00179D", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490G00179D", "commonName": "Piccadilly Circus", "placeType": "StopPoint", "additionalProperties": [], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000179F", "indicator": "Stop F", "stopLetter": "F", "modes": ["bus"], "icsCode": "1000179", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00179D", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000179F", "commonName": "Piccadilly Circus", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.509963, "lon": -0.136886}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490011515W", "indicator": "Stop E", "stopLetter": "E", "modes": ["bus"], "icsCode": "1000179", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00179D", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490011515W", "commonName": "Piccadilly Circus", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.50988, "lon": -0.13735}], "lat": 51.50988, "lon": -0.13735}, {"$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": "9400ZZLUPCC", "modes": ["tube"], "icsCode": "1000179", "stopType": "NaptanMetroAccessArea", "stationNaptan": "940GZZLUPCC", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "9400ZZLUPCC", "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": "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": "Car park", "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": "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": "Piccadilly Circus Station,London Underground Ltd.,Piccadilly Circus,London,W1J 9HP"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.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": "Cash Machines", "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": "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": "Facility", "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.51005, "lon": -0.133798}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUPCC1", "modes": ["tube"], "icsCode": "1000179", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUPCC", "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": "940GZZLUPCC", "lineIdentifier": ["bakerloo"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["bakerloo"]}], "status": true, "id": "9400ZZLUPCC1", "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": "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": "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": "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": "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": "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": "Cash Machines", "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": "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": "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"}], "children": [], "lat": 51.510083, "lon": -0.135281}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUPCC2", "modes": ["tube"], "icsCode": "1000179", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUPCC", "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": "940GZZLUPCC", "lineIdentifier": ["bakerloo"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["bakerloo"]}], "status": true, "id": "9400ZZLUPCC2", "commonName": "Piccadilly Circus 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": "Photo 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": "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": "Lifts", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$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": "Help 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": "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"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.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": "Gates", "sourceSystemKey": "StaticObjects", "value": "16"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "6"}], "children": [], "lat": 51.510117, "lon": -0.135179}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUPCC3", "modes": ["tube"], "icsCode": "1000179", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUPCC", "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": "940GZZLUPCC", "lineIdentifier": ["piccadilly"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["piccadilly"]}], "status": true, "id": "9400ZZLUPCC3", "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": "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": "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": "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": "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": "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": "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": "Help 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": "Underground Station"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "no"}], "children": [], "lat": 51.509439, "lon": -0.135495}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUPCC4", "modes": ["tube"], "icsCode": "1000179", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUPCC", "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": "940GZZLUPCC", "lineIdentifier": ["piccadilly"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["piccadilly"]}], "status": true, "id": "9400ZZLUPCC4", "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": "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": "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": "Piccadilly Circus Station,London Underground Ltd.,Piccadilly Circus,London,W1J 9HP"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help 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": "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": "Cash Machines", "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": "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": "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": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}], "children": [], "lat": 51.509592, "lon": -0.134926}], "lat": 51.51005, "lon": -0.133798}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "940GZZLUPCO", "modes": ["tube", "bus"], "icsCode": "1000180", "stopType": "NaptanMetroStation", "stationNaptan": "940GZZLUPCO", "lines": [{"$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": "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": "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": "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": "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": "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": "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": "c10", "name": "C10", "uri": "/Line/c10", "type": "Line", "crowding": {"$type": "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": "490000180D", "stationAtcoCode": "490G00180A", "lineIdentifier": ["n2", "2", "36", "185", "n136"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490000180A", "stationAtcoCode": "490G00180A", "lineIdentifier": ["n2", "36", "2", "185", "n136"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490000180J", "stationAtcoCode": "490G00180H", "lineIdentifier": ["360", "c10"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490000180H", "stationAtcoCode": "490G00180H", "lineIdentifier": ["360", "c10"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "940GZZLUPCO", "lineIdentifier": ["victoria"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "bus", "lineIdentifier": ["n2", "360", "36", "2", "185", "n136", "c10"]}, {"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["victoria"]}], "status": true, "id": "940GZZLUPCO", "commonName": "Pimlico 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": "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": "4 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": "Lifts", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$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": "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."}, {"$type": "Tfl.Api.Presentation.Entities.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": "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": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_146"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_148"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_185"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_190"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_243"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_267"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_294"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5495"}], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490G00180A", "modes": ["bus"], "icsCode": "1000180", "stopType": "NaptanOnstreetBusCoachStopCluster", "stationNaptan": "490G00180A", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490G00180A", "commonName": "Pimlico Station", "placeType": "StopPoint", "additionalProperties": [], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000180A", "indicator": "Stop A", "stopLetter": "A", "modes": ["bus"], "icsCode": "1000180", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00180A", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000180A", "commonName": "Pimlico Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.489982, "lon": -0.132414}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000180D", "indicator": "Stop D", "stopLetter": "D", "modes": ["bus"], "icsCode": "1000180", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00180A", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000180D", "commonName": "Pimlico Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.490388, "lon": -0.133074}], "lat": 51.490388, "lon": -0.133074}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490G00180H", "modes": ["bus"], "icsCode": "1000180", "stopType": "NaptanOnstreetBusCoachStopCluster", "stationNaptan": "490G00180H", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490G00180H", "commonName": "Pimlico Station", "placeType": "StopPoint", "additionalProperties": [], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000180H", "indicator": "Stop H", "stopLetter": "H", "modes": ["bus"], "icsCode": "1000180", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00180H", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000180H", "commonName": "Pimlico Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.489143, "lon": -0.133341}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000180J", "indicator": "Stop J", "stopLetter": "J", "modes": ["bus"], "icsCode": "1000180", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00180H", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000180J", "commonName": "Pimlico Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.488954, "lon": -0.13332}], "lat": 51.488954, "lon": -0.13332}, {"$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": "9400ZZLUPCO", "modes": ["tube"], "icsCode": "1000180", "stopType": "NaptanMetroAccessArea", "stationNaptan": "940GZZLUPCO", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "9400ZZLUPCO", "commonName": "Pimlico 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": "Escalators", "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": "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": "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": "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": "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": "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": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "1"}], "children": [], "lat": 51.489097, "lon": -0.133761}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUPCO1", "modes": ["tube"], "icsCode": "1000180", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUPCO", "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": "940GZZLUPCO", "lineIdentifier": ["victoria"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["victoria"]}], "status": true, "id": "9400ZZLUPCO1", "commonName": "Pimlico 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": "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": "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": "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": "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": "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": "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": "Ticket Halls", "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"}], "children": [], "lat": 51.489219, "lon": -0.134044}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUPCO2", "modes": ["tube"], "icsCode": "1000180", "stopType": "NaptanRailAccessArea", "stationNaptan": "940GZZLUPCO", "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": "940GZZLUPCO", "lineIdentifier": ["victoria"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["victoria"]}], "status": true, "id": "9400ZZLUPCO2", "commonName": "Pimlico Station", "placeType": "StopPoint", "additionalProperties": [{"$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": "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": "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": "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": "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": "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": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}], "children": [], "lat": 51.489219, "lon": -0.134044}], "lat": 51.489097, "lon": -0.133761}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "940GZZLUPKR", "modes": ["bus", "tube"], "icsCode": "1000176", "stopType": "NaptanMetroStation", "stationNaptan": "940GZZLUPKR", "lines": [{"$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": "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": "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": "487", "name": "487", "uri": "/Line/487", "type": "Line", "crowding": {"$type": "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": "490007599E", "stationAtcoCode": "490G00176L", "lineIdentifier": ["226"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490007599W", "stationAtcoCode": "490G00176L", "lineIdentifier": ["226"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "940GZZLUPKR", "lineIdentifier": ["piccadilly"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490000176M", "stationAtcoCode": "490G00176L", "lineIdentifier": ["95", "487"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490000176L", "stationAtcoCode": "490G00176L", "lineIdentifier": ["95", "487"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "bus", "lineIdentifier": ["226", "95", "487"]}, {"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["piccadilly"]}], "status": true, "id": "940GZZLUPKR", "commonName": "Park Royal 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": "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": "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": "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": "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": "Other Facilities", "sourceSystemKey": "StaticObjects", "value": "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": "Escalators", "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": "Car park", "sourceSystemKey": "StaticObjects", "value": "no"}], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490G00176L", "modes": ["bus"], "icsCode": "1000176", "stopType": "NaptanOnstreetBusCoachStopCluster", "stationNaptan": "490G00176L", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490G00176L", "commonName": "Park Royal Station", "placeType": "StopPoint", "additionalProperties": [], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000176L", "indicator": "Stop L", "stopLetter": "L", "modes": ["bus"], "icsCode": "1000176", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00176L", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000176L", "commonName": "Park Royal Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.527183, "lon": -0.283589}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000176M", "indicator": "Stop M", "stopLetter": "M", "modes": ["bus"], "icsCode": "1000176", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00176L", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000176M", "commonName": "Park Royal Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.527121, "lon": -0.284269}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490007599E", "indicator": "Stop H", "stopLetter": "H", "modes": ["bus"], "icsCode": "1000176", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00176L", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490007599E", "commonName": "Park Royal Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.528963, "lon": -0.281735}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490007599W", "indicator": "Stop S", "stopLetter": "S", "modes": ["bus"], "icsCode": "1000176", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00176L", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490007599W", "commonName": "Park Royal Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.528876, "lon": -0.281911}], "lat": 51.527183, "lon": -0.283589}, {"$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": "9400ZZLUPKR", "modes": ["tube"], "icsCode": "1000176", "stopType": "NaptanMetroAccessArea", "stationNaptan": "940GZZLUPKR", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "9400ZZLUPKR", "commonName": "Park Royal 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": "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": "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": "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": "Help Points", "sourceSystemKey": "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": "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.527123, "lon": -0.284341}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUPKR1", "modes": ["tube"], "icsCode": "1000176", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUPKR", "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": "940GZZLUPKR", "lineIdentifier": ["piccadilly"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["piccadilly"]}], "status": true, "id": "9400ZZLUPKR1", "commonName": "Park Royal Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$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": "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": "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"}, {"$type": "Tfl.Api.Presentation.Entities.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": "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": "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": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}], "children": [], "lat": 51.526598, "lon": -0.284058}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUPKR2", "modes": ["tube"], "icsCode": "1000176", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUPKR", "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": "940GZZLUPKR", "lineIdentifier": ["piccadilly"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["piccadilly"]}], "status": true, "id": "9400ZZLUPKR2", "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": "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": "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": "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": "Photo Booths", "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": "Help 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": "Gates", "sourceSystemKey": "StaticObjects", "value": "3"}], "children": [], "lat": 51.526525, "lon": -0.284032}], "lat": 51.527123, "lon": -0.284341}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "940GZZLUPLW", "modes": ["bus", "tube"], "icsCode": "1000182", "stopType": "NaptanMetroStation", "stationNaptan": "940GZZLUPLW", "lines": [{"$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": "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": "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": "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": "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": "490000182A", "stationAtcoCode": "490G00182A", "lineIdentifier": ["69", "262", "241", "473"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490000182B", "stationAtcoCode": "490G00182A", "lineIdentifier": ["69", "262", "241", "473"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "940GZZLUPLW", "lineIdentifier": ["district", "hammersmith-city"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "bus", "lineIdentifier": ["69", "262", "241", "473"]}, {"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["district", "hammersmith-city"]}], "status": true, "id": "940GZZLUPLW", "commonName": "Plaistow Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$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": "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": "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": "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": "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": "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": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5505"}], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490G00182A", "modes": ["bus"], "icsCode": "1000182", "stopType": "NaptanOnstreetBusCoachStopCluster", "stationNaptan": "490G00182A", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490G00182A", "commonName": "Plaistow Station", "placeType": "StopPoint", "additionalProperties": [], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000182A", "indicator": "Stop A", "stopLetter": "A", "modes": ["bus"], "icsCode": "1000182", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00182A", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000182A", "commonName": "Plaistow Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.531253, "lon": 0.018255}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000182B", "indicator": "Stop B", "stopLetter": "B", "modes": ["bus"], "icsCode": "1000182", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00182A", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000182B", "commonName": "Plaistow Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.531866, "lon": 0.017143}], "lat": 51.531253, "lon": 0.018255}, {"$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": "9400ZZLUPLW", "modes": ["tube"], "icsCode": "1000182", "stopType": "NaptanMetroAccessArea", "stationNaptan": "940GZZLUPLW", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "9400ZZLUPLW", "commonName": "Plaistow 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": "Help Points", "sourceSystemKey": "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": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$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": "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": "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": "Other Facilities", "sourceSystemKey": "StaticObjects", "value": "canopies over platform, taxi ranks outside station."}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}], "children": [], "lat": 51.531341, "lon": 0.017451}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUPLW1", "modes": ["tube"], "icsCode": "1000182", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUPLW", "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": "940GZZLUPLW", "lineIdentifier": ["district", "hammersmith-city"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["district", "hammersmith-city"]}], "status": true, "id": "9400ZZLUPLW1", "commonName": "Plaistow 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": "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": "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": "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": "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": "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": "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"}], "children": [], "lat": 51.531182, "lon": 0.016767}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUPLW2", "modes": ["tube"], "icsCode": "1000182", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUPLW", "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": "940GZZLUPLW", "lineIdentifier": ["district", "hammersmith-city"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["district", "hammersmith-city"]}], "status": true, "id": "9400ZZLUPLW2", "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": "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": "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": "Other Facilities", "sourceSystemKey": "StaticObjects", "value": "canopies over platform, 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": "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": "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": "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"}], "children": [], "lat": 51.531198, "lon": 0.016854}], "lat": 51.531341, "lon": 0.017451}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "940GZZLUPNR", "modes": ["bus", "tube"], "icsCode": "1000181", "stopType": "NaptanMetroStation", "stationNaptan": "940GZZLUPNR", "lines": [{"$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": "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": "h11", "name": "H11", "uri": "/Line/h11", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "h13", "name": "H13", "uri": "/Line/h13", "type": "Line", "crowding": {"$type": "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"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490015522C", "stationAtcoCode": "490G00181B", "lineIdentifier": ["183", "h11", "h13", "h12"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490000181B", "stationAtcoCode": "490G00181B", "lineIdentifier": ["183", "h11", "h13", "h12"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490015522E", "stationAtcoCode": "490G00181B", "lineIdentifier": ["183"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "940GZZLUPNR", "lineIdentifier": ["metropolitan"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "bus", "lineIdentifier": ["183", "h11", "h13", "h12"]}, {"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["metropolitan"]}], "status": true, "id": "940GZZLUPNR", "commonName": "Pinner 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": "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": "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."}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.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": "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": "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": "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": "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": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490G00181B", "modes": ["bus"], "stopType": "NaptanOnstreetBusCoachStopCluster", "stationNaptan": "490G00181B", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490G00181B", "commonName": "Pinner Station", "placeType": "StopPoint", "additionalProperties": [], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000181B", "indicator": "Stop B", "stopLetter": "B", "modes": ["bus"], "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00181B", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000181B", "commonName": "Pinner Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.592391, "lon": -0.382074}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490015522C", "indicator": "Stop C", "stopLetter": "C", "modes": ["bus"], "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00181B", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490015522C", "commonName": "Pinner Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.594339, "lon": -0.382496}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490015522E", "indicator": "Stand Z1", "stopLetter": "Z1", "modes": ["bus"], "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00181B", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490015522E", "commonName": "Pinner Station / Bridge Street", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.594382, "lon": -0.383}], "lat": 51.594339, "lon": -0.382496}, {"$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": "9400ZZLUPNR", "modes": ["tube"], "icsCode": "1000181", "stopType": "NaptanMetroAccessArea", "stationNaptan": "940GZZLUPNR", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "9400ZZLUPNR", "commonName": "Pinner 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": "Geo", "key": "Zone", "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": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$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": "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": "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": "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": "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": "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.592901, "lon": -0.381161}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUPNR1", "modes": ["tube"], "icsCode": "1000181", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUPNR", "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": "940GZZLUPNR", "lineIdentifier": ["metropolitan"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["metropolitan"]}], "status": true, "id": "9400ZZLUPNR1", "commonName": "Pinner 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": "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": "0"}, {"$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": "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": "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": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "5"}, {"$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": "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"}], "children": [], "lat": 51.59275, "lon": -0.381268}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUPNR2", "modes": ["tube"], "icsCode": "1000181", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUPNR", "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": "940GZZLUPNR", "lineIdentifier": ["metropolitan"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["metropolitan"]}], "status": true, "id": "9400ZZLUPNR2", "commonName": "Pinner Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$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": "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"}, {"$type": "Tfl.Api.Presentation.Entities.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": "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": "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": "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": "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": "Help Points", "sourceSystemKey": "StaticObjects", "value": "15 on platforms, 0 in ticket halls, 0 elsewhere"}], "children": [], "lat": 51.592704, "lon": -0.381183}], "lat": 51.592901, "lon": -0.381161}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "940GZZLUPRD", "modes": ["tube", "bus"], "icsCode": "1000183", "stopType": "NaptanMetroStation", "stationNaptan": "940GZZLUPRD", "lines": [{"$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": "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": "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": "223", "name": "223", "uri": "/Line/223", "type": "Line", "crowding": {"$type": "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": "490000183A", "stationAtcoCode": "490G00183B", "lineIdentifier": ["79", "204", "223"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490000183B", "stationAtcoCode": "490G00183B", "lineIdentifier": ["79", "204", "223"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "940GZZLUPRD", "lineIdentifier": ["metropolitan"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "bus", "lineIdentifier": ["79", "204", "223"]}, {"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["metropolitan"]}], "status": true, "id": "940GZZLUPRD", "commonName": "Preston 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": "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": "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": "Toilets", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$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": "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": "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": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "4"}], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490G00183B", "modes": ["bus"], "icsCode": "1000183", "stopType": "NaptanOnstreetBusCoachStopCluster", "stationNaptan": "490G00183B", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490G00183B", "commonName": "Preston Road Station", "placeType": "StopPoint", "additionalProperties": [], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000183A", "indicator": "Stop PA", "stopLetter": "PA", "modes": ["bus"], "icsCode": "1000183", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00183B", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000183A", "commonName": "Preston Road Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.572362, "lon": -0.294804}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000183B", "indicator": "Stop PB", "stopLetter": "PB", "modes": ["bus"], "icsCode": "1000183", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00183B", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000183B", "commonName": "Preston Road Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.571892, "lon": -0.294677}], "lat": 51.571892, "lon": -0.294677}, {"$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": "9400ZZLUPRD", "modes": ["tube"], "icsCode": "1000183", "stopType": "NaptanMetroAccessArea", "stationNaptan": "940GZZLUPRD", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "9400ZZLUPRD", "commonName": "Preston Road 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": "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": "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": "Preston Road Station,London Underground Ltd.,Preston Rd,Wembley,Middx,HA3 0PS"}, {"$type": "Tfl.Api.Presentation.Entities.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": "Help Points", "sourceSystemKey": "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"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.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"}], "children": [], "lat": 51.571972, "lon": -0.295107}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUPRD1", "modes": ["tube"], "icsCode": "1000183", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUPRD", "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": "940GZZLUPRD", "lineIdentifier": ["metropolitan"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["metropolitan"]}], "status": true, "id": "9400ZZLUPRD1", "commonName": "Preston 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": "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": "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": "Preston Road Station,London Underground Ltd.,Preston Rd,Wembley,Middx,HA3 0PS"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.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": "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": "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": "Car park", "sourceSystemKey": "StaticObjects", "value": "no"}], "children": [], "lat": 51.572024, "lon": -0.295581}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUPRD2", "modes": ["tube"], "icsCode": "1000183", "stopType": "NaptanRailAccessArea", "stationNaptan": "940GZZLUPRD", "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": "940GZZLUPRD", "lineIdentifier": ["metropolitan"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["metropolitan"]}], "status": true, "id": "9400ZZLUPRD2", "commonName": "Preston Road 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": "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": "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": "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"}, {"$type": "Tfl.Api.Presentation.Entities.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": "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": "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.572024, "lon": -0.295581}], "lat": 51.571972, "lon": -0.295107}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "940GZZLUPSG", "modes": ["tube"], "icsCode": "1000177", "stopType": "NaptanMetroStation", "stationNaptan": "940GZZLUPSG", "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": "940GZZLUPSG", "lineIdentifier": ["district"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["district"]}], "status": true, "id": "940GZZLUPSG", "commonName": "Parsons Green 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": "Help Points", "sourceSystemKey": "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": "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": "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": "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": "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": "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"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_596"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_619"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_671"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_727"}], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490G00177S", "modes": ["bus"], "icsCode": "1000177", "stopType": "NaptanOnstreetBusCoachStopCluster", "stationNaptan": "940GZZLUPSG", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490G00177S", "commonName": "Parsons Green", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.475277, "lon": -0.20117}, {"$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": "9400ZZLUPSG", "modes": ["tube"], "icsCode": "1000177", "stopType": "NaptanMetroAccessArea", "stationNaptan": "940GZZLUPSG", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "9400ZZLUPSG", "commonName": "Parsons 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": "Help Points", "sourceSystemKey": "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": "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"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.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": "canopies over platform (part), taxi ranks outside 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": "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": "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": "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": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}], "children": [], "lat": 51.475277, "lon": -0.20117}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUPSG1", "modes": ["tube"], "icsCode": "1000177", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUPSG", "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": "940GZZLUPSG", "lineIdentifier": ["district"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["district"]}], "status": true, "id": "9400ZZLUPSG1", "commonName": "Parsons Green 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": "canopies over platform (part), taxi ranks outside station."}, {"$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": "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": "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": "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": "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"}], "children": [], "lat": 51.475104, "lon": -0.201637}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUPSG2", "modes": ["tube"], "icsCode": "1000177", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUPSG", "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": "940GZZLUPSG", "lineIdentifier": ["district"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["district"]}], "status": true, "id": "9400ZZLUPSG2", "commonName": "Parsons 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": "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": "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": "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": "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": "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": "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": "Euro Cash Machines", "sourceSystemKey": "StaticObjects", "value": "yes"}], "children": [], "lat": 51.475157, "lon": -0.201534}], "lat": 51.475277, "lon": -0.20117}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "940GZZLUPVL", "modes": ["bus", "tube"], "icsCode": "1000178", "stopType": "NaptanMetroStation", "stationNaptan": "940GZZLUPVL", "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": "297", "name": "297", "uri": "/Line/297", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "940GZZLUPVL", "lineIdentifier": ["central"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490000178A", "stationAtcoCode": "490G00178B", "lineIdentifier": ["297"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490000178B", "stationAtcoCode": "490G00178B", "lineIdentifier": ["297"]}], "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": "bus", "lineIdentifier": ["297"]}], "status": true, "id": "940GZZLUPVL", "commonName": "Perivale 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": "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": "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": "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": "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": "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": "Payphones", "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": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "CarParks_800456"}], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490G00178B", "modes": ["bus"], "icsCode": "1000178", "stopType": "NaptanOnstreetBusCoachStopCluster", "stationNaptan": "490G00178B", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490G00178B", "commonName": "Perivale Station", "placeType": "StopPoint", "additionalProperties": [], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000178A", "indicator": "Stop PF", "stopLetter": "PF", "modes": ["bus"], "icsCode": "1000178", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00178B", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000178A", "commonName": "Perivale Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.537074, "lon": -0.323995}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000178B", "indicator": "Stop G", "stopLetter": "G", "modes": ["bus"], "icsCode": "1000178", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00178B", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000178B", "commonName": "Perivale Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.536565, "lon": -0.32423}], "lat": 51.536565, "lon": -0.32423}, {"$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": "9400ZZLUPVL", "modes": ["tube"], "icsCode": "1000178", "stopType": "NaptanMetroAccessArea", "stationNaptan": "940GZZLUPVL", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "9400ZZLUPVL", "commonName": "Perivale 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": "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"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.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": "Perivale Station,London Underground Ltd.,Horsenden Lane,Greenford,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": "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": "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": "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.536717, "lon": -0.323446}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUPVL1", "modes": ["tube"], "icsCode": "1000178", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUPVL", "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": "940GZZLUPVL", "lineIdentifier": ["central"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["central"]}], "status": true, "id": "9400ZZLUPVL1", "commonName": "Perivale 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": "Help Points", "sourceSystemKey": "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": "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": "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": "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": "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": "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": "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"}], "children": [], "lat": 51.536672, "lon": -0.322799}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUPVL2", "modes": ["tube"], "icsCode": "1000178", "stopType": "NaptanRailAccessArea", "stationNaptan": "940GZZLUPVL", "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": "940GZZLUPVL", "lineIdentifier": ["central"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["central"]}], "status": true, "id": "9400ZZLUPVL2", "commonName": "Perivale", "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, 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"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.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": "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": "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": "yes"}, {"$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": "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": "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.536663, "lon": -0.322785}], "lat": 51.536717, "lon": -0.323446}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "940GZZLUPYB", "modes": ["bus", "tube"], "icsCode": "1000184", "stopType": "NaptanMetroStation", "stationNaptan": "940GZZLUPYB", "lines": [{"$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": "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": "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": "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": "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": "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"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490000184Z", "stationAtcoCode": "490G00184X", "lineIdentifier": ["39", "270", "85", "93"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490007281E", "stationAtcoCode": "490G07281E", "lineIdentifier": ["39", "270", "265", "414", "85", "93"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "940GZZLUPYB", "lineIdentifier": ["district"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490000184Y", "stationAtcoCode": "490G00184X", "lineIdentifier": ["265", "414"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "bus", "lineIdentifier": ["39", "270", "265", "414", "85", "93"]}, {"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["district"]}], "status": true, "id": "940GZZLUPYB", "commonName": "Putney Bridge 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": "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": "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": "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": "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": "Putney Bridge Station,London Underground Ltd.,Station Approach,London,SW6 3UH"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.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 (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": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_607"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_617"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_765"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_774"}], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490G00184X", "modes": ["bus"], "icsCode": "1000184", "stopType": "NaptanOnstreetBusCoachStopCluster", "stationNaptan": "490G00184X", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490G00184X", "commonName": "Putney Bridge Station", "placeType": "StopPoint", "additionalProperties": [], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000184N", "indicator": "Stop", "modes": ["bus"], "icsCode": "1000184", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00184X", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000184N", "commonName": "Putney Bridge Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.468385, "lon": -0.209259}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000184X", "indicator": "Stop FA", "stopLetter": "FA", "modes": ["bus"], "icsCode": "1000184", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00184X", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000184X", "commonName": "Putney Bridge Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.468042, "lon": -0.209186}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000184Y", "indicator": "Stop FB", "stopLetter": "FB", "modes": ["bus"], "icsCode": "1000184", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00184X", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000184Y", "commonName": "Putney Bridge Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.468166, "lon": -0.209022}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000184Z", "indicator": "Stop FC", "stopLetter": "FC", "modes": ["bus"], "icsCode": "1000184", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00184X", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000184Z", "commonName": "Putney Bridge Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.467918, "lon": -0.209306}], "lat": 51.468385, "lon": -0.209259}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490G07281E", "modes": ["bus"], "icsCode": "1000184", "stopType": "NaptanOnstreetBusCoachStopCluster", "stationNaptan": "490G07281E", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490G07281E", "commonName": "Putney Bridge Station", "placeType": "StopPoint", "additionalProperties": [], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490007281E", "indicator": "Stop AP", "stopLetter": "AP", "modes": ["bus"], "icsCode": "1000184", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G07281E", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490007281E", "commonName": "Putney Bridge Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.468453, "lon": -0.210782}], "lat": 51.468453, "lon": -0.210782}, {"$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": "9400ZZLUPYB", "modes": ["tube"], "icsCode": "1000184", "stopType": "NaptanMetroAccessArea", "stationNaptan": "940GZZLUPYB", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "9400ZZLUPYB", "commonName": "Putney Bridge 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": "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"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.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": "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": "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": "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."}], "children": [], "lat": 51.468262, "lon": -0.208731}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUPYB1", "modes": ["tube"], "icsCode": "1000184", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUPYB", "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": "940GZZLUPYB", "lineIdentifier": ["district"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["district"]}], "status": true, "id": "9400ZZLUPYB1", "commonName": "Putney Bridge Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$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": "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": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.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": "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": "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": "4"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "no"}], "children": [], "lat": 51.468299, "lon": -0.208816}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUPYB2", "modes": ["tube"], "icsCode": "1000184", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUPYB", "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": "940GZZLUPYB", "lineIdentifier": ["district"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["district"]}], "status": true, "id": "9400ZZLUPYB2", "commonName": "Putney Bridge 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": "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": "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": "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": "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": "Help Points", "sourceSystemKey": "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": "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": "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"}], "children": [], "lat": 51.468298, "lon": -0.208787}], "lat": 51.468262, "lon": -0.208731}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "940GZZLUQBY", "modes": ["tube", "bus"], "icsCode": "1000185", "stopType": "NaptanMetroStation", "stationNaptan": "940GZZLUQBY", "lines": [{"$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": "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": "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": "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": "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": "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": "79", "name": "79", "uri": "/Line/79", "type": "Line", "crowding": {"$type": "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": "490000185BB", "stationAtcoCode": "490G00185BB", "lineIdentifier": ["688", "606", "288", "114", "n98", "79"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490000185AA", "stationAtcoCode": "490G00185BB", "lineIdentifier": ["606", "288", "114", "n98", "79"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "940GZZLUQBY", "lineIdentifier": ["jubilee"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "bus", "lineIdentifier": ["688", "606", "288", "114", "n98", "79"]}, {"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["jubilee"]}], "status": true, "id": "940GZZLUQBY", "commonName": "Queensbury 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": "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": "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": "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": "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": "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": "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": "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": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5831"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "CarParks_800486"}], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490G00185BB", "modes": ["bus"], "icsCode": "1000185", "stopType": "NaptanOnstreetBusCoachStopCluster", "stationNaptan": "490G00185BB", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490G00185BB", "commonName": "Queensbury Station", "placeType": "StopPoint", "additionalProperties": [], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000185AA", "indicator": "Stop AA", "stopLetter": "AA", "modes": ["bus"], "icsCode": "1000185", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00185BB", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000185AA", "commonName": "Queensbury Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.594454, "lon": -0.285444}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000185BB", "indicator": "Stop BB", "stopLetter": "BB", "modes": ["bus"], "icsCode": "1000185", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00185BB", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000185BB", "commonName": "Queensbury Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.594736, "lon": -0.285043}], "lat": 51.594736, "lon": -0.285043}, {"$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": "9400ZZLUQBY", "modes": ["tube"], "icsCode": "1000185", "stopType": "NaptanMetroAccessArea", "stationNaptan": "940GZZLUQBY", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "9400ZZLUQBY", "commonName": "Queensbury 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": "Lifts", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$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": "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": "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": "Help Points", "sourceSystemKey": "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": "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": "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.594188, "lon": -0.286219}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUQBY1", "modes": ["tube"], "icsCode": "1000185", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUQBY", "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": "940GZZLUQBY", "lineIdentifier": ["jubilee"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["jubilee"]}], "status": true, "id": "9400ZZLUQBY1", "commonName": "Queensbury 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": "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": "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": "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": "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": "yes (male, female, disabled/baby-changing facilities)"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "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": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "4"}], "children": [], "lat": 51.59413, "lon": -0.285947}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUQBY2", "modes": ["tube"], "icsCode": "1000185", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUQBY", "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": "940GZZLUQBY", "lineIdentifier": ["jubilee"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["jubilee"]}], "status": true, "id": "9400ZZLUQBY2", "commonName": "Queensbury 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": "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": "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": "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": "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": "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": "Queensbury Station,London Underground Ltd.,Cumberland Rd,Harrow,Middx,HA8 5NP"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}], "children": [], "lat": 51.594103, "lon": -0.28589}], "lat": 51.594188, "lon": -0.286219}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "940GZZLUQPS", "modes": ["tube"], "icsCode": "1000186", "stopType": "NaptanMetroStation", "stationNaptan": "940GZZLUQPS", "hubNaptanCode": "HUBQPW", "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": "940GZZLUQPS", "lineIdentifier": ["bakerloo"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["bakerloo"]}], "status": true, "id": "940GZZLUQPS", "commonName": "Queen's 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": "Lifts", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$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": "Ticket Halls", "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": "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": "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": "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": "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": "8"}, {"$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": "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"}], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUQPS", "modes": ["tube"], "icsCode": "1000186", "stopType": "NaptanMetroAccessArea", "stationNaptan": "940GZZLUQPS", "hubNaptanCode": "HUBQPW", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "9400ZZLUQPS", "commonName": "Queen'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": "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": "Photo 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": "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": "Gates", "sourceSystemKey": "StaticObjects", "value": "8"}, {"$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": "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": "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": "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": "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": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}], "children": [], "lat": 51.534158, "lon": -0.204574}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUQPS1", "modes": ["tube"], "icsCode": "1000186", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUQPS", "hubNaptanCode": "HUBQPW", "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": "940GZZLUQPS", "lineIdentifier": ["bakerloo"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["bakerloo"]}], "status": true, "id": "9400ZZLUQPS1", "commonName": "Queen's Park Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$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": "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": "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": "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": "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": "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": "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": "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": "Toilets", "sourceSystemKey": "StaticObjects", "value": "no"}], "children": [], "lat": 51.53416, "lon": -0.205309}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUQPS2", "modes": ["tube"], "icsCode": "1000186", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUQPS", "hubNaptanCode": "HUBQPW", "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": "940GZZLUQPS", "lineIdentifier": ["bakerloo"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["bakerloo"]}], "status": true, "id": "9400ZZLUQPS2", "commonName": "Queen's Park 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": "Bridge", "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": "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": "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": "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"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.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": "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": "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"}], "children": [], "lat": 51.534177, "lon": -0.205222}], "lat": 51.534158, "lon": -0.204574}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "940GZZLUQWY", "modes": ["bus", "tube"], "icsCode": "1000187", "stopType": "NaptanMetroStation", "stationNaptan": "940GZZLUQWY", "lines": [{"$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": "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": "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": "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": "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", "naptanIdReference": "490000187A", "stationAtcoCode": "490G00187B", "lineIdentifier": ["n207", "70", "148", "94"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490000187C", "stationAtcoCode": "490G00187B", "lineIdentifier": ["n207", "148", "94"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490000187B", "stationAtcoCode": "490G00187B", "lineIdentifier": ["70"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "940GZZLUQWY", "lineIdentifier": ["central"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "bus", "lineIdentifier": ["n207", "70", "148", "94"]}, {"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["central"]}], "status": true, "id": "940GZZLUQWY", "commonName": "Queensway 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": "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": "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"}, {"$type": "Tfl.Api.Presentation.Entities.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": "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": "Help Points", "sourceSystemKey": "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": "Queensway Station,London Underground Ltd.,Bayswater Rd,London,W2 4SS"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.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": "BikePoints_224"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_261"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_307"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_333"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_584"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5653"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5859"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_4213"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5975"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5036"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_4529"}], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490G00187B", "modes": ["bus"], "icsCode": "1000187", "stopType": "NaptanOnstreetBusCoachStopCluster", "stationNaptan": "490G00187B", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490G00187B", "commonName": "Queensway Station", "placeType": "StopPoint", "additionalProperties": [], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000187A", "indicator": "Stop A", "stopLetter": "A", "modes": ["bus"], "icsCode": "1000187", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00187B", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000187A", "commonName": "Queensway Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.510211, "lon": -0.187761}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000187B", "indicator": "Stop B", "stopLetter": "B", "modes": ["bus"], "icsCode": "1000187", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00187B", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000187B", "commonName": "Queensway Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.510669, "lon": -0.187123}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000187C", "indicator": "Stop C", "stopLetter": "C", "modes": ["bus"], "icsCode": "1000187", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00187B", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000187C", "commonName": "Queensway Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.510214, "lon": -0.188496}], "lat": 51.510214, "lon": -0.188496}, {"$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": "9400ZZLUQWY", "modes": ["tube"], "icsCode": "1000187", "stopType": "NaptanMetroAccessArea", "stationNaptan": "940GZZLUQWY", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "9400ZZLUQWY", "commonName": "Queensway 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": "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": "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": "Facility", "key": "Photo 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": "Toilets", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$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": "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.510312, "lon": -0.187152}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUQWY1", "modes": ["tube"], "icsCode": "1000187", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUQWY", "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": "940GZZLUQWY", "lineIdentifier": ["central"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["central"]}], "status": true, "id": "9400ZZLUQWY1", "commonName": "Queensway 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": "Photo 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": "Queensway Station,London Underground Ltd.,Bayswater Rd,London,W2 4SS"}, {"$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": "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": "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": "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": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "1"}], "children": [], "lat": 51.510312, "lon": -0.187209}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUQWY2", "modes": ["tube"], "icsCode": "1000187", "stopType": "NaptanRailAccessArea", "stationNaptan": "940GZZLUQWY", "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": "940GZZLUQWY", "lineIdentifier": ["central"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["central"]}], "status": true, "id": "9400ZZLUQWY2", "commonName": "Queensway 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": "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": "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": "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": "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": "Toilets", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$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": "Help Points", "sourceSystemKey": "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.510321, "lon": -0.187209}], "lat": 51.510312, "lon": -0.187152}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "940GZZLURBG", "modes": ["bus", "tube"], "icsCode": "1000190", "stopType": "NaptanMetroStation", "stationNaptan": "940GZZLURBG", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "145", "name": "145", "uri": "/Line/145", "type": "Line", "crowding": {"$type": "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": "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": "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": "366", "name": "366", "uri": "/Line/366", "type": "Line", "crowding": {"$type": "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": "490015554C", "stationAtcoCode": "490G00190038", "lineIdentifier": ["145", "n8", "66", "366"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "940GZZLURBG", "lineIdentifier": ["central"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490000190B", "stationAtcoCode": "490G00190038", "lineIdentifier": ["366"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "bus", "lineIdentifier": ["145", "n8", "66", "366"]}, {"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["central"]}], "status": true, "id": "940GZZLURBG", "commonName": "Redbridge 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": "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": "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": "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": "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": "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": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$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": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "4"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "CarParks_800487"}], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490G00190038", "modes": ["bus"], "icsCode": "1000190", "stopType": "NaptanOnstreetBusCoachStopCluster", "stationNaptan": "490G00190038", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490G00190038", "commonName": "Redbridge Station", "placeType": "StopPoint", "additionalProperties": [], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000190038", "indicator": "Stop B", "stopLetter": "B", "modes": ["bus"], "icsCode": "1000190", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00190038", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000190038", "commonName": "Redbridge Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.576301, "lon": 0.045593}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000190B", "indicator": "Stop RB", "stopLetter": "RB", "modes": ["bus"], "icsCode": "1000190", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00190038", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000190B", "commonName": "Redbridge Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.576449, "lon": 0.045354}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490015554C", "indicator": "Stop RC", "stopLetter": "RC", "modes": ["bus"], "icsCode": "1000190", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00190038", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490015554C", "commonName": "Redbridge Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.57585, "lon": 0.04566}], "lat": 51.576301, "lon": 0.045593}, {"$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": "9400ZZLURBG", "modes": ["tube"], "icsCode": "1000190", "stopType": "NaptanMetroAccessArea", "stationNaptan": "940GZZLURBG", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "9400ZZLURBG", "commonName": "Redbridge 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": "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"}, {"$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": "Redbridge Station,London Underground Ltd.,Eastern Avenue,Ilford,Essex,IG4 5DQ"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.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": "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"}], "children": [], "lat": 51.576243, "lon": 0.04536}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLURBG1", "modes": ["tube"], "icsCode": "1000190", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLURBG", "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": "940GZZLURBG", "lineIdentifier": ["central"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["central"]}], "status": true, "id": "9400ZZLURBG1", "commonName": "Redbridge 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": "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": "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": "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": "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": "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": "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": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}], "children": [], "lat": 51.576188, "lon": 0.046454}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLURBG2", "modes": ["tube"], "icsCode": "1000190", "stopType": "NaptanRailAccessArea", "stationNaptan": "940GZZLURBG", "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": "940GZZLURBG", "lineIdentifier": ["central"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["central"]}], "status": true, "id": "9400ZZLURBG2", "commonName": "Redbridge 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": "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": "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": "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 (male, female)"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.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": "Redbridge Station,London Underground Ltd.,Eastern Avenue,Ilford,Essex,IG4 5DQ"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.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": "Help Points", "sourceSystemKey": "StaticObjects", "value": "0 on platforms, 0 in ticket halls, 0 elsewhere"}], "children": [], "lat": 51.576188, "lon": 0.046454}], "lat": 51.576243, "lon": 0.04536}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "940GZZLURGP", "modes": ["tube", "bus"], "icsCode": "1000191", "stopType": "NaptanMetroStation", "stationNaptan": "940GZZLURGP", "lines": [{"$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": "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": "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": "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": "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": "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": "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": "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": "n27", "name": "N27", "uri": "/Line/n27", "type": "Line", "crowding": {"$type": "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": "490000191A", "stationAtcoCode": "490G00191A", "lineIdentifier": ["n205", "18", "27", "205", "453", "30", "n18", "n27"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490000191B", "stationAtcoCode": "490G00191A", "lineIdentifier": ["n205", "18", "27", "205", "453", "30", "n18", "n27"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "940GZZLURGP", "lineIdentifier": ["bakerloo"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "bus", "lineIdentifier": ["n205", "18", "27", "205", "453", "30", "n18", "n27"]}, {"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["bakerloo"]}], "status": true, "id": "940GZZLURGP", "commonName": "Regent's 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": "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": "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": "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": "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": "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": "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": "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": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_28"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_76"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_81"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_184"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_242"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_581"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5405"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5590"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5592"}], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490G00191A", "modes": ["bus"], "icsCode": "1000191", "stopType": "NaptanOnstreetBusCoachStopCluster", "stationNaptan": "490G00191A", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490G00191A", "commonName": "Regent's Park Station", "placeType": "StopPoint", "additionalProperties": [], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000191A", "indicator": "Stop A", "stopLetter": "A", "modes": ["bus"], "icsCode": "1000191", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00191A", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000191A", "commonName": "Regent's Park Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.523756, "lon": -0.147033}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000191B", "indicator": "Stop B", "stopLetter": "B", "modes": ["bus"], "icsCode": "1000191", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00191A", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000191B", "commonName": "Regent's Park Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.523624, "lon": -0.146606}], "lat": 51.523624, "lon": -0.146606}, {"$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": "9400ZZLURGP", "modes": ["tube"], "icsCode": "1000191", "stopType": "NaptanMetroAccessArea", "stationNaptan": "940GZZLURGP", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "9400ZZLURGP", "commonName": "Regent's 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": "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": "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": "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": "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": "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": "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"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "1"}], "children": [], "lat": 51.523344, "lon": -0.146444}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLURGP1", "modes": ["tube"], "icsCode": "1000191", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLURGP", "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": "940GZZLURGP", "lineIdentifier": ["bakerloo"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["bakerloo"]}], "status": true, "id": "9400ZZLURGP1", "commonName": "Regent's 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": "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": "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": "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": "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": "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": "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": "Escalators", "sourceSystemKey": "StaticObjects", "value": "0"}], "children": [], "lat": 51.523153, "lon": -0.146294}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLURGP2", "modes": ["tube"], "icsCode": "1000191", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLURGP", "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": "940GZZLURGP", "lineIdentifier": ["bakerloo"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["bakerloo"]}], "status": true, "id": "9400ZZLURGP2", "commonName": "Regent'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": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.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": "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": "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": "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": "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": "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": "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": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}], "children": [], "lat": 51.523089, "lon": -0.146267}], "lat": 51.523344, "lon": -0.146444}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "940GZZLURKW", "modes": ["tube"], "icsCode": "1000193", "stopType": "NaptanMetroStation", "stationNaptan": "940GZZLURKW", "hubNaptanCode": "HUBRIC", "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": "940GZZLURKW", "lineIdentifier": ["metropolitan"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["metropolitan"]}], "status": true, "id": "940GZZLURKW", "commonName": "Rickmansworth 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": "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": "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": "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": "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": "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": "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": "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": [{"$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": "9400ZZLURKW", "modes": ["tube"], "icsCode": "1000193", "stopType": "NaptanMetroAccessArea", "stationNaptan": "940GZZLURKW", "hubNaptanCode": "HUBRIC", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "9400ZZLURKW", "commonName": "Rickmansworth 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": "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": "Help Points", "sourceSystemKey": "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": "Rickmansworth Station,London Underground Ltd.,Station Approach,Rickmansworth,Herts,WD3 1QY"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.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": "Payphones", "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": "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": "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"}], "children": [], "lat": 51.640207, "lon": -0.473703}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLURKW1", "modes": ["tube"], "icsCode": "1000193", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLURKW", "hubNaptanCode": "HUBRIC", "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": "940GZZLURKW", "lineIdentifier": ["metropolitan"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["metropolitan"]}], "status": true, "id": "9400ZZLURKW1", "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": "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": "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": "post office style queuing for tickets."}, {"$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": "Rickmansworth Station,London Underground Ltd.,Station Approach,Rickmansworth,Herts,WD3 1QY"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, 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": "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.640198, "lon": -0.47366}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLURKW2", "modes": ["tube"], "icsCode": "1000193", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLURKW", "hubNaptanCode": "HUBRIC", "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": "940GZZLURKW", "lineIdentifier": ["metropolitan"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["metropolitan"]}], "status": true, "id": "9400ZZLURKW2", "commonName": "Rickmansworth 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": "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": "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": "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": "Geo", "key": "Zone", "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": "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": "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": "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.640179, "lon": -0.473574}], "lat": 51.640207, "lon": -0.473703}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "940GZZLURMD", "modes": ["tube"], "icsCode": "1000192", "stopType": "NaptanMetroStation", "stationNaptan": "940GZZLURMD", "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"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "940GZZLURMD", "lineIdentifier": ["district"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["district"]}], "status": true, "id": "940GZZLURMD", "commonName": "Richmond 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": "Opening Time", "key": "MonFriFrom", "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": "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": "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": "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": "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": "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": "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": "Payphones", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$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": "Other Facilities", "sourceSystemKey": "StaticObjects", "value": "none"}, {"$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": "Photo 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": "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": "9400ZZLURMD", "modes": ["tube"], "icsCode": "1000192", "stopType": "NaptanMetroAccessArea", "stationNaptan": "940GZZLURMD", "hubNaptanCode": "HUBRMD", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "9400ZZLURMD", "commonName": "Richmond 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": "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": "Opening Time", "key": "SunTo", "sourceSystemKey": "StaticObjects", "value": "21: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": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "6"}, {"$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": "SatFrom", "sourceSystemKey": "StaticObjects", "value": "06: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": "Help Points", "sourceSystemKey": "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": "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": "Escalators", "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": "Opening Time", "key": "MonFriTo", "sourceSystemKey": "StaticObjects", "value": "21: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": "Opening Time", "key": "SatTo", "sourceSystemKey": "StaticObjects", "value": "21:45"}, {"$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": "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": "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.463237, "lon": -0.301336}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLURMD1", "modes": ["tube"], "icsCode": "1000192", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLURMD", "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"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "940GZZLURMD", "lineIdentifier": ["district"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["district"]}], "status": true, "id": "9400ZZLURMD1", "commonName": "Richmond Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$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": "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": "Opening Time", "key": "SunTo", "sourceSystemKey": "StaticObjects", "value": "21: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": "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": "Opening Time", "key": "SatTo", "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": "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": "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": "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": "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": "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": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "no"}], "children": [], "lat": 51.463254, "lon": -0.301249}], "lat": 51.463237, "lon": -0.301336}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "940GZZLURSG", "modes": ["bus", "tube"], "icsCode": "1000198", "stopType": "NaptanMetroStation", "stationNaptan": "940GZZLURSG", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "e7", "name": "E7", "uri": "/Line/e7", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "696", "name": "696", "uri": "/Line/696", "type": "Line", "crowding": {"$type": "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"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490000198B", "stationAtcoCode": "490G00198B", "lineIdentifier": ["e7", "696"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490000198A", "stationAtcoCode": "490G00198B", "lineIdentifier": ["e7", "696"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "940GZZLURSG", "lineIdentifier": ["central"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "bus", "lineIdentifier": ["e7", "696"]}, {"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["central"]}], "status": true, "id": "940GZZLURSG", "commonName": "Ruislip Gardens 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": "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": "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": "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": "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": "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": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "CarParks_800459"}], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490G00198B", "modes": ["bus"], "icsCode": "1000198", "stopType": "NaptanOnstreetBusCoachStopCluster", "stationNaptan": "490G00198B", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490G00198B", "commonName": "Ruislip Gardens Station", "placeType": "StopPoint", "additionalProperties": [], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000198A", "indicator": "Stop A", "stopLetter": "A", "modes": ["bus"], "icsCode": "1000198", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00198B", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000198A", "commonName": "Ruislip Gardens Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.560268, "lon": -0.410813}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000198B", "indicator": "Stop B", "stopLetter": "B", "modes": ["bus"], "icsCode": "1000198", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00198B", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000198B", "commonName": "Ruislip Gardens Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.560509, "lon": -0.411338}], "lat": 51.560268, "lon": -0.410813}, {"$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": "9400ZZLURSG", "modes": ["tube"], "icsCode": "1000198", "stopType": "NaptanMetroAccessArea", "stationNaptan": "940GZZLURSG", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "9400ZZLURSG", "commonName": "Ruislip Gardens Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$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": "Car park", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$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": "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": "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": "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": "Gates", "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": "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": "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)"}], "children": [], "lat": 51.560736, "lon": -0.41071}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLURSG1", "modes": ["tube"], "icsCode": "1000198", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLURSG", "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": "940GZZLURSG", "lineIdentifier": ["central"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["central"]}], "status": true, "id": "9400ZZLURSG1", "commonName": "Ruislip Gardens 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": "Gates", "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": "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": "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": "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": "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": "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": "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"}], "children": [], "lat": 51.560755, "lon": -0.410839}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLURSG2", "modes": ["tube"], "icsCode": "1000198", "stopType": "NaptanRailAccessArea", "stationNaptan": "940GZZLURSG", "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": "940GZZLURSG", "lineIdentifier": ["central"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["central"]}], "status": true, "id": "9400ZZLURSG2", "commonName": "Ruislip Gardens", "placeType": "StopPoint", "additionalProperties": [{"$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": "Escalators", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$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": "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": "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": "Toilets", "sourceSystemKey": "StaticObjects", "value": "yes (male, female)"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.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": "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": "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"}], "children": [], "lat": 51.560737, "lon": -0.410839}], "lat": 51.560736, "lon": -0.41071}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "940GZZLURSM", "modes": ["tube", "bus"], "icsCode": "1000199", "stopType": "NaptanMetroStation", "stationNaptan": "940GZZLURSM", "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": "696", "name": "696", "uri": "/Line/696", "type": "Line", "crowding": {"$type": "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": "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": "h13", "name": "H13", "uri": "/Line/h13", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "398", "name": "398", "uri": "/Line/398", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "940GZZLURSM", "lineIdentifier": ["piccadilly", "metropolitan"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490000199C", "stationAtcoCode": "490G00199C", "lineIdentifier": ["696", "h13"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490000199D", "stationAtcoCode": "490G00199C", "lineIdentifier": ["696", "h13"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490000199A", "stationAtcoCode": "490G00199S", "lineIdentifier": ["114", "398"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490000199B", "stationAtcoCode": "490G00199S", "lineIdentifier": ["114", "398"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["piccadilly", "metropolitan"]}, {"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "bus", "lineIdentifier": ["696", "114", "h13", "398"]}], "status": true, "id": "940GZZLURSM", "commonName": "Ruislip Manor 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": "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": "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": "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": "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": "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"}], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490G00199C", "modes": ["bus"], "icsCode": "1000199", "stopType": "NaptanOnstreetBusCoachStopCluster", "stationNaptan": "490G00199C", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490G00199C", "commonName": "Ruislip Manor Station", "placeType": "StopPoint", "additionalProperties": [], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000199C", "indicator": "Stop C", "stopLetter": "C", "modes": ["bus"], "icsCode": "1000199", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00199C", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000199C", "commonName": "Ruislip Manor Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.574564, "lon": -0.414066}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000199D", "indicator": "Stop D", "stopLetter": "D", "modes": ["bus"], "icsCode": "1000199", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00199C", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000199D", "commonName": "Ruislip Manor Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.574371, "lon": -0.413698}], "lat": 51.574564, "lon": -0.414066}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490G00199S", "modes": ["bus"], "icsCode": "1000199", "stopType": "NaptanOnstreetBusCoachStopCluster", "stationNaptan": "490G00199S", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490G00199S", "commonName": "Ruislip Manor Station", "placeType": "StopPoint", "additionalProperties": [], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000199A", "indicator": "Stop A", "stopLetter": "A", "modes": ["bus"], "icsCode": "1000199", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00199S", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000199A", "commonName": "Ruislip Manor Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.572844, "lon": -0.412553}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000199B", "indicator": "Stop B", "stopLetter": "B", "modes": ["bus"], "icsCode": "1000199", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00199S", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000199B", "commonName": "Ruislip Manor Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.573166, "lon": -0.41309}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000199S", "indicator": "Stop S", "stopLetter": "S", "modes": ["bus"], "icsCode": "1000199", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00199S", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000199S", "commonName": "Ruislip Manor Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.574233, "lon": -0.412129}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000199T", "indicator": "Stop T", "stopLetter": "T", "modes": ["bus"], "icsCode": "1000199", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00199S", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000199T", "commonName": "Ruislip Manor Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.573953, "lon": -0.412716}], "lat": 51.573166, "lon": -0.41309}, {"$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": "9400ZZLURSM", "modes": ["tube"], "icsCode": "1000199", "stopType": "NaptanMetroAccessArea", "stationNaptan": "940GZZLURSM", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "9400ZZLURSM", "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": "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": "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": "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": "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": "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": "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.573202, "lon": -0.412973}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLURSM1", "modes": ["tube"], "icsCode": "1000199", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLURSM", "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": "940GZZLURSM", "lineIdentifier": ["piccadilly", "metropolitan"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["piccadilly", "metropolitan"]}], "status": true, "id": "9400ZZLURSM1", "commonName": "Ruislip Manor 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": "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": "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": "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": "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": "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": "Toilets", "sourceSystemKey": "StaticObjects", "value": "yes"}], "children": [], "lat": 51.573435, "lon": -0.412215}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLURSM2", "modes": ["tube"], "icsCode": "1000199", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLURSM", "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": "940GZZLURSM", "lineIdentifier": ["metropolitan", "piccadilly"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["metropolitan", "piccadilly"]}], "status": true, "id": "9400ZZLURSM2", "commonName": "Ruislip Manor 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": "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": "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": "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": "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": "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": "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": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "yes"}], "children": [], "lat": 51.573461, "lon": -0.412113}], "lat": 51.573202, "lon": -0.412973}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "940GZZLURSP", "modes": ["bus", "tube"], "icsCode": "1000197", "stopType": "NaptanMetroStation", "stationNaptan": "940GZZLURSP", "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": "e7", "name": "E7", "uri": "/Line/e7", "type": "Line", "crowding": {"$type": "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": "278", "name": "278", "uri": "/Line/278", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "u10", "name": "U10", "uri": "/Line/u10", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "u1", "name": "U1", "uri": "/Line/u1", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "398", "name": "398", "uri": "/Line/398", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "h13", "name": "H13", "uri": "/Line/h13", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "331", "name": "331", "uri": "/Line/331", "type": "Line", "crowding": {"$type": "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", "naptanIdReference": "490000197A", "stationAtcoCode": "490G00197Z2", "lineIdentifier": ["114", "398", "h13"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490000197Z1", "stationAtcoCode": "490G00197Z2", "lineIdentifier": ["114", "e7", "278", "u1", "331"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490000197B", "stationAtcoCode": "490G00197Z2", "lineIdentifier": ["e7", "u10", "u1", "h13", "331"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "940GZZLURSP", "lineIdentifier": ["piccadilly"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "940GZZLURSP", "lineIdentifier": ["metropolitan"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "bus", "lineIdentifier": ["114", "e7", "278", "u10", "u1", "398", "h13", "331"]}, {"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["piccadilly", "metropolitan"]}], "status": true, "id": "940GZZLURSP", "commonName": "Ruislip Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$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": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "CarParks_800460"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, 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": "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"}, {"$type": "Tfl.Api.Presentation.Entities.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": "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": "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": "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": "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"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.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."}], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490G00197Z2", "modes": ["bus"], "icsCode": "1000197", "stopType": "NaptanOnstreetBusCoachStopCluster", "stationNaptan": "490G00197Z2", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490G00197Z2", "commonName": "Ruislip Station", "placeType": "StopPoint", "additionalProperties": [], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000197A", "indicator": "Stop A", "stopLetter": "A", "modes": ["bus"], "icsCode": "1000197", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00197Z2", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000197A", "commonName": "Ruislip Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.572021, "lon": -0.421499}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000197B", "indicator": "Stop B", "stopLetter": "B", "modes": ["bus"], "icsCode": "1000197", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00197Z2", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000197B", "commonName": "Ruislip Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.572229, "lon": -0.421622}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000197R", "indicator": "Stop", "modes": ["bus"], "icsCode": "1000197", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00197Z2", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000197R", "commonName": "Ruislip Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.572352, "lon": -0.421387}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000197Z1", "indicator": "Stop Z1", "stopLetter": "Z1", "modes": ["bus"], "icsCode": "1000197", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00197Z2", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000197Z1", "commonName": "Ruislip Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.572055, "lon": -0.421325}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000197Z2", "indicator": "Stop Z2", "stopLetter": "Z2", "modes": ["bus"], "icsCode": "1000197", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00197Z2", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000197Z2", "commonName": "Ruislip Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.571855, "lon": -0.421217}], "lat": 51.571855, "lon": -0.421217}, {"$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": "9400ZZLURSP", "modes": ["tube"], "icsCode": "1000197", "stopType": "NaptanMetroAccessArea", "stationNaptan": "940GZZLURSP", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "9400ZZLURSP", "commonName": "Ruislip 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": "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": "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": "Help Points", "sourceSystemKey": "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"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, 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": "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": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "0"}], "children": [], "lat": 51.571354, "lon": -0.421898}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLURSP1", "modes": ["tube"], "icsCode": "1000197", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLURSP", "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": "940GZZLURSP", "lineIdentifier": ["piccadilly"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["piccadilly"]}], "status": true, "id": "9400ZZLURSP1", "commonName": "Ruislip 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": "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": "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": "Payphones", "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": "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": "Ruislip Station,London Underground Ltd.,Station Approach,Ruislip,Middx,HA4 8LD"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.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": "post office style queuing for tickets."}], "children": [], "lat": 51.571367, "lon": -0.421537}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLURSP2", "modes": ["tube"], "icsCode": "1000197", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLURSP", "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": "940GZZLURSP", "lineIdentifier": ["piccadilly"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["piccadilly"]}], "status": true, "id": "9400ZZLURSP2", "commonName": "Ruislip 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": "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": "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"}, {"$type": "Tfl.Api.Presentation.Entities.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": "Ruislip Station,London Underground Ltd.,Station Approach,Ruislip,Middx,HA4 8LD"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "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": "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": "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": "6"}], "children": [], "lat": 51.571392, "lon": -0.42142}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLURSP3", "indicator": "eastbound", "modes": ["tube"], "icsCode": "1000197", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLURSP", "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": "940GZZLURSP", "lineIdentifier": ["metropolitan"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["metropolitan"]}], "status": true, "id": "9400ZZLURSP3", "commonName": "Ruislip Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$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": "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": "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": "Help Points", "sourceSystemKey": "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": "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": "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": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}], "children": [], "lat": 51.571341, "lon": -0.421653}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLURSP4", "indicator": "westbound", "modes": ["tube"], "icsCode": "1000197", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLURSP", "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": "940GZZLURSP", "lineIdentifier": ["metropolitan"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["metropolitan"]}], "status": true, "id": "9400ZZLURSP4", "commonName": "Ruislip 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": "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": "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": "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"}, {"$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": "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": "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"}], "children": [], "lat": 51.571366, "lon": -0.421464}], "lat": 51.571354, "lon": -0.421898}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "940GZZLURSQ", "modes": ["tube", "bus"], "icsCode": "1000200", "stopType": "NaptanMetroStation", "stationNaptan": "940GZZLURSQ", "lines": [{"$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": "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": "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": "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": "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": "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", "naptanIdReference": "490000200D", "stationAtcoCode": "490G00200H", "lineIdentifier": ["sl6"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490000200E", "stationAtcoCode": "490G00200H", "lineIdentifier": ["sl6", "14"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490000200H", "stationAtcoCode": "490G00200H", "lineIdentifier": ["91", "68", "n91", "1"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490000200J", "stationAtcoCode": "490G00200H", "lineIdentifier": ["91", "68", "n91", "1"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "940GZZLURSQ", "lineIdentifier": ["piccadilly"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "bus", "lineIdentifier": ["sl6", "91", "68", "n91", "14", "1"]}, {"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["piccadilly"]}], "status": true, "id": "940GZZLURSQ", "commonName": "Russell Square 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": "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": "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": "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": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "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": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$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"}, {"$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": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_11"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_12"}, {"$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_24"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_57"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_77"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_89"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_287"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_796"}, {"$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_4203"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_4878"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_4616"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5545"}, {"$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_5701"}], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490G00200H", "modes": ["bus"], "icsCode": "1000200", "stopType": "NaptanOnstreetBusCoachStopCluster", "stationNaptan": "490G00200H", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490G00200H", "commonName": "Russell Square", "placeType": "StopPoint", "additionalProperties": [], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000200D", "indicator": "Stop D", "stopLetter": "D", "modes": ["bus"], "icsCode": "1000200", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00200H", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000200D", "commonName": "Russell Square", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.520861, "lon": -0.125529}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000200E", "indicator": "Stop E", "stopLetter": "E", "modes": ["bus"], "icsCode": "1000200", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00200H", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000200E", "commonName": ".Russell Square", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.522334, "lon": -0.127126}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000200EB", "indicator": "Stop", "modes": ["bus"], "icsCode": "1000200", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00200H", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000200EB", "commonName": ".Russell Square", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.523479, "lon": -0.126762}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000200H", "indicator": "Stop H", "stopLetter": "H", "modes": ["bus"], "icsCode": "1000200", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00200H", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000200H", "commonName": "Russell Square Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.523212, "lon": -0.126384}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000200J", "indicator": "Stop J", "stopLetter": "J", "modes": ["bus"], "icsCode": "1000200", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00200H", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000200J", "commonName": "Russell Square", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.523355, "lon": -0.126277}], "lat": 51.520861, "lon": -0.125529}, {"$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": "9400ZZLURSQ", "modes": ["tube"], "icsCode": "1000200", "stopType": "NaptanMetroAccessArea", "stationNaptan": "940GZZLURSQ", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "9400ZZLURSQ", "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": "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": "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": "Payphones", "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": "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": "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": "Lifts", "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": "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.523073, "lon": -0.124285}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLURSQ1", "modes": ["tube"], "icsCode": "1000200", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLURSQ", "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": "940GZZLURSQ", "lineIdentifier": ["piccadilly"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["piccadilly"]}], "status": true, "id": "9400ZZLURSQ1", "commonName": "Russell Square 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": "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": "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": "3"}, {"$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": "Help Points", "sourceSystemKey": "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": "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": "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": "Photo 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.523461, "lon": -0.124399}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLURSQ2", "modes": ["tube"], "icsCode": "1000200", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLURSQ", "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": "940GZZLURSQ", "lineIdentifier": ["piccadilly"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["piccadilly"]}], "status": true, "id": "9400ZZLURSQ2", "commonName": "Russell Square Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$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": "Help Points", "sourceSystemKey": "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": "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": "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": "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": "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": "Photo 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": "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.523398, "lon": -0.124358}], "lat": 51.523073, "lon": -0.124285}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "940GZZLURVP", "modes": ["bus", "tube"], "icsCode": "1000188", "stopType": "NaptanMetroStation", "stationNaptan": "940GZZLURVP", "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": "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": "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": "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": "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": "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": "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": "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": "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": "n9", "name": "N9", "uri": "/Line/n9", "type": "Line", "crowding": {"$type": "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": "490011594W", "stationAtcoCode": "490G00188A", "lineIdentifier": ["110", "h91", "190", "267", "n11", "n9"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490011438E", "stationAtcoCode": "490G00188A", "lineIdentifier": ["110", "h91", "190", "267", "n11", "n9"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490000188B", "stationAtcoCode": "490G00188A", "lineIdentifier": ["306", "218", "n266"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490000188A", "stationAtcoCode": "490G00188A", "lineIdentifier": ["306", "218", "n266"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "940GZZLURVP", "lineIdentifier": ["district"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "bus", "lineIdentifier": ["110", "h91", "190", "306", "218", "267", "n11", "n266", "n9"]}, {"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["district"]}], "status": true, "id": "940GZZLURVP", "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": "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": "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": "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": "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": "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": "Help Points", "sourceSystemKey": "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": "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": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_668"}], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490G00188A", "modes": ["bus"], "icsCode": "1000188", "stopType": "NaptanOnstreetBusCoachStopCluster", "stationNaptan": "490G00188A", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490G00188A", "commonName": "Ravenscourt Park Station", "placeType": "StopPoint", "additionalProperties": [], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000188A", "indicator": "Stop A", "stopLetter": "A", "modes": ["bus"], "icsCode": "1000188", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00188A", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000188A", "commonName": "Ravenscourt Park Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.495476, "lon": -0.234561}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000188B", "indicator": "Stop B", "stopLetter": "B", "modes": ["bus"], "icsCode": "1000188", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00188A", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000188B", "commonName": "Ravenscourt Park Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.494918, "lon": -0.234525}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490011438E", "indicator": "Stop E", "stopLetter": "E", "modes": ["bus"], "icsCode": "1000188", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00188A", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490011438E", "commonName": "Ravenscourt Park Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.493267, "lon": -0.237124}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490011594W", "indicator": "Stop D", "stopLetter": "D", "modes": ["bus"], "icsCode": "1000188", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00188A", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490011594W", "commonName": "Ravenscourt Park Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.492896, "lon": -0.235827}], "lat": 51.492896, "lon": -0.235827}, {"$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": "9400ZZLURVP", "modes": ["tube"], "icsCode": "1000188", "stopType": "NaptanMetroAccessArea", "stationNaptan": "940GZZLURVP", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "9400ZZLURVP", "commonName": "Ravenscourt 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": "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": "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": "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"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.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": "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"}], "children": [], "lat": 51.494122, "lon": -0.235881}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLURVP1", "modes": ["tube"], "icsCode": "1000188", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLURVP", "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": "940GZZLURVP", "lineIdentifier": ["district"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["district"]}], "status": true, "id": "9400ZZLURVP1", "commonName": "Ravenscourt Park 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": "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": "Ravenscourt Park Station,London Underground Ltd.,Ravenscourt Rd,London,W6 0UG"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.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": "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": "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": "Help 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": "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.494132, "lon": -0.235924}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLURVP2", "modes": ["tube"], "icsCode": "1000188", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLURVP", "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": "940GZZLURVP", "lineIdentifier": ["district"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["district"]}], "status": true, "id": "9400ZZLURVP2", "commonName": "Ravenscourt 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": "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": "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": "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": "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": "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": "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.49413, "lon": -0.235837}], "lat": 51.494122, "lon": -0.235881}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "940GZZLURVY", "modes": ["tube"], "icsCode": "1000194", "stopType": "NaptanMetroStation", "stationNaptan": "940GZZLURVY", "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": "940GZZLURVY", "lineIdentifier": ["central"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["central"]}], "status": true, "id": "940GZZLURVY", "commonName": "Roding Valley 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": "Help Points", "sourceSystemKey": "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": "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"}, {"$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": "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": "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": "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": "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"}], "children": [{"$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": "9400ZZLURVY", "modes": ["tube"], "icsCode": "1000194", "stopType": "NaptanMetroAccessArea", "stationNaptan": "940GZZLURVY", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "9400ZZLURVY", "commonName": "Roding Valley 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": "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": "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": "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": "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": "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": "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.617199, "lon": 0.043647}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLURVY1", "modes": ["tube"], "icsCode": "1000194", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLURVY", "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": "940GZZLURVY", "lineIdentifier": ["central"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["central"]}], "status": true, "id": "9400ZZLURVY1", "commonName": "Roding Valley 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": "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": "Photo Booths", "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": "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": "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": "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": "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": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}], "children": [], "lat": 51.617367, "lon": 0.043814}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLURVY2", "modes": ["tube"], "icsCode": "1000194", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLURVY", "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": "940GZZLURVY", "lineIdentifier": ["central"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["central"]}], "status": true, "id": "9400ZZLURVY2", "commonName": "Roding Valley 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": "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": "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": "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": "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"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, 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": "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": "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.617383, "lon": 0.043915}], "lat": 51.617199, "lon": 0.043647}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "940GZZLURYL", "modes": ["bus", "tube"], "icsCode": "1000189", "stopType": "NaptanMetroStation", "stationNaptan": "940GZZLURYL", "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": "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": "398", "name": "398", "uri": "/Line/398", "type": "Line", "crowding": {"$type": "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": "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": "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", "stationAtcoCode": "940GZZLURYL", "lineIdentifier": ["metropolitan", "piccadilly"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490000189C", "stationAtcoCode": "490G00189S", "lineIdentifier": ["h9", "398", "h12"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490000189B", "stationAtcoCode": "490G00189S", "lineIdentifier": ["h9", "398", "h12"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490000189A", "stationAtcoCode": "490G00189S", "lineIdentifier": ["398", "h12", "h10"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["metropolitan", "piccadilly"]}, {"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "bus", "lineIdentifier": ["h9", "398", "h12", "h10"]}], "status": true, "id": "940GZZLURYL", "commonName": "Rayners Lane 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": "Help 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": "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": "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"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5693"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "CarParks_800457"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.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": "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": "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": "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": "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"}], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490G00189S", "modes": ["bus"], "icsCode": "1000189", "stopType": "NaptanOnstreetBusCoachStopCluster", "stationNaptan": "490G00189S", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490G00189S", "commonName": "Rayners Lane Station", "placeType": "StopPoint", "additionalProperties": [], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000189A", "indicator": "Stop A", "stopLetter": "A", "modes": ["bus"], "icsCode": "1000189", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00189S", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000189A", "commonName": "Rayners Lane Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.575764, "lon": -0.371004}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000189B", "indicator": "Stop B", "stopLetter": "B", "modes": ["bus"], "icsCode": "1000189", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00189S", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000189B", "commonName": "Rayners Lane", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.576081, "lon": -0.369867}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000189C", "indicator": "Stop C", "stopLetter": "C", "modes": ["bus"], "icsCode": "1000189", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00189S", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000189C", "commonName": "Rayners Lane Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.57452, "lon": -0.370789}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000189S", "indicator": "->S", "stopLetter": "->S", "modes": ["bus"], "icsCode": "1000189", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00189S", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000189S", "commonName": "Rayners Lane Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.575609, "lon": -0.370231}], "lat": 51.575764, "lon": -0.371004}, {"$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": "9400ZZLURYL", "modes": ["tube"], "icsCode": "1000189", "stopType": "NaptanMetroAccessArea", "stationNaptan": "940GZZLURYL", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "9400ZZLURYL", "commonName": "Rayners 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": "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": "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": "Car park", "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": "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": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$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": "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"}], "children": [], "lat": 51.575147, "lon": -0.371127}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLURYL1", "modes": ["tube"], "icsCode": "1000189", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLURYL", "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": "940GZZLURYL", "lineIdentifier": ["piccadilly", "metropolitan"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["piccadilly", "metropolitan"]}], "status": true, "id": "9400ZZLURYL1", "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": "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": "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": "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": "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": "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": "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.575179, "lon": -0.371458}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLURYL2", "modes": ["tube"], "icsCode": "1000189", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLURYL", "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": "940GZZLURYL", "lineIdentifier": ["metropolitan", "piccadilly"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["metropolitan", "piccadilly"]}], "status": true, "id": "9400ZZLURYL2", "commonName": "Rayners Lane 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": "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": "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": "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": "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": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$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": "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"}], "children": [], "lat": 51.575159, "lon": -0.371372}], "lat": 51.575147, "lon": -0.371127}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "940GZZLURYO", "modes": ["tube", "bus"], "icsCode": "1000196", "stopType": "NaptanMetroStation", "stationNaptan": "940GZZLURYO", "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": "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": "36", "name": "36", "uri": "/Line/36", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "940GZZLURYO", "lineIdentifier": ["hammersmith-city", "circle"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490000196C", "stationAtcoCode": "490G00196B", "lineIdentifier": ["18", "n18"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490000196W", "stationAtcoCode": "490G00196B", "lineIdentifier": ["18", "n18", "36"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490000196B", "stationAtcoCode": "490G00196B", "lineIdentifier": ["36"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["hammersmith-city", "circle"]}, {"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "bus", "lineIdentifier": ["18", "n18", "36"]}], "status": true, "id": "940GZZLURYO", "commonName": "Royal 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": "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": "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": "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": "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": "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": "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": "Toilets", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_105"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_165"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_176"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_327"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_568"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_592"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5860"}], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490G00196B", "modes": ["bus"], "icsCode": "1000196", "stopType": "NaptanOnstreetBusCoachStopCluster", "stationNaptan": "490G00196B", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490G00196B", "commonName": "Royal Oak", "placeType": "StopPoint", "additionalProperties": [], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000196B", "indicator": "Stop RH", "stopLetter": "RH", "modes": ["bus"], "icsCode": "1000196", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00196B", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000196B", "commonName": "Royal Oak Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.517989, "lon": -0.188865}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000196C", "indicator": "Stop RC", "stopLetter": "RC", "modes": ["bus"], "icsCode": "1000196", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00196B", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000196C", "commonName": "Royal Oak Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.519931, "lon": -0.189407}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000196W", "indicator": "Stop RD", "stopLetter": "RD", "modes": ["bus"], "icsCode": "1000196", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00196B", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000196W", "commonName": "Royal Oak Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.519635, "lon": -0.189462}], "lat": 51.519635, "lon": -0.189462}, {"$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": "9400ZZLURYO", "modes": ["tube"], "icsCode": "1000196", "stopType": "NaptanMetroAccessArea", "stationNaptan": "940GZZLURYO", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "9400ZZLURYO", "commonName": "Royal Oak 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, 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": "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": "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": "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": "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"}], "children": [], "lat": 51.519113, "lon": -0.188748}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLURYO1", "modes": ["tube"], "icsCode": "1000196", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLURYO", "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": "940GZZLURYO", "lineIdentifier": ["circle", "hammersmith-city"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["circle", "hammersmith-city"]}], "status": true, "id": "9400ZZLURYO1", "commonName": "Royal Oak 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": "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": "1"}, {"$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"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.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": "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": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}], "children": [], "lat": 51.519078, "lon": -0.188259}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLURYO2", "modes": ["tube"], "icsCode": "1000196", "stopType": "NaptanRailAccessArea", "stationNaptan": "940GZZLURYO", "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": "940GZZLURYO", "lineIdentifier": ["circle", "hammersmith-city"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["circle", "hammersmith-city"]}], "status": true, "id": "9400ZZLURYO2", "commonName": "Royal Oak", "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": "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": "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": "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": "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, 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": "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.519078, "lon": -0.18823}], "lat": 51.519113, "lon": -0.188748}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "940GZZLUSBC", "modes": ["tube"], "icsCode": "1000203", "stopType": "NaptanMetroStation", "stationNaptan": "940GZZLUSBC", "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"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "940GZZLUSBC", "lineIdentifier": ["central"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["central"]}], "status": true, "id": "940GZZLUSBC", "commonName": "Shepherd's Bush (Central) 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": "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": "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": "Escalators", "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": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$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": "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": "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": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$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_647"}, {"$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": "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": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.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": "9400ZZLUSBC", "modes": ["tube"], "icsCode": "1000203", "stopType": "NaptanMetroAccessArea", "stationNaptan": "940GZZLUSBC", "hubNaptanCode": "HUBSPB", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "9400ZZLUSBC", "commonName": "Shepherd's Bush (Central) 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": "Toilets", "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": "Facility", "key": "Help Points", "sourceSystemKey": "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": "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": "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": "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": "Other Facilities", "sourceSystemKey": "StaticObjects", "value": "none"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}], "children": [], "lat": 51.504376, "lon": -0.218813}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUSBC1", "modes": ["tube"], "icsCode": "1000203", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUSBC", "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"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "940GZZLUSBC", "lineIdentifier": ["central"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["central"]}], "status": true, "id": "9400ZZLUSBC1", "commonName": "Shepherd's Bush (Central) Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$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": "Photo 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"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.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": "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": "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": "Help Points", "sourceSystemKey": "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": "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.504564, "lon": -0.218129}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUSBC2", "modes": ["tube"], "icsCode": "1000203", "stopType": "NaptanRailAccessArea", "stationNaptan": "940GZZLUSBC", "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"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "940GZZLUSBC", "lineIdentifier": ["central"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["central"]}], "status": true, "id": "9400ZZLUSBC2", "commonName": "Shepherd's Bush (Central Line)", "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": "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": "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": "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"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.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": "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": "Photo 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.504572, "lon": -0.2181}], "lat": 51.504376, "lon": -0.218813}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "940GZZLUSBM", "modes": ["tube"], "icsCode": "1000204", "stopType": "NaptanMetroStation", "stationNaptan": "940GZZLUSBM", "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": "940GZZLUSBM", "lineIdentifier": ["hammersmith-city", "circle"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["hammersmith-city", "circle"]}], "status": true, "id": "940GZZLUSBM", "commonName": "Shepherd's Bush Market 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": "Help Points", "sourceSystemKey": "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": "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": "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": "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": "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": "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": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_566"}, {"$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": "TaxiRank_5931"}], "children": [{"$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": "9400ZZLUSBM", "modes": ["tube"], "icsCode": "1000204", "stopType": "NaptanMetroAccessArea", "stationNaptan": "940GZZLUSBM", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "9400ZZLUSBM", "commonName": "Shepherd's Bush Market 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": "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": "Help Points", "sourceSystemKey": "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": "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": "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": "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": "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": "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"}], "children": [], "lat": 51.505579, "lon": -0.226375}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUSBM1", "modes": ["tube"], "icsCode": "1000204", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUSBM", "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": "940GZZLUSBM", "lineIdentifier": ["circle", "hammersmith-city"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["circle", "hammersmith-city"]}], "status": true, "id": "9400ZZLUSBM1", "commonName": "Shepherd's Bush Market 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": "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": "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": "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": "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": "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": "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"}], "children": [], "lat": 51.505956, "lon": -0.22636}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUSBM2", "modes": ["tube"], "icsCode": "1000204", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUSBM", "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": "940GZZLUSBM", "lineIdentifier": ["hammersmith-city", "circle"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["hammersmith-city", "circle"]}], "status": true, "id": "9400ZZLUSBM2", "commonName": "Shepherd's Bush Market 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": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}, {"$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": "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": "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": "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": "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": "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.505992, "lon": -0.22633}], "lat": 51.505579, "lon": -0.226375}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "940GZZLUSEA", "modes": ["bus", "tube"], "icsCode": "1000208", "stopType": "NaptanMetroStation", "stationNaptan": "940GZZLUSEA", "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": "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": "n65", "name": "N65", "uri": "/Line/n65", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "940GZZLUSEA", "lineIdentifier": ["piccadilly"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490000208B", "stationAtcoCode": "490G00208B", "lineIdentifier": ["65", "n65"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490000208A", "stationAtcoCode": "490G00208B", "lineIdentifier": ["65", "n65"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["piccadilly"]}, {"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "bus", "lineIdentifier": ["65", "n65"]}], "status": true, "id": "940GZZLUSEA", "commonName": "South Ealing 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": "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": "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": "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": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, 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": "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": "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": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5785"}], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490G00208B", "modes": ["bus"], "icsCode": "1000208", "stopType": "NaptanOnstreetBusCoachStopCluster", "stationNaptan": "490G00208B", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490G00208B", "commonName": "South Ealing Station", "placeType": "StopPoint", "additionalProperties": [], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000208A", "indicator": "Stop J", "stopLetter": "J", "modes": ["bus"], "icsCode": "1000208", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00208B", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000208A", "commonName": "South Ealing Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.500884, "lon": -0.306737}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000208B", "indicator": "Stop D", "stopLetter": "D", "modes": ["bus"], "icsCode": "1000208", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00208B", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000208B", "commonName": "South Ealing Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.501098, "lon": -0.306614}], "lat": 51.500884, "lon": -0.306737}, {"$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": "9400ZZLUSEA", "modes": ["tube"], "icsCode": "1000208", "stopType": "NaptanMetroAccessArea", "stationNaptan": "940GZZLUSEA", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "9400ZZLUSEA", "commonName": "South Ealing 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": "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": "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": "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": "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": "Escalators", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$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": "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.501003, "lon": -0.307424}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUSEA1", "modes": ["tube"], "icsCode": "1000208", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUSEA", "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": "940GZZLUSEA", "lineIdentifier": ["piccadilly"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["piccadilly"]}], "status": true, "id": "9400ZZLUSEA1", "commonName": "South Ealing 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": "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": "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": "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": "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": "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": "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": "Help Points", "sourceSystemKey": "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"}], "children": [], "lat": 51.501102, "lon": -0.30742}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUSEA2", "indicator": "westbound", "modes": ["tube"], "icsCode": "1000208", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUSEA", "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": "940GZZLUSEA", "lineIdentifier": ["piccadilly"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["piccadilly"]}], "status": true, "id": "9400ZZLUSEA2", "commonName": "South Ealing 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": "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": "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": "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": "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": "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": "4"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}], "children": [], "lat": 51.501083, "lon": -0.307364}], "lat": 51.501003, "lon": -0.307424}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "940GZZLUSFB", "modes": ["tube", "bus"], "icsCode": "1000218", "stopType": "NaptanMetroStation", "stationNaptan": "940GZZLUSFB", "lines": [{"$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": "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", "naptanIdReference": "490000218P", "stationAtcoCode": "490G00218N", "lineIdentifier": ["237"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490000218N", "stationAtcoCode": "490G00218N", "lineIdentifier": ["237"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "940GZZLUSFB", "lineIdentifier": ["district"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "bus", "lineIdentifier": ["237"]}, {"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["district"]}], "status": true, "id": "940GZZLUSFB", "commonName": "Stamford Brook 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": "Stamford Brook Station,London Underground Ltd.,Goldhawk Rd,London,W6"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.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": "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": "canopies over platform."}, {"$type": "Tfl.Api.Presentation.Entities.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": "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": "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": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490G00218N", "modes": ["bus"], "icsCode": "1000218", "stopType": "NaptanOnstreetBusCoachStopCluster", "stationNaptan": "490G00218N", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490G00218N", "commonName": "Stamford Brook Station", "placeType": "StopPoint", "additionalProperties": [], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000218N", "indicator": "Stop N", "stopLetter": "N", "modes": ["bus"], "icsCode": "1000218", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00218N", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000218N", "commonName": "Stamford Brook Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.494668, "lon": -0.244806}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000218P", "indicator": "Stop P", "stopLetter": "P", "modes": ["bus"], "icsCode": "1000218", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00218N", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000218P", "commonName": "Stamford Brook Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.495307, "lon": -0.244824}], "lat": 51.495307, "lon": -0.244824}, {"$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": "9400ZZLUSFB", "modes": ["tube"], "icsCode": "1000218", "stopType": "NaptanMetroAccessArea", "stationNaptan": "940GZZLUSFB", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "9400ZZLUSFB", "commonName": "Stamford Brook 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": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$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": "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": "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 (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": "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": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "yes"}], "children": [], "lat": 51.494917, "lon": -0.245704}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUSFB1", "modes": ["tube"], "icsCode": "1000218", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUSFB", "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": "940GZZLUSFB", "lineIdentifier": ["district"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["district"]}], "status": true, "id": "9400ZZLUSFB1", "commonName": "Stamford Brook 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": "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": "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": "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"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.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": "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": "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.495001, "lon": -0.245931}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUSFB2", "modes": ["tube"], "icsCode": "1000218", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUSFB", "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": "940GZZLUSFB", "lineIdentifier": ["district"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["district"]}], "status": true, "id": "9400ZZLUSFB2", "commonName": "Stamford Brook 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": "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": "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": "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": "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": "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": "Help Points", "sourceSystemKey": "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."}], "children": [], "lat": 51.495001, "lon": -0.245917}], "lat": 51.494917, "lon": -0.245704}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "940GZZLUSFS", "modes": ["bus", "tube"], "icsCode": "1000209", "stopType": "NaptanMetroStation", "stationNaptan": "940GZZLUSFS", "lines": [{"$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": "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": "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": "39", "name": "39", "uri": "/Line/39", "type": "Line", "crowding": {"$type": "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": "490000209B", "stationAtcoCode": "490G00209E", "lineIdentifier": ["639", "493", "39"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490000209C", "stationAtcoCode": "490G00209E", "lineIdentifier": ["639", "493", "39"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "940GZZLUSFS", "lineIdentifier": ["district"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "bus", "lineIdentifier": ["639", "493", "39"]}, {"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["district"]}], "status": true, "id": "940GZZLUSFS", "commonName": "Southfields 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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5619"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5639"}], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490G00209E", "modes": ["bus"], "stopType": "NaptanOnstreetBusCoachStopCluster", "stationNaptan": "490G00209E", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490G00209E", "commonName": "Southfields Station", "placeType": "StopPoint", "additionalProperties": [], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000209B", "indicator": "Stop U", "stopLetter": "U", "modes": ["bus"], "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00209E", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000209B", "commonName": "Southfields Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.444349, "lon": -0.206976}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000209C", "indicator": "Stop B", "stopLetter": "B", "modes": ["bus"], "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00209E", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000209C", "commonName": "Southfields Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.444005, "lon": -0.207406}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000209E1", "indicator": "Stop", "modes": ["bus"], "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00209E", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000209E1", "commonName": "Southfields Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.444831, "lon": -0.206122}], "lat": 51.444005, "lon": -0.207406}, {"$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": "9400ZZLUSFS", "modes": ["tube"], "icsCode": "1000209", "stopType": "NaptanMetroAccessArea", "stationNaptan": "940GZZLUSFS", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "9400ZZLUSFS", "commonName": "Southfields 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 (part), 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": "Help 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": "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": "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": "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": "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": "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": "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.445073, "lon": -0.206602}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUSFS1", "modes": ["tube"], "icsCode": "1000209", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUSFS", "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": "940GZZLUSFS", "lineIdentifier": ["district"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["district"]}], "status": true, "id": "9400ZZLUSFS1", "commonName": "Southfields 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": "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": "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": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Southfields Station,Wimbledon Park Rd,London,SW18"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.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": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.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": "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": "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": "Toilets", "sourceSystemKey": "StaticObjects", "value": "no"}], "children": [], "lat": 51.4454, "lon": -0.206805}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUSFS2", "modes": ["tube"], "icsCode": "1000209", "stopType": "NaptanRailAccessArea", "stationNaptan": "940GZZLUSFS", "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": "940GZZLUSFS", "lineIdentifier": ["district"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["district"]}], "status": true, "id": "9400ZZLUSFS2", "commonName": "Southfields 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": "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": "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 (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": "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": "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": "Photo 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": "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": "Toilets", "sourceSystemKey": "StaticObjects", "value": "no"}], "children": [], "lat": 51.4454, "lon": -0.206805}], "lat": 51.445073, "lon": -0.206602}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "940GZZLUSGN", "modes": ["bus", "tube"], "icsCode": "1000220", "stopType": "NaptanMetroStation", "stationNaptan": "940GZZLUSGN", "lines": [{"$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": "309", "name": "309", "uri": "/Line/309", "type": "Line", "crowding": {"$type": "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": "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": "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": "n205", "name": "N205", "uri": "/Line/n205", "type": "Line", "crowding": {"$type": "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": "490000220E1", "stationAtcoCode": "490G00220E1", "lineIdentifier": ["n25", "25", "205", "n205"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490000220W2", "stationAtcoCode": "490G00220E1", "lineIdentifier": ["n25", "25", "205", "n205"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490000220N", "stationAtcoCode": "490G00220N", "lineIdentifier": ["309"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490000220S", "stationAtcoCode": "490G00220N", "lineIdentifier": ["309"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "940GZZLUSGN", "lineIdentifier": ["district", "hammersmith-city"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "bus", "lineIdentifier": ["n25", "309", "25", "205", "n205"]}, {"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["district", "hammersmith-city"]}], "status": true, "id": "940GZZLUSGN", "commonName": "Stepney Green 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": "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": "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": "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": "no"}, {"$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": "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": "Gates", "sourceSystemKey": "StaticObjects", "value": "4"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_478"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_491"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_503"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_520"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_561"}], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490G00220E1", "modes": ["bus"], "icsCode": "1000220", "stopType": "NaptanOnstreetBusCoachStopCluster", "stationNaptan": "490G00220E1", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490G00220E1", "commonName": "Stepney Green Station", "placeType": "StopPoint", "additionalProperties": [], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000220E1", "indicator": "Stop B", "stopLetter": "B", "modes": ["bus"], "icsCode": "1000220", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00220E1", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000220E1", "commonName": "Stepney Green Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.521773, "lon": -0.046988}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000220W2", "indicator": "Stop G", "stopLetter": "G", "modes": ["bus"], "icsCode": "1000220", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00220E1", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000220W2", "commonName": "Stepney Green Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.521705, "lon": -0.046631}], "lat": 51.521705, "lon": -0.046631}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490G00220N", "modes": ["bus"], "icsCode": "1000220", "stopType": "NaptanOnstreetBusCoachStopCluster", "stationNaptan": "490G00220N", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490G00220N", "commonName": "Stepney Green Station", "placeType": "StopPoint", "additionalProperties": [], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000220N", "indicator": "Stop J", "stopLetter": "J", "modes": ["bus"], "icsCode": "1000220", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00220N", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000220N", "commonName": "Stepney Green Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.522623, "lon": -0.04724}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000220S", "indicator": "Stop K", "stopLetter": "K", "modes": ["bus"], "icsCode": "1000220", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00220N", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000220S", "commonName": "Stepney Green Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.522661, "lon": -0.046821}], "lat": 51.522661, "lon": -0.046821}, {"$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": "9400ZZLUSGN", "modes": ["tube"], "icsCode": "1000220", "stopType": "NaptanMetroAccessArea", "stationNaptan": "940GZZLUSGN", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "9400ZZLUSGN", "commonName": "Stepney Green 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": "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": "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": "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": "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": "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": "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"}], "children": [], "lat": 51.521858, "lon": -0.046596}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUSGN1", "modes": ["tube"], "icsCode": "1000220", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUSGN", "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": "940GZZLUSGN", "lineIdentifier": ["district", "hammersmith-city"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["district", "hammersmith-city"]}], "status": true, "id": "9400ZZLUSGN1", "commonName": "Stepney Green 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": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.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": "Help Points", "sourceSystemKey": "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": "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": "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": "4"}, {"$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": "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"}], "children": [], "lat": 51.521747, "lon": -0.046917}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUSGN2", "modes": ["tube"], "icsCode": "1000220", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUSGN", "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": "940GZZLUSGN", "lineIdentifier": ["hammersmith-city", "district"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["hammersmith-city", "district"]}], "status": true, "id": "9400ZZLUSGN2", "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": "Help Points", "sourceSystemKey": "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": "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": "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": "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": "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": "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": "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.521772, "lon": -0.046815}], "lat": 51.521858, "lon": -0.046596}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "940GZZLUSGP", "modes": ["tube"], "icsCode": "1000224", "stopType": "NaptanMetroStation", "stationNaptan": "940GZZLUSGP", "hubNaptanCode": "HUBSBP", "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": "940GZZLUSGP", "lineIdentifier": ["bakerloo"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["bakerloo"]}], "status": true, "id": "940GZZLUSGP", "commonName": "Stonebridge 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": "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": "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": "Help Points", "sourceSystemKey": "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": "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": "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"}], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUSGP", "modes": ["tube"], "icsCode": "1000224", "stopType": "NaptanMetroAccessArea", "stationNaptan": "940GZZLUSGP", "hubNaptanCode": "HUBSBP", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "9400ZZLUSGP", "commonName": "Stonebridge Park 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": "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": "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": "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": "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": "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"}], "children": [], "lat": 51.543959, "lon": -0.275892}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUSGP1", "modes": ["tube"], "icsCode": "1000224", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUSGP", "hubNaptanCode": "HUBSBP", "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": "940GZZLUSGP", "lineIdentifier": ["bakerloo"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["bakerloo"]}], "status": true, "id": "9400ZZLUSGP1", "commonName": "Stonebridge 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": "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": "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 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": "Stonebridge Park,London Overground Ltd.,North Circular Road,London,NW10 0RL"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "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": "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"}], "children": [], "lat": 51.543976, "lon": -0.275848}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUSGP2", "indicator": "northbound", "modes": ["tube"], "icsCode": "1000224", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUSGP", "hubNaptanCode": "HUBSBP", "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": "940GZZLUSGP", "lineIdentifier": ["bakerloo"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["bakerloo"]}], "status": true, "id": "9400ZZLUSGP2", "commonName": "Stonebridge Park Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$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": "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": "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": "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": "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": "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"}], "children": [], "lat": 51.543913, "lon": -0.275807}], "lat": 51.543959, "lon": -0.275892}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "940GZZLUSGT", "modes": ["tube", "bus"], "icsCode": "1000210", "stopType": "NaptanMetroStation", "stationNaptan": "940GZZLUSGT", "lines": [{"$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": "w9", "name": "W9", "uri": "/Line/w9", "type": "Line", "crowding": {"$type": "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": "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": "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": "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": "298", "name": "298", "uri": "/Line/298", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "699", "name": "699", "uri": "/Line/699", "type": "Line", "crowding": {"$type": "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": "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": "299", "name": "299", "uri": "/Line/299", "type": "Line", "crowding": {"$type": "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": "125", "name": "125", "uri": "/Line/125", "type": "Line", "crowding": {"$type": "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": "490000210H", "stationAtcoCode": "490G00210G", "lineIdentifier": ["688", "w9", "628", "w6"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490000210G", "stationAtcoCode": "490G00210G", "lineIdentifier": ["688", "382", "298", "699", "299", "125"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490000210B", "stationAtcoCode": "490G00210G", "lineIdentifier": ["w9", "616", "699", "125"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490000210D", "stationAtcoCode": "490G00210G", "lineIdentifier": ["382"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490000210C", "stationAtcoCode": "490G00210G", "lineIdentifier": ["616", "121", "298", "n91", "w6", "299"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490000210F", "stationAtcoCode": "490G00210G", "lineIdentifier": ["121", "n91"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "940GZZLUSGT", "lineIdentifier": ["piccadilly"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "bus", "lineIdentifier": ["688", "w9", "382", "616", "628", "121", "298", "699", "n91", "w6", "299", "125"]}, {"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["piccadilly"]}], "status": true, "id": "940GZZLUSGT", "commonName": "Southgate 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": "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": "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": "Help Points", "sourceSystemKey": "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": "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": "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": "Payphones", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5794"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5780"}], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490G00210G", "modes": ["bus"], "icsCode": "1000210", "stopType": "NaptanOnstreetBusCoachStopCluster", "stationNaptan": "490G00210G", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490G00210G", "commonName": "Southgate Station", "placeType": "StopPoint", "additionalProperties": [], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000210B", "indicator": "Stop B", "stopLetter": "B", "modes": ["bus"], "icsCode": "1000210", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00210G", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000210B", "commonName": "Southgate Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.632153, "lon": -0.127924}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000210C", "indicator": "Stop C", "stopLetter": "C", "modes": ["bus"], "icsCode": "1000210", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00210G", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000210C", "commonName": "Southgate Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.632108, "lon": -0.127897}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000210D", "indicator": "Stop D", "stopLetter": "D", "modes": ["bus"], "icsCode": "1000210", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00210G", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000210D", "commonName": "Southgate Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.632093, "lon": -0.128114}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000210F", "indicator": "Stop F", "stopLetter": "F", "modes": ["bus"], "icsCode": "1000210", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00210G", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000210F", "commonName": "Southgate Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.631989, "lon": -0.127786}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000210G", "indicator": "Stop G", "stopLetter": "G", "modes": ["bus"], "icsCode": "1000210", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00210G", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000210G", "commonName": "Southgate Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.632391, "lon": -0.128188}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000210H", "indicator": "Stop H", "stopLetter": "H", "modes": ["bus"], "icsCode": "1000210", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00210G", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000210H", "commonName": "Southgate Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.632407, "lon": -0.128058}], "lat": 51.632108, "lon": -0.127897}, {"$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": "9400ZZLUSGT", "modes": ["tube"], "icsCode": "1000210", "stopType": "NaptanMetroAccessArea", "stationNaptan": "940GZZLUSGT", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "9400ZZLUSGT", "commonName": "Southgate 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": "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": "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": "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": "Help Points", "sourceSystemKey": "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": "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": "4"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "no"}], "children": [], "lat": 51.632315, "lon": -0.127816}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUSGT1", "modes": ["tube"], "icsCode": "1000210", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUSGT", "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": "940GZZLUSGT", "lineIdentifier": ["piccadilly"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["piccadilly"]}], "status": true, "id": "9400ZZLUSGT1", "commonName": "Southgate 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": "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": "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": "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": "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": "Help Points", "sourceSystemKey": "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": "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": "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": "Gates", "sourceSystemKey": "StaticObjects", "value": "7"}], "children": [], "lat": 51.632179, "lon": -0.12772}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUSGT2", "modes": ["tube"], "icsCode": "1000210", "stopType": "NaptanRailAccessArea", "stationNaptan": "940GZZLUSGT", "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": "940GZZLUSGT", "lineIdentifier": ["piccadilly"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["piccadilly"]}], "status": true, "id": "9400ZZLUSGT2", "commonName": "Southgate", "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": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$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": "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": "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": "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": "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.632188, "lon": -0.127734}], "lat": 51.632315, "lon": -0.127816}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "940GZZLUSHH", "modes": ["tube", "bus"], "icsCode": "1000211", "stopType": "NaptanMetroStation", "stationNaptan": "940GZZLUSHH", "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": "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": "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": "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": "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": "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": "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": "398", "name": "398", "uri": "/Line/398", "type": "Line", "crowding": {"$type": "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": "395", "name": "395", "uri": "/Line/395", "type": "Line", "crowding": {"$type": "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": "sl9", "name": "SL9", "uri": "/Line/sl9", "type": "Line", "crowding": {"$type": "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": "490000211D", "stationAtcoCode": "490G00211G", "lineIdentifier": ["114", "h10", "h12", "398"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490000211F", "stationAtcoCode": "490G00211G", "lineIdentifier": ["114", "n140", "640", "h12", "487", "398", "140", "395", "h9", "sl9"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "940GZZLUSHH", "lineIdentifier": ["piccadilly"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490000211G", "stationAtcoCode": "490G00211G", "lineIdentifier": ["n140", "487", "398", "140", "395", "sl9"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "bus", "lineIdentifier": ["114", "h10", "n140", "640", "h12", "487", "398", "140", "395", "h9", "sl9"]}, {"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["piccadilly"]}], "status": true, "id": "940GZZLUSHH", "commonName": "South Harrow 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": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "5"}, {"$type": "Tfl.Api.Presentation.Entities.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": "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": "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": "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": "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": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5391"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "CarParks_800461"}], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490G00211G", "modes": ["bus"], "icsCode": "1000211", "stopType": "NaptanOnstreetBusCoachStopCluster", "stationNaptan": "490G00211G", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490G00211G", "commonName": "South Harrow Station", "placeType": "StopPoint", "additionalProperties": [], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000211D", "indicator": "Stop D", "stopLetter": "D", "modes": ["bus"], "icsCode": "1000211", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00211G", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000211D", "commonName": "South Harrow Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.564642, "lon": -0.353064}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000211F", "indicator": "Stop F", "stopLetter": "F", "modes": ["bus"], "icsCode": "1000211", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00211G", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000211F", "commonName": "South Harrow Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.564556, "lon": -0.353976}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000211G", "indicator": "Stop G", "stopLetter": "G", "modes": ["bus"], "icsCode": "1000211", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00211G", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000211G", "commonName": "South Harrow Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.564283, "lon": -0.353726}], "lat": 51.564642, "lon": -0.353064}, {"$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": "9400ZZLUSHH", "modes": ["tube"], "icsCode": "1000211", "stopType": "NaptanMetroAccessArea", "stationNaptan": "940GZZLUSHH", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "9400ZZLUSHH", "commonName": "South Harrow 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": "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": "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": "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": "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": "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": "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": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "yes"}], "children": [], "lat": 51.564888, "lon": -0.352492}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUSHH1", "modes": ["tube"], "icsCode": "1000211", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUSHH", "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": "940GZZLUSHH", "lineIdentifier": ["piccadilly"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["piccadilly"]}], "status": true, "id": "9400ZZLUSHH1", "commonName": "South Harrow Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$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": "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": "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": "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": "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": "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": "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": "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.564526, "lon": -0.352332}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUSHH2", "modes": ["tube"], "icsCode": "1000211", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUSHH", "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": "940GZZLUSHH", "lineIdentifier": ["piccadilly"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["piccadilly"]}], "status": true, "id": "9400ZZLUSHH2", "commonName": "South Harrow 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": "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"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.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": "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": "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": "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": "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.564471, "lon": -0.352277}], "lat": 51.564888, "lon": -0.352492}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "940GZZLUSJP", "modes": ["bus", "tube"], "icsCode": "1000221", "stopType": "NaptanMetroStation", "stationNaptan": "940GZZLUSJP", "lines": [{"$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": "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": "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": "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": "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": "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": "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"}, {"$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": "n44", "name": "N44", "uri": "/Line/n44", "type": "Line", "crowding": {"$type": "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": "490010260SC", "stationAtcoCode": "490G00221V", "lineIdentifier": ["n26", "148", "26", "24", "n136", "11", "n11", "n44"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490010260SD", "stationAtcoCode": "490G00221V", "lineIdentifier": ["n26", "148", "26", "24", "n136", "11", "n11", "n44"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "940GZZLUSJP", "lineIdentifier": ["district", "circle"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "bus", "lineIdentifier": ["n26", "148", "26", "24", "n136", "11", "n11", "n44"]}, {"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["district", "circle"]}], "status": true, "id": "940GZZLUSJP", "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": "Car park", "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": "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": "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": "Facility", "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": "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": "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": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_108"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_118"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_359"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_360"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_646"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_762"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_799"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_4670"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5078"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_3998"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_4884"}], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490G00221V", "modes": ["bus"], "icsCode": "1000221", "stopType": "NaptanOnstreetBusCoachStopCluster", "stationNaptan": "490G00221V", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490G00221V", "commonName": "St James's Park Station", "placeType": "StopPoint", "additionalProperties": [], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490010260SC", "indicator": "Stop SC", "stopLetter": "SC", "modes": ["bus"], "icsCode": "1000221", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00221V", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490010260SC", "commonName": "St James's Park Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.497725, "lon": -0.13469}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490010260SD", "indicator": "Stop SD", "stopLetter": "SD", "modes": ["bus"], "icsCode": "1000221", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00221V", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490010260SD", "commonName": "St James's Park Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.497583, "lon": -0.134797}], "lat": 51.497583, "lon": -0.134797}, {"$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": "9400ZZLUSJP", "modes": ["tube"], "icsCode": "1000221", "stopType": "NaptanMetroAccessArea", "stationNaptan": "940GZZLUSJP", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "9400ZZLUSJP", "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": "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": "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": "Bridge", "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": "Payphones", "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": "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": "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": "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": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}], "children": [], "lat": 51.499544, "lon": -0.133608}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUSJP1", "modes": ["tube"], "icsCode": "1000221", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUSJP", "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": "940GZZLUSJP", "lineIdentifier": ["district", "circle"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["district", "circle"]}], "status": true, "id": "9400ZZLUSJP1", "commonName": "St. James's Park 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": "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": "St. James's Park,London Underground Ltd.,Petty France,London,SW1H 0BD"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.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": "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": "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": "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": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "2"}], "children": [], "lat": 51.499377, "lon": -0.134421}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUSJP2", "modes": ["tube"], "icsCode": "1000221", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUSJP", "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": "940GZZLUSJP", "lineIdentifier": ["circle", "district"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["circle", "district"]}], "status": true, "id": "9400ZZLUSJP2", "commonName": "St. James's 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": "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": "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": "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": "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": "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": "Other Facilities", "sourceSystemKey": "StaticObjects", "value": "none"}, {"$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": "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.499343, "lon": -0.134509}], "lat": 51.499544, "lon": -0.133608}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "940GZZLUSJW", "modes": ["bus", "tube"], "icsCode": "1000222", "stopType": "NaptanMetroStation", "stationNaptan": "940GZZLUSJW", "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": "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": "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": "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": "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", "naptanIdReference": "490000222B", "stationAtcoCode": "490G00222A", "lineIdentifier": ["46", "13", "113", "187", "n113"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490005318C", "stationAtcoCode": "490G00222A", "lineIdentifier": ["46", "13", "113", "187", "n113"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "940GZZLUSJW", "lineIdentifier": ["jubilee"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "bus", "lineIdentifier": ["46", "13", "113", "187", "n113"]}, {"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["jubilee"]}], "status": true, "id": "940GZZLUSJW", "commonName": "St. John's Wood 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": "Euro Cash Machines", "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": "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": "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": "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": "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": "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": "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": "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_7"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_110"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_312"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_590"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_4489"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_4699"}], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490G00222A", "modes": ["bus"], "icsCode": "1000222", "stopType": "NaptanOnstreetBusCoachStopCluster", "stationNaptan": "490G00222A", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490G00222A", "commonName": "St John's Wood Station", "placeType": "StopPoint", "additionalProperties": [], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000222B", "indicator": "Stop B", "stopLetter": "B", "modes": ["bus"], "icsCode": "1000222", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00222A", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000222B", "commonName": "St John's Wood Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.533714, "lon": -0.17362}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490005318C", "indicator": "Stop C", "stopLetter": "C", "modes": ["bus"], "icsCode": "1000222", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00222A", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490005318C", "commonName": "St John's Wood Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.534094, "lon": -0.173764}], "lat": 51.534094, "lon": -0.173764}, {"$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": "9400ZZLUSJW", "modes": ["tube"], "icsCode": "1000222", "stopType": "NaptanMetroAccessArea", "stationNaptan": "940GZZLUSJW", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "9400ZZLUSJW", "commonName": "St. John's Wood Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$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": "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": "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": "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": "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": "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": "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.534521, "lon": -0.173948}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUSJW1", "modes": ["tube"], "icsCode": "1000222", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUSJW", "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": "940GZZLUSJW", "lineIdentifier": ["jubilee"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["jubilee"]}], "status": true, "id": "9400ZZLUSJW1", "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": "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": "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": "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": "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": "Lifts", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$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": "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.534761, "lon": -0.174876}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUSJW2", "modes": ["tube"], "icsCode": "1000222", "stopType": "NaptanRailAccessArea", "stationNaptan": "940GZZLUSJW", "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": "940GZZLUSJW", "lineIdentifier": ["jubilee"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["jubilee"]}], "status": true, "id": "9400ZZLUSJW2", "commonName": "St John's Wood 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": "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": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$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": "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": "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": "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": "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": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "2"}], "children": [], "lat": 51.534778, "lon": -0.174861}], "lat": 51.534521, "lon": -0.173948}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "940GZZLUSKS", "modes": ["tube", "bus"], "icsCode": "1000212", "stopType": "NaptanMetroStation", "stationNaptan": "940GZZLUSKS", "lines": [{"$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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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", "naptanIdReference": "490000212S", "stationAtcoCode": "490G00212G", "lineIdentifier": ["70", "c1", "430", "74", "n74", "n97"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490000212E", "stationAtcoCode": "490G00212G", "lineIdentifier": ["c1", "414", "360", "430", "74", "n74", "n97", "14"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490000212S1", "stationAtcoCode": "490G00212G", "lineIdentifier": ["414", "360", "14"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490000212E1", "stationAtcoCode": "490G00212G", "lineIdentifier": ["345", "49"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "940GZZLUSKS", "lineIdentifier": ["piccadilly"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "940GZZLUSKS", "lineIdentifier": ["circle", "district"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "bus", "lineIdentifier": ["70", "c1", "414", "345", "360", "430", "74", "n74", "n97", "14", "49"]}, {"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["piccadilly", "circle", "district"]}], "status": true, "id": "940GZZLUSKS", "commonName": "South Kensington 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": "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": "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": "Photo 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": "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": "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": "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": "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": "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": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_150"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_163"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_172"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_187"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_231"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_356"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_378"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_432"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_482"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_781"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5322"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5319"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5111"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_4645"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5577"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5757"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5805"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5817"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5706"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5666"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5790"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_4034"}], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490G00212G", "modes": ["bus"], "icsCode": "1000212", "stopType": "NaptanOnstreetBusCoachStopCluster", "stationNaptan": "490G00212G", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490G00212G", "commonName": "South Kensington Station", "placeType": "StopPoint", "additionalProperties": [], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000212E", "indicator": "Stop E", "stopLetter": "E", "modes": ["bus"], "icsCode": "1000212", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00212G", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000212E", "commonName": "South Kensington Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.494463, "lon": -0.174815}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000212E1", "indicator": "Stop D", "stopLetter": "D", "modes": ["bus"], "icsCode": "1000212", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00212G", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000212E1", "commonName": "South Kensington Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.494167, "lon": -0.175461}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000212S", "indicator": "Stop S", "stopLetter": "S", "modes": ["bus"], "icsCode": "1000212", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00212G", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000212S", "commonName": "South Kensington Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.494504, "lon": -0.174583}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000212S1", "indicator": "Stop T", "stopLetter": "T", "modes": ["bus"], "icsCode": "1000212", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00212G", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000212S1", "commonName": "South Kensington Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.494423, "lon": -0.174586}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000212Z", "indicator": "Stop", "modes": ["bus"], "icsCode": "1000212", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00212G", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000212Z", "commonName": "South Kensington Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.496001, "lon": -0.171973}], "lat": 51.494167, "lon": -0.175461}, {"$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": "9400ZZLUSKS", "modes": ["tube"], "icsCode": "1000212", "stopType": "NaptanMetroAccessArea", "stationNaptan": "940GZZLUSKS", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "9400ZZLUSKS", "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": "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": "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": "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": "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": "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": "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": "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": "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.494094, "lon": -0.174138}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUSKS1", "modes": ["tube"], "icsCode": "1000212", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUSKS", "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": "940GZZLUSKS", "lineIdentifier": ["circle", "district"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["circle", "district"]}], "status": true, "id": "9400ZZLUSKS1", "commonName": "South Kensington 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": "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": "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": "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 (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": "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": "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": "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": "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": "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"}], "children": [], "lat": 51.494104, "lon": -0.173057}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUSKS2", "modes": ["tube"], "icsCode": "1000212", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUSKS", "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": "940GZZLUSKS", "lineIdentifier": ["piccadilly"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["piccadilly"]}], "status": true, "id": "9400ZZLUSKS2", "commonName": "South Kensington 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": "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": "Euro Cash Machines", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$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": "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": "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": "Ticket Halls", "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": "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": "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": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "no"}], "children": [], "lat": 51.494019, "lon": -0.173363}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUSKS3", "modes": ["tube"], "icsCode": "1000212", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUSKS", "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": "940GZZLUSKS", "lineIdentifier": ["piccadilly"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["piccadilly"]}], "status": true, "id": "9400ZZLUSKS3", "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": "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": "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": "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": "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": "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": "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": "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.494018, "lon": -0.173262}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUSKS4", "indicator": "westbound", "modes": ["tube"], "icsCode": "1000212", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUSKS", "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": "940GZZLUSKS", "lineIdentifier": ["circle", "district"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["circle", "district"]}], "status": true, "id": "9400ZZLUSKS4", "commonName": "South Kensington 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": "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": "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": "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": "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": "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": "Escalators", "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": "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": "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": "Bridge", "sourceSystemKey": "StaticObjects", "value": "no"}], "children": [], "lat": 51.494102, "lon": -0.172913}], "lat": 51.494094, "lon": -0.174138}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "940GZZLUSKT", "modes": ["tube"], "icsCode": "1000213", "stopType": "NaptanMetroStation", "stationNaptan": "940GZZLUSKT", "hubNaptanCode": "HUBSOK", "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": "940GZZLUSKT", "lineIdentifier": ["bakerloo"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["bakerloo"]}], "status": true, "id": "940GZZLUSKT", "commonName": "South Kenton 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": "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": "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 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": "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": "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": "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": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUSKT", "modes": ["tube"], "icsCode": "1000213", "stopType": "NaptanMetroAccessArea", "stationNaptan": "940GZZLUSKT", "hubNaptanCode": "HUBSOK", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "9400ZZLUSKT", "commonName": "South Kenton 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": "Escalators", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$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": "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": "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": "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": "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": "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"}], "children": [], "lat": 51.570232, "lon": -0.308433}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUSKT1", "modes": ["tube"], "icsCode": "1000213", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUSKT", "hubNaptanCode": "HUBSOK", "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": "940GZZLUSKT", "lineIdentifier": ["bakerloo"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["bakerloo"]}], "status": true, "id": "9400ZZLUSKT1", "commonName": "South Kenton Underground 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": "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": "Photo 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": "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": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 601 4867"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.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": "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": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}], "children": [], "lat": 51.570341, "lon": -0.308559}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUSKT2", "modes": ["tube"], "icsCode": "1000213", "stopType": "NaptanRailAccessArea", "stationNaptan": "940GZZLUSKT", "hubNaptanCode": "HUBSOK", "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": "940GZZLUSKT", "lineIdentifier": ["bakerloo"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["bakerloo"]}], "status": true, "id": "9400ZZLUSKT2", "commonName": "South Kenton 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": "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": "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": "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": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$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": "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": "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"}], "children": [], "lat": 51.570359, "lon": -0.308572}], "lat": 51.570232, "lon": -0.308433}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "940GZZLUSKW", "modes": ["bus", "tube"], "icsCode": "1000223", "stopType": "NaptanMetroStation", "stationNaptan": "940GZZLUSKW", "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": "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": "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": "155", "name": "155", "uri": "/Line/155", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "940GZZLUSKW", "lineIdentifier": ["northern"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490000223G", "stationAtcoCode": "490G00223G", "lineIdentifier": ["345", "n155", "155"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "940GZZLUSKW", "lineIdentifier": ["victoria"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["northern", "victoria"]}, {"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "bus", "lineIdentifier": ["345", "n155", "155"]}], "status": true, "id": "940GZZLUSKW", "commonName": "Stockwell 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": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$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": "Help 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": "Stockwell Station,London Underground Ltd.,Clapham Rd,London,SW9 9AE"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.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, 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": "ServiceInfo", "key": "Night", "sourceSystemKey": "TransXchangeETL", "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": "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": "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": "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"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_630"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_669"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_772"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_814"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_830"}], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490G00223G", "modes": ["bus"], "icsCode": "1000223", "stopType": "NaptanOnstreetBusCoachStopCluster", "stationNaptan": "490G00223G", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490G00223G", "commonName": "Stockwell Station", "placeType": "StopPoint", "additionalProperties": [], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000223G", "indicator": "Stop G", "stopLetter": "G", "modes": ["bus"], "icsCode": "1000223", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00223G", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000223G", "commonName": "Stockwell Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.471699, "lon": -0.123297}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000223Z", "indicator": "Stop", "modes": ["bus"], "icsCode": "1000223", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00223G", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000223Z", "commonName": "Stockwell Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.47124, "lon": -0.123877}], "lat": 51.471699, "lon": -0.123297}, {"$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": "9400ZZLUSKW", "modes": ["tube"], "icsCode": "1000223", "stopType": "NaptanMetroAccessArea", "stationNaptan": "940GZZLUSKW", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "9400ZZLUSKW", "commonName": "Stockwell 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": "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": "Toilets", "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": "Facility", "key": "Help Points", "sourceSystemKey": "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": "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": "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": "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": "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.472184, "lon": -0.122644}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUSKW1", "modes": ["tube"], "icsCode": "1000223", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUSKW", "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": "940GZZLUSKW", "lineIdentifier": ["northern"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["northern"]}], "status": true, "id": "9400ZZLUSKW1", "commonName": "Stockwell Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$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": "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": "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": "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": "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": "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": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "7"}], "children": [], "lat": 51.471829, "lon": -0.122917}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUSKW2", "modes": ["tube"], "icsCode": "1000223", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUSKW", "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": "940GZZLUSKW", "lineIdentifier": ["northern"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["northern"]}], "status": true, "id": "9400ZZLUSKW2", "commonName": "Stockwell 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": "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": "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": "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": "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": "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": "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": "Stockwell Station,London Underground Ltd.,Clapham Rd,London,SW9 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"}], "children": [], "lat": 51.471811, "lon": -0.122933}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUSKW3", "modes": ["tube"], "icsCode": "1000223", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUSKW", "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": "940GZZLUSKW", "lineIdentifier": ["victoria"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["victoria"]}], "status": true, "id": "9400ZZLUSKW3", "commonName": "Stockwell 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": "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": "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": "Payphones", "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": "Help Points", "sourceSystemKey": "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": "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": "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": "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.471935, "lon": -0.122783}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUSKW4", "modes": ["tube"], "icsCode": "1000223", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUSKW", "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": "940GZZLUSKW", "lineIdentifier": ["victoria"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["victoria"]}], "status": true, "id": "9400ZZLUSKW4", "commonName": "Stockwell 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": "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": "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": "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": "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": "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": "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.4719, "lon": -0.122828}], "lat": 51.472184, "lon": -0.122644}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "940GZZLUSNB", "modes": ["tube", "bus"], "icsCode": "1000207", "stopType": "NaptanMetroStation", "stationNaptan": "940GZZLUSNB", "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": "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": "940GZZLUSNB", "lineIdentifier": ["central"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490000207B", "stationAtcoCode": "490G00207B", "lineIdentifier": ["w14"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490000207A", "stationAtcoCode": "490G00207B", "lineIdentifier": ["w14"]}], "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": "bus", "lineIdentifier": ["w14"]}], "status": true, "id": "940GZZLUSNB", "commonName": "Snaresbrook 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": "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": "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": "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."}, {"$type": "Tfl.Api.Presentation.Entities.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": "Snaresbrook Station,London Underground Ltd.,Station Approach,London,E11 1QE"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.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": "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": "490G00207B", "modes": ["bus"], "icsCode": "1000207", "stopType": "NaptanOnstreetBusCoachStopCluster", "stationNaptan": "490G00207B", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490G00207B", "commonName": "Snaresbrook Station", "placeType": "StopPoint", "additionalProperties": [], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000207A", "indicator": "Stop SJ", "stopLetter": "SJ", "modes": ["bus"], "icsCode": "1000207", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00207B", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000207A", "commonName": "Snaresbrook Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.581208, "lon": 0.021363}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000207B", "indicator": "Stop SC", "stopLetter": "SC", "modes": ["bus"], "icsCode": "1000207", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00207B", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000207B", "commonName": "Snaresbrook Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.580963, "lon": 0.021987}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000207E", "indicator": "Stop", "modes": ["bus"], "icsCode": "1000207", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00207B", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000207E", "commonName": "Snaresbrook Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.580532, "lon": 0.022516}], "lat": 51.580532, "lon": 0.022516}, {"$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": "9400ZZLUSNB", "modes": ["tube"], "icsCode": "1000207", "stopType": "NaptanMetroAccessArea", "stationNaptan": "940GZZLUSNB", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "9400ZZLUSNB", "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": "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": "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": "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": "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": "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": "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"}], "children": [], "lat": 51.580678, "lon": 0.02144}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUSNB1", "modes": ["tube"], "icsCode": "1000207", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUSNB", "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": "940GZZLUSNB", "lineIdentifier": ["central"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["central"]}], "status": true, "id": "9400ZZLUSNB1", "commonName": "Snaresbrook 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": "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": "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": "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": "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": "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": "Bridge", "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.580705, "lon": 0.021441}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUSNB2", "modes": ["tube"], "icsCode": "1000207", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUSNB", "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": "940GZZLUSNB", "lineIdentifier": ["central"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["central"]}], "status": true, "id": "9400ZZLUSNB2", "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": "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": "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": "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"}, {"$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": "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": "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": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}], "children": [], "lat": 51.580651, "lon": 0.02141}], "lat": 51.580678, "lon": 0.02144}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "940GZZLUSPU", "modes": ["bus", "tube"], "icsCode": "1000225", "stopType": "NaptanMetroStation", "stationNaptan": "940GZZLUSPU", "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": "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": "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": "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": "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": "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": "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": "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": "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": "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"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490000225W", "stationAtcoCode": "490G00225S", "lineIdentifier": ["133", "4", "100", "25", "n8", "n25"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490000225T", "stationAtcoCode": "490G00225S", "lineIdentifier": ["133", "25", "56", "8", "n8", "n242", "n25"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490000225U", "stationAtcoCode": "490G00225S", "lineIdentifier": ["4", "n551"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "49000225SY", "stationAtcoCode": "490G00225S", "lineIdentifier": ["25", "8", "n242", "n25"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "940GZZLUSPU", "lineIdentifier": ["central"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "bus", "lineIdentifier": ["133", "4", "n551", "100", "25", "56", "8", "n8", "n242", "n25"]}, {"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["central"]}], "status": true, "id": "940GZZLUSPU", "commonName": "St. Paul's Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5908"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5921"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5911"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5929"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5897"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5899"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5918"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5922"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5906"}, {"$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": "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": "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": "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": "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": "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": "Help Points", "sourceSystemKey": "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": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$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": "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_48"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_71"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_101"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_120"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_126"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_127"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_136"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_203"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_393"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_427"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_557"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5926"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5907"}], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490G00225S", "modes": ["bus"], "icsCode": "1000225", "stopType": "NaptanOnstreetBusCoachStopCluster", "stationNaptan": "490G00225S", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490G00225S", "commonName": "St Paul's Station", "placeType": "StopPoint", "additionalProperties": [], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000225T", "indicator": "Stop SQ", "stopLetter": "SQ", "modes": ["bus"], "icsCode": "1000225", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00225S", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000225T", "commonName": "St Paul's Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.515255, "lon": -0.098505}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000225U", "indicator": "Stop SP", "stopLetter": "SP", "modes": ["bus"], "icsCode": "1000225", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00225S", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000225U", "commonName": "St Paul's Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.515195, "lon": -0.098147}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000225W", "indicator": "Stop SW", "stopLetter": "SW", "modes": ["bus"], "icsCode": "1000225", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00225S", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000225W", "commonName": "St Paul's Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.51544, "lon": -0.097157}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "49000225SY", "indicator": "Stop SY", "stopLetter": "SY", "modes": ["bus"], "icsCode": "1000225", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00225S", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "49000225SY", "commonName": "St Paul's Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.514426, "lon": -0.095628}], "lat": 51.514426, "lon": -0.095628}, {"$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": "9400ZZLUSPU", "modes": ["tube"], "icsCode": "1000225", "stopType": "NaptanMetroAccessArea", "stationNaptan": "940GZZLUSPU", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "9400ZZLUSPU", "commonName": "St. Paul's 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": "Bridge", "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": "Lifts", "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": "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"}, {"$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": "Photo 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": "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": "St. Paul's,London Underground Ltd.,Cheapside,London,EC1"}], "children": [], "lat": 51.514936, "lon": -0.097567}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUSPU1", "modes": ["tube"], "icsCode": "1000225", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUSPU", "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": "940GZZLUSPU", "lineIdentifier": ["central"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["central"]}], "status": true, "id": "9400ZZLUSPU1", "commonName": "St. Paul's 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": "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": "Photo 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": "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": "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": "Facility", "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": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "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": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}], "children": [], "lat": 51.515173, "lon": -0.098321}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUSPU2", "modes": ["tube"], "icsCode": "1000225", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUSPU", "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": "940GZZLUSPU", "lineIdentifier": ["central"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["central"]}], "status": true, "id": "9400ZZLUSPU2", "commonName": "St. Paul's 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": "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": "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": "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": "Payphones", "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": "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": "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": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}], "children": [], "lat": 51.515192, "lon": -0.098392}], "lat": 51.514936, "lon": -0.097567}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "940GZZLUSRP", "modes": ["tube"], "icsCode": "1000214", "stopType": "NaptanMetroStation", "stationNaptan": "940GZZLUSRP", "hubNaptanCode": "HUBSRU", "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": "940GZZLUSRP", "lineIdentifier": ["central"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["central"]}], "status": true, "id": "940GZZLUSRP", "commonName": "South Ruislip 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": "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": "South Ruislip Station,London Underground Ltd.,Station Approach,Ruislip,Middx,HA4 6TP"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, 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": "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, 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": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_3569"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "CarParks_800462"}], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUSRP", "modes": ["tube"], "icsCode": "1000214", "stopType": "NaptanMetroAccessArea", "stationNaptan": "940GZZLUSRP", "hubNaptanCode": "HUBSRU", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "9400ZZLUSRP", "commonName": "South Ruislip 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": "South Ruislip Station,London Underground Ltd.,Station Approach,Ruislip,Middx,HA4 6TP"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "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": "Toilets", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$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": "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": "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": "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"}], "children": [], "lat": 51.556853, "lon": -0.398915}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUSRP1", "modes": ["tube"], "icsCode": "1000214", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUSRP", "hubNaptanCode": "HUBSRU", "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": "940GZZLUSRP", "lineIdentifier": ["central"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["central"]}], "status": true, "id": "9400ZZLUSRP1", "commonName": "South Ruislip 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": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "South Ruislip Station,London Underground Ltd.,Station Approach,Ruislip,Middx,HA4 6TP"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo 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": "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": "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": "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": "Gates", "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.556967, "lon": -0.399373}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUSRP2", "modes": ["tube"], "icsCode": "1000214", "stopType": "NaptanRailAccessArea", "stationNaptan": "940GZZLUSRP", "hubNaptanCode": "HUBSRU", "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": "940GZZLUSRP", "lineIdentifier": ["central"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["central"]}], "status": true, "id": "9400ZZLUSRP2", "commonName": "South Ruislip 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": "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": "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": "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": "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": "South Ruislip Station,London Underground Ltd.,Station Approach,Ruislip,Middx,HA4 6TP"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.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": "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.556958, "lon": -0.399373}], "lat": 51.556853, "lon": -0.398915}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "940GZZLUSSQ", "modes": ["bus", "tube"], "icsCode": "1000206", "stopType": "NaptanMetroStation", "stationNaptan": "940GZZLUSSQ", "lines": [{"$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": "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": "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": "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": "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"}, {"$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": "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": "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": "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": "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": "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": "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": "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": "c1", "name": "C1", "uri": "/Line/c1", "type": "Line", "crowding": {"$type": "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": "490015175C", "stationAtcoCode": "490G00206H", "lineIdentifier": ["n19", "452", "137", "n22", "19", "n137", "22", "c1"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490000206D", "stationAtcoCode": "490G00206H", "lineIdentifier": ["n19", "452", "137", "n22", "19", "n137", "22", "c1"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490000206H", "stationAtcoCode": "490G00206H", "lineIdentifier": ["n19", "n22", "319", "19", "22", "c1"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490000206K", "stationAtcoCode": "490G00206H", "lineIdentifier": ["11", "452", "137", "n11", "211", "n137", "360"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "940GZZLUSSQ", "lineIdentifier": ["district", "circle"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490000206N", "stationAtcoCode": "490G00206H", "lineIdentifier": ["360"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "bus", "lineIdentifier": ["n19", "11", "452", "137", "n11", "n22", "211", "319", "19", "n137", "360", "22", "c1"]}, {"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["district", "circle"]}], "status": true, "id": "940GZZLUSSQ", "commonName": "Sloane 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": "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": "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": "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": "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": "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"}, {"$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": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_5"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_211"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_259"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_280"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_395"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_423"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5465"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5512"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5091"}], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490G00206H", "modes": ["bus"], "icsCode": "1000206", "stopType": "NaptanOnstreetBusCoachStopCluster", "stationNaptan": "490G00206H", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490G00206H", "commonName": "Sloane Square Station", "placeType": "StopPoint", "additionalProperties": [], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000206D", "indicator": "Stop D", "stopLetter": "D", "modes": ["bus"], "icsCode": "1000206", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00206H", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000206D", "commonName": "Sloane Square Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.493262, "lon": -0.156092}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000206H", "indicator": "Stop H", "stopLetter": "H", "modes": ["bus"], "icsCode": "1000206", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00206H", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000206H", "commonName": "Sloane Square Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.49226, "lon": -0.15704}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000206K", "indicator": "Stop K", "stopLetter": "K", "modes": ["bus"], "icsCode": "1000206", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00206H", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000206K", "commonName": "Sloane Square Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.491449, "lon": -0.157491}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000206N", "indicator": "Stop B", "stopLetter": "B", "modes": ["bus"], "icsCode": "1000206", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00206H", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000206N", "commonName": "Sloane Square Station / Symon Street", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.492669, "lon": -0.158421}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000206S", "indicator": "->S", "stopLetter": "->S", "modes": ["bus"], "icsCode": "1000206", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00206H", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000206S", "commonName": "Sloane Square Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.492696, "lon": -0.156706}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490015175C", "indicator": "Stop C", "stopLetter": "C", "modes": ["bus"], "icsCode": "1000206", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00206H", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490015175C", "commonName": "Sloane Square", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.493092, "lon": -0.157871}], "lat": 51.492669, "lon": -0.158421}, {"$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": "9400ZZLUSSQ", "modes": ["tube"], "icsCode": "1000206", "stopType": "NaptanMetroAccessArea", "stationNaptan": "940GZZLUSSQ", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "9400ZZLUSSQ", "commonName": "Sloane Square 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": "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": "Sloane Square Station,London Underground Ltd.,Sloane Square,London,SW1W 8BB"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.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": "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": "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": "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": "Gates", "sourceSystemKey": "StaticObjects", "value": "7"}], "children": [], "lat": 51.49227, "lon": -0.156377}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUSSQ1", "modes": ["tube"], "icsCode": "1000206", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUSSQ", "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": "940GZZLUSSQ", "lineIdentifier": ["circle", "district"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["circle", "district"]}], "status": true, "id": "9400ZZLUSSQ1", "commonName": "Sloane Square 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, 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": "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": "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": "Sloane Square Station,London Underground Ltd.,Sloane Square,London,SW1W 8BB"}, {"$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": "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": "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.492338, "lon": -0.156144}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUSSQ2", "modes": ["tube"], "icsCode": "1000206", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUSSQ", "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": "940GZZLUSSQ", "lineIdentifier": ["district", "circle"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["district", "circle"]}], "status": true, "id": "9400ZZLUSSQ2", "commonName": "Sloane Square 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": "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": "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": "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": "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": "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": "Sloane Square Station,London Underground Ltd.,Sloane Square,London,SW1W 8BB"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "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": "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": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}], "children": [], "lat": 51.492309, "lon": -0.15603}], "lat": 51.49227, "lon": -0.156377}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "940GZZLUSTD", "modes": ["tube"], "icsCode": "1000226", "stopType": "NaptanMetroStation", "stationNaptan": "940GZZLUSTD", "hubNaptanCode": "HUBSRA", "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": "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": "940GZZLUSTD", "lineIdentifier": ["jubilee"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "940GZZLUSTD", "lineIdentifier": ["central"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["jubilee", "central"]}], "status": true, "id": "940GZZLUSTD", "commonName": "Stratford 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": "Cash Machines", "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": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$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": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$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": "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": "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": "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": "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": "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": "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": "9400ZZLUSTD", "modes": ["tube"], "icsCode": "1000226", "stopType": "NaptanMetroAccessArea", "stationNaptan": "940GZZLUSTD", "hubNaptanCode": "HUBSRA", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "9400ZZLUSTD", "commonName": "Stratford Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$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": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$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": "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": "Lifts", "sourceSystemKey": "StaticObjects", "value": "5"}, {"$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": "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": "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": "Photo 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"}], "children": [], "lat": 51.541806, "lon": -0.003458}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUSTD1", "indicator": "Platform 3A", "stopLetter": "3A", "modes": ["tube"], "icsCode": "1000226", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUSTD", "hubNaptanCode": "HUBSRA", "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": "940GZZLUSTD", "lineIdentifier": ["central"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["central"]}], "status": true, "id": "9400ZZLUSTD1", "commonName": "Stratford 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"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.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": "Lifts", "sourceSystemKey": "StaticObjects", "value": "5"}, {"$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": "Cash Machines", "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": "Euro Cash Machines", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$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": "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"}, {"$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": "Help 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.542326, "lon": -0.002311}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUSTD2", "indicator": "Platform 3", "stopLetter": "3", "modes": ["tube"], "icsCode": "1000226", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUSTD", "hubNaptanCode": "HUBSRA", "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": "940GZZLUSTD", "lineIdentifier": ["central"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["central"]}], "status": true, "id": "9400ZZLUSTD2", "commonName": "Stratford 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": "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": "Payphones", "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": "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": "Stratford Station BR Station St,London,E15 1DE"}, {"$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": "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": "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"}], "children": [], "lat": 51.542328, "lon": -0.002426}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUSTD3", "indicator": "Platform 6", "stopLetter": "6", "modes": ["tube"], "icsCode": "1000226", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUSTD", "hubNaptanCode": "HUBSRA", "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": "940GZZLUSTD", "lineIdentifier": ["jubilee"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["jubilee"]}], "status": true, "id": "9400ZZLUSTD3", "commonName": "Stratford 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": "Boarding Ramps", "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": "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": "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": "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": "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": "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": "Cash Machines", "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": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Stratford Station BR Station St,London,E15 1DE"}], "children": [], "lat": 51.54233, "lon": -0.002541}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUSTD4", "indicator": "Platform 13", "stopLetter": "13", "modes": ["tube"], "icsCode": "1000226", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUSTD", "hubNaptanCode": "HUBSRA", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "9400ZZLUSTD4", "commonName": "Stratford Underground 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": "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": "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": "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": "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": "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": "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": "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"}, {"$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"}], "children": [], "lat": 51.540512, "lon": -0.0035}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUSTD5", "indicator": "Platform 14", "stopLetter": "14", "modes": ["tube"], "icsCode": "1000226", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUSTD", "hubNaptanCode": "HUBSRA", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "9400ZZLUSTD5", "commonName": "Stratford Underground 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": "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": "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": "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": "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": "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": "Help Points", "sourceSystemKey": "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": "Ticket Halls", "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": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "4"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "5"}], "children": [], "lat": 51.54051, "lon": -0.003356}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUSTD6", "indicator": "Platform 15", "stopLetter": "15", "modes": ["tube"], "icsCode": "1000226", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUSTD", "hubNaptanCode": "HUBSRA", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "9400ZZLUSTD6", "commonName": "Stratford Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$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": "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": "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": "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": "23"}, {"$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": "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": "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": "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.540507, "lon": -0.003212}], "lat": 51.541806, "lon": -0.003458}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "940GZZLUSTM", "modes": ["bus", "tube"], "icsCode": "1000219", "stopType": "NaptanMetroStation", "stationNaptan": "940GZZLUSTM", "lines": [{"$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": "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": "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": "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": "142", "name": "142", "uri": "/Line/142", "type": "Line", "crowding": {"$type": "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": "490000219N", "stationAtcoCode": "490G00219A", "lineIdentifier": ["h12", "n98"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490000219A", "stationAtcoCode": "490G00219A", "lineIdentifier": ["h12", "324", "n98", "142"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "940GZZLUSTM", "lineIdentifier": ["jubilee"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490000219B", "stationAtcoCode": "490G00219A", "lineIdentifier": ["324", "142"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "bus", "lineIdentifier": ["h12", "324", "n98", "142"]}, {"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["jubilee"]}], "status": true, "id": "940GZZLUSTM", "commonName": "Stanmore 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": "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": "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": "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": "Toilets", "sourceSystemKey": "StaticObjects", "value": "yes (male, female, disabled/baby-changing facilities)"}, {"$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": "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": "Stanmore Station,London Underground Ltd.,London Rd,Stanmore,Middx,HA7 4PD"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.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": "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": "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"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "CarParks_800492"}], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490G00219A", "modes": ["bus"], "icsCode": "1000219", "stopType": "NaptanOnstreetBusCoachStopCluster", "stationNaptan": "490G00219A", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490G00219A", "commonName": "Stanmore Station", "placeType": "StopPoint", "additionalProperties": [], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000219A", "indicator": "Stop A", "stopLetter": "A", "modes": ["bus"], "icsCode": "1000219", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00219A", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000219A", "commonName": "Stanmore Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.619665, "lon": -0.303793}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000219B", "indicator": "Stop B", "stopLetter": "B", "modes": ["bus"], "icsCode": "1000219", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00219A", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000219B", "commonName": "Stanmore Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.619916, "lon": -0.303711}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000219N", "indicator": "Stop", "modes": ["bus"], "icsCode": "1000219", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00219A", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000219N", "commonName": "Stanmore Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.619725, "lon": -0.302982}], "lat": 51.619725, "lon": -0.302982}, {"$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": "9400ZZLUSTM", "modes": ["tube"], "icsCode": "1000219", "stopType": "NaptanMetroAccessArea", "stationNaptan": "940GZZLUSTM", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "9400ZZLUSTM", "commonName": "Stanmore 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": "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": "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": "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": "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": "Help Points", "sourceSystemKey": "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": "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": "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, disabled/baby-changing facilities)"}], "children": [], "lat": 51.619839, "lon": -0.303266}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUSTM1", "modes": ["tube"], "icsCode": "1000219", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUSTM", "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": "940GZZLUSTM", "lineIdentifier": ["jubilee"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["jubilee"]}], "status": true, "id": "9400ZZLUSTM1", "commonName": "Stanmore 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": "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": "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": "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, 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": "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": "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": "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": "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.619175, "lon": -0.302742}], "lat": 51.619839, "lon": -0.303266}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "940GZZLUSUH", "modes": ["tube"], "icsCode": "1000227", "stopType": "NaptanMetroStation", "stationNaptan": "940GZZLUSUH", "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": "940GZZLUSUH", "lineIdentifier": ["piccadilly"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["piccadilly"]}], "status": true, "id": "940GZZLUSUH", "commonName": "Sudbury Hill 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": "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": "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": "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": "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": "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": "Address", "sourceSystemKey": "StaticObjects", "value": "Sudbury Hill Underground Station,London Underground Ltd.,Greenford Rd,Harrow,Middx,HA1 3RA"}], "children": [{"$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": "9400ZZLUSUH", "modes": ["tube"], "icsCode": "1000227", "stopType": "NaptanMetroAccessArea", "stationNaptan": "940GZZLUSUH", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "9400ZZLUSUH", "commonName": "Sudbury 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": "Help Points", "sourceSystemKey": "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"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.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": "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": "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": "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": "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"}], "children": [], "lat": 51.556946, "lon": -0.336435}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUSUH1", "modes": ["tube"], "icsCode": "1000227", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUSUH", "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": "940GZZLUSUH", "lineIdentifier": ["piccadilly"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["piccadilly"]}], "status": true, "id": "9400ZZLUSUH1", "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": "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": "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": "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": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$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"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.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": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}], "children": [], "lat": 51.557043, "lon": -0.336951}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUSUH2", "modes": ["tube"], "icsCode": "1000227", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUSUH", "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": "940GZZLUSUH", "lineIdentifier": ["piccadilly"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["piccadilly"]}], "status": true, "id": "9400ZZLUSUH2", "commonName": "Sudbury Hill Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$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": "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": "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": "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": "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": "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.557005, "lon": -0.336837}], "lat": 51.556946, "lon": -0.336435}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "940GZZLUSUT", "modes": ["tube", "bus"], "icsCode": "1000228", "stopType": "NaptanMetroStation", "stationNaptan": "940GZZLUSUT", "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": "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": "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": "487", "name": "487", "uri": "/Line/487", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "940GZZLUSUT", "lineIdentifier": ["piccadilly"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490000228D", "stationAtcoCode": "490G00228E", "lineIdentifier": ["h17", "487"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490000228E", "stationAtcoCode": "490G00228E", "lineIdentifier": ["h17", "487"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490000228B", "stationAtcoCode": "490G002288", "lineIdentifier": ["204"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490000228A", "stationAtcoCode": "490G002288", "lineIdentifier": ["204"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["piccadilly"]}, {"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "bus", "lineIdentifier": ["h17", "204", "487"]}], "status": true, "id": "940GZZLUSUT", "commonName": "Sudbury 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": "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": "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": "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": "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": "Facility", "key": "Help Points", "sourceSystemKey": "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": "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": "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"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_4431"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "CarParks_800463"}], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490G002288", "modes": ["bus"], "icsCode": "1000228", "stopType": "NaptanOnstreetBusCoachStopCluster", "stationNaptan": "490G002288", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490G002288", "commonName": "Sudbury Town Station", "placeType": "StopPoint", "additionalProperties": [], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000228A", "indicator": "Stop A", "stopLetter": "A", "modes": ["bus"], "icsCode": "1000228", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G002288", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000228A", "commonName": "Sudbury Town Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.550958, "lon": -0.31522}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000228B", "indicator": "Stop B", "stopLetter": "B", "modes": ["bus"], "icsCode": "1000228", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G002288", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000228B", "commonName": "Sudbury Town Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.551053, "lon": -0.315563}], "lat": 51.550958, "lon": -0.31522}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490G00228E", "modes": ["bus"], "icsCode": "1000228", "stopType": "NaptanOnstreetBusCoachStopCluster", "stationNaptan": "490G00228E", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490G00228E", "commonName": "Sudbury Town Station", "placeType": "StopPoint", "additionalProperties": [], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000228D", "indicator": "Stop D", "stopLetter": "D", "modes": ["bus"], "icsCode": "1000228", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00228E", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000228D", "commonName": "Sudbury Town Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.549683, "lon": -0.317243}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000228E", "indicator": "Stop E", "stopLetter": "E", "modes": ["bus"], "icsCode": "1000228", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00228E", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000228E", "commonName": "Sudbury Town Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.549557, "lon": -0.317233}], "lat": 51.549683, "lon": -0.317243}, {"$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": "9400ZZLUSUT", "modes": ["tube"], "icsCode": "1000228", "stopType": "NaptanMetroAccessArea", "stationNaptan": "940GZZLUSUT", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "9400ZZLUSUT", "commonName": "Sudbury 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": "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": "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": "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": "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": "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"}], "children": [], "lat": 51.550815, "lon": -0.315745}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUSUT1", "modes": ["tube"], "icsCode": "1000228", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUSUT", "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": "940GZZLUSUT", "lineIdentifier": ["piccadilly"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["piccadilly"]}], "status": true, "id": "9400ZZLUSUT1", "commonName": "Sudbury 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": "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": "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": "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": "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": "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": "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": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "4"}], "children": [], "lat": 51.550797, "lon": -0.315774}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUSUT2", "modes": ["tube"], "icsCode": "1000228", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUSUT", "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": "940GZZLUSUT", "lineIdentifier": ["piccadilly"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["piccadilly"]}], "status": true, "id": "9400ZZLUSUT2", "commonName": "Sudbury Town 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": "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": "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": "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": "Help Points", "sourceSystemKey": "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": "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.55076, "lon": -0.315689}], "lat": 51.550815, "lon": -0.315745}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "940GZZLUSVS", "modes": ["tube"], "icsCode": "1000201", "stopType": "NaptanMetroStation", "stationNaptan": "940GZZLUSVS", "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"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "940GZZLUSVS", "lineIdentifier": ["victoria"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["victoria"]}], "status": true, "id": "940GZZLUSVS", "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": "ServiceInfo", "key": "Night", "sourceSystemKey": "TransXchangeETL", "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": "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": "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": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "13"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.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": "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": "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": "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": [{"$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": "9400ZZLUSVS", "modes": ["tube"], "icsCode": "1000201", "stopType": "NaptanMetroAccessArea", "stationNaptan": "940GZZLUSVS", "hubNaptanCode": "HUBSVS", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "9400ZZLUSVS", "commonName": "Seven Sisters 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": "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": "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": "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": "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": "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": "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"}], "children": [], "lat": 51.58333, "lon": -0.072584}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUSVS1", "modes": ["tube"], "icsCode": "1000201", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUSVS", "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"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "940GZZLUSVS", "lineIdentifier": ["victoria"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["victoria"]}], "status": true, "id": "9400ZZLUSVS1", "commonName": "Seven Sisters 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": "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": "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": "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": "Help 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": "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": "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": "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": "Toilets", "sourceSystemKey": "StaticObjects", "value": "no"}], "children": [], "lat": 51.582433, "lon": -0.073863}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUSVS2", "modes": ["tube"], "icsCode": "1000201", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUSVS", "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"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "940GZZLUSVS", "lineIdentifier": ["victoria"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["victoria"]}], "status": true, "id": "9400ZZLUSVS2", "commonName": "Seven Sisters 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": "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": "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": "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": "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": "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": "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": "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": "13"}], "children": [], "lat": 51.58239, "lon": -0.07398}], "lat": 51.58333, "lon": -0.072584}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "940GZZLUSWC", "modes": ["tube", "bus"], "icsCode": "1000230", "stopType": "NaptanMetroStation", "stationNaptan": "940GZZLUSWC", "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": "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"}, {"$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": "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": "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": "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": "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": "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": "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": "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": "n28", "name": "N28", "uri": "/Line/n28", "type": "Line", "crowding": {"$type": "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": "490000230D", "stationAtcoCode": "490G00230N", "lineIdentifier": ["13", "113", "n113", "187", "268", "46", "603"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490015162L", "stationAtcoCode": "490G00230N", "lineIdentifier": ["13", "113", "n113", "187", "268", "n31", "c11", "31", "n28"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "940GZZLUSWC", "lineIdentifier": ["jubilee"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490000230E", "stationAtcoCode": "490G00230N", "lineIdentifier": ["n31", "c11", "31", "n28"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490015162M", "stationAtcoCode": "490G00230N", "lineIdentifier": ["n31", "46"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490000230N", "stationAtcoCode": "490G00230N", "lineIdentifier": ["603"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "bus", "lineIdentifier": ["13", "113", "n113", "187", "268", "n31", "46", "c11", "31", "603", "n28"]}, {"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["jubilee"]}], "status": true, "id": "940GZZLUSWC", "commonName": "Swiss Cottage 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": "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": "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": "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": "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": "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": "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": "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_5895"}, {"$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": "490G00230N", "modes": ["bus"], "icsCode": "1000230", "stopType": "NaptanOnstreetBusCoachStopCluster", "stationNaptan": "490G00230N", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490G00230N", "commonName": "Swiss Cottage Station", "placeType": "StopPoint", "additionalProperties": [], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000230D", "indicator": "Stop D", "stopLetter": "D", "modes": ["bus"], "icsCode": "1000230", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00230N", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000230D", "commonName": "Swiss Cottage Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.542894, "lon": -0.174075}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000230E", "indicator": "Stop E", "stopLetter": "E", "modes": ["bus"], "icsCode": "1000230", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00230N", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000230E", "commonName": "Swiss Cottage Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.54251, "lon": -0.173715}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000230N", "indicator": "Stop N", "stopLetter": "N", "modes": ["bus"], "icsCode": "1000230", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00230N", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000230N", "commonName": "Swiss Cottage Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.542408, "lon": -0.175262}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490015162L", "indicator": "Stop L", "stopLetter": "L", "modes": ["bus"], "icsCode": "1000230", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00230N", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490015162L", "commonName": "Swiss Cottage Stn / Finchley Road", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.543146, "lon": -0.175247}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490015162M", "indicator": "Stop M", "stopLetter": "M", "modes": ["bus"], "icsCode": "1000230", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00230N", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490015162M", "commonName": "Swiss Cottage Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.542293, "lon": -0.175325}], "lat": 51.542894, "lon": -0.174075}, {"$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": "9400ZZLUSWC", "modes": ["tube"], "icsCode": "1000230", "stopType": "NaptanMetroAccessArea", "stationNaptan": "940GZZLUSWC", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "9400ZZLUSWC", "commonName": "Swiss Cottage 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": "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"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo 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": "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": "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": "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"}, {"$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": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "2"}], "children": [], "lat": 51.543681, "lon": -0.174894}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUSWC1", "modes": ["tube"], "icsCode": "1000230", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUSWC", "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": "940GZZLUSWC", "lineIdentifier": ["jubilee"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["jubilee"]}], "status": true, "id": "9400ZZLUSWC1", "commonName": "Swiss Cottage 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": "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": "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": "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": "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": "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": "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"}], "children": [], "lat": 51.543606, "lon": -0.175229}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUSWC2", "modes": ["tube"], "icsCode": "1000230", "stopType": "NaptanRailAccessArea", "stationNaptan": "940GZZLUSWC", "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": "940GZZLUSWC", "lineIdentifier": ["jubilee"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["jubilee"]}], "status": true, "id": "9400ZZLUSWC2", "commonName": "Swiss Cottage 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": "Bridge", "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": "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": "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": "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": "Payphones", "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": "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": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}], "children": [], "lat": 51.543597, "lon": -0.175244}], "lat": 51.543681, "lon": -0.174894}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "940GZZLUSWF", "modes": ["tube", "bus"], "icsCode": "1000217", "stopType": "NaptanMetroStation", "stationNaptan": "940GZZLUSWF", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "549", "name": "549", "uri": "/Line/549", "type": "Line", "crowding": {"$type": "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": "w13", "name": "W13", "uri": "/Line/w13", "type": "Line", "crowding": {"$type": "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": "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": "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": "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", "naptanIdReference": "490000217E", "stationAtcoCode": "490G00217D", "lineIdentifier": ["549", "w13", "179", "n55"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490015122C", "stationAtcoCode": "490G15122C", "lineIdentifier": ["549", "w13", "w12", "179", "n55", "w14"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490000217D", "stationAtcoCode": "490G00217D", "lineIdentifier": ["w12", "w14"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "940GZZLUSWF", "lineIdentifier": ["central"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "bus", "lineIdentifier": ["549", "w12", "w13", "179", "n55", "w14"]}, {"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["central"]}], "status": true, "id": "940GZZLUSWF", "commonName": "South Woodford 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": "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": "Help Points", "sourceSystemKey": "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": "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": "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": "Payphones", "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": "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": "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": "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": "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"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5680"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5795"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "CarParks_800489"}], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490G00217D", "modes": ["bus"], "icsCode": "1000217", "stopType": "NaptanOnstreetBusCoachStopCluster", "stationNaptan": "490G00217D", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490G00217D", "commonName": "South Woodford Station", "placeType": "StopPoint", "additionalProperties": [], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000217D", "indicator": "Stop D", "stopLetter": "D", "modes": ["bus"], "icsCode": "1000217", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00217D", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000217D", "commonName": "South Woodford Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.592008, "lon": 0.027631}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000217E", "indicator": "Stop E", "stopLetter": "E", "modes": ["bus"], "icsCode": "1000217", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00217D", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000217E", "commonName": "South Woodford Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.591591, "lon": 0.027815}], "lat": 51.592008, "lon": 0.027631}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490G15122C", "modes": ["bus"], "icsCode": "1000217", "stopType": "NaptanOnstreetBusCoachStopCluster", "stationNaptan": "490G15122C", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490G15122C", "commonName": "South Woodford Station", "placeType": "StopPoint", "additionalProperties": [], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490015122C", "indicator": "Stop C", "stopLetter": "C", "modes": ["bus"], "icsCode": "1000217", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G15122C", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490015122C", "commonName": "South Woodford Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.59131, "lon": 0.028986}], "lat": 51.59131, "lon": 0.028986}, {"$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": "9400ZZLUSWF", "modes": ["tube"], "icsCode": "1000217", "stopType": "NaptanMetroAccessArea", "stationNaptan": "940GZZLUSWF", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "9400ZZLUSWF", "commonName": "South Woodford 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": "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 Eastbound 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": "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": "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": "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": "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": "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": "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.591907, "lon": 0.027338}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUSWF1", "modes": ["tube"], "icsCode": "1000217", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUSWF", "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": "940GZZLUSWF", "lineIdentifier": ["central"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["central"]}], "status": true, "id": "9400ZZLUSWF1", "commonName": "South Woodford Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$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": "Boarding Ramps", "sourceSystemKey": "StaticObjects", "value": "yes Eastbound 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": "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": "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": "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": "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": "Toilets", "sourceSystemKey": "StaticObjects", "value": "yes (male, female)"}, {"$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": "2"}], "children": [], "lat": 51.591753, "lon": 0.02736}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUSWF2", "modes": ["tube"], "icsCode": "1000217", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUSWF", "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": "940GZZLUSWF", "lineIdentifier": ["central"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["central"]}], "status": true, "id": "9400ZZLUSWF2", "commonName": "South Woodford 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": "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": "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": "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": "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": "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": "South Woodford Station,London Underground Ltd.,George Lane,London,E18 1JJ"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, 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": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "7"}], "children": [], "lat": 51.591682, "lon": 0.027342}], "lat": 51.591907, "lon": 0.027338}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "940GZZLUSWK", "modes": ["tube", "bus"], "icsCode": "1000215", "stopType": "NaptanMetroStation", "stationNaptan": "940GZZLUSWK", "lines": [{"$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": "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": "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": "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": "n63", "name": "N63", "uri": "/Line/n63", "type": "Line", "crowding": {"$type": "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": "490013323SB", "stationAtcoCode": "490G13323SA", "lineIdentifier": ["40", "n89", "63", "n63"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490013323SA", "stationAtcoCode": "490G13323SA", "lineIdentifier": ["40", "n89", "63", "n63"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "940GZZLUSWK", "lineIdentifier": ["jubilee"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "bus", "lineIdentifier": ["40", "n89", "63", "n63"]}, {"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["jubilee"]}], "status": true, "id": "940GZZLUSWK", "commonName": "Southwark 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": "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": "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": "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": "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": "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": "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": "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": "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"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_80"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_193"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_195"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_196"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_197"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_230"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_240"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_272"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_421"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_645"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_792"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_839"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5865"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5940"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5949"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5822"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5814"}], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490G13323SA", "modes": ["bus"], "icsCode": "1000215", "stopType": "NaptanOnstreetBusCoachStopCluster", "stationNaptan": "490G13323SA", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490G13323SA", "commonName": "Southwark Station", "placeType": "StopPoint", "additionalProperties": [], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490013323SA", "indicator": "Stop SA", "stopLetter": "SA", "modes": ["bus"], "icsCode": "1000215", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G13323SA", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490013323SA", "commonName": "Southwark Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.504464, "lon": -0.104617}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490013323SB", "indicator": "Stop SB", "stopLetter": "SB", "modes": ["bus"], "icsCode": "1000215", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G13323SA", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490013323SB", "commonName": "Southwark Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.503256, "lon": -0.104451}], "lat": 51.503256, "lon": -0.104451}, {"$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": "9400ZZLUSWK", "modes": ["tube"], "icsCode": "1000215", "stopType": "NaptanMetroAccessArea", "stationNaptan": "940GZZLUSWK", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "9400ZZLUSWK", "commonName": "Southwark 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": "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": "Help Points", "sourceSystemKey": "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": "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": "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": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}, {"$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": "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": "Gates", "sourceSystemKey": "StaticObjects", "value": "19"}], "children": [], "lat": 51.503976, "lon": -0.10494}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUSWK1", "indicator": "Eastbound", "modes": ["tube"], "icsCode": "1000215", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUSWK", "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": "940GZZLUSWK", "lineIdentifier": ["jubilee"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["jubilee"]}], "status": true, "id": "9400ZZLUSWK1", "commonName": "Southwark 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": "Escalators", "sourceSystemKey": "StaticObjects", "value": "8"}, {"$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": "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": "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": "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": "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": "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": "Help Points", "sourceSystemKey": "StaticObjects", "value": "0 on platforms, 0 in ticket halls, 0 elsewhere"}], "children": [], "lat": 51.504302, "lon": -0.105632}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUSWK2", "indicator": "Westbound", "modes": ["tube"], "icsCode": "1000215", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUSWK", "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": "940GZZLUSWK", "lineIdentifier": ["jubilee"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["jubilee"]}], "status": true, "id": "9400ZZLUSWK2", "commonName": "Southwark Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$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": "Help Points", "sourceSystemKey": "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": "Toilets", "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": "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": "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": "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": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "2"}], "children": [], "lat": 51.50427, "lon": -0.105331}], "lat": 51.50427, "lon": -0.105331}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "940GZZLUSWN", "modes": ["tube", "bus"], "icsCode": "1000216", "stopType": "NaptanMetroStation", "stationNaptan": "940GZZLUSWN", "lines": [{"$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": "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": "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": "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": "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": "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": "n155", "name": "N155", "uri": "/Line/n155", "type": "Line", "crowding": {"$type": "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": "490000216C", "stationAtcoCode": "490G00216C", "lineIdentifier": ["57", "219", "655", "152", "131", "n155"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490000216D", "stationAtcoCode": "490G00216C", "lineIdentifier": ["57", "219", "655", "152", "131", "n155"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "940GZZLUSWN", "lineIdentifier": ["northern"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "bus", "lineIdentifier": ["57", "219", "655", "152", "131", "n155"]}, {"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["northern"]}], "status": true, "id": "940GZZLUSWN", "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": "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": "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+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"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.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": "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": "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": "ServiceInfo", "key": "Night", "sourceSystemKey": "TransXchangeETL", "value": "yes"}], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490G00216C", "modes": ["bus"], "icsCode": "1000216", "stopType": "NaptanOnstreetBusCoachStopCluster", "stationNaptan": "490G00216C", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490G00216C", "commonName": "South Wimbledon Station", "placeType": "StopPoint", "additionalProperties": [], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000216C", "indicator": "Stop SF", "stopLetter": "SF", "modes": ["bus"], "icsCode": "1000216", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00216C", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000216C", "commonName": "South Wimbledon Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.41557, "lon": -0.191578}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000216D", "indicator": "Stop SZ", "stopLetter": "SZ", "modes": ["bus"], "icsCode": "1000216", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00216C", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000216D", "commonName": "South Wimbledon Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.415715, "lon": -0.190508}], "lat": 51.41557, "lon": -0.191578}, {"$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": "9400ZZLUSWN", "modes": ["tube"], "icsCode": "1000216", "stopType": "NaptanMetroAccessArea", "stationNaptan": "940GZZLUSWN", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "9400ZZLUSWN", "commonName": "South Wimbledon 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": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$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"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.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": "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": "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": "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"}], "children": [], "lat": 51.415309, "lon": -0.192005}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUSWN1", "modes": ["tube"], "icsCode": "1000216", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUSWN", "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": "940GZZLUSWN", "lineIdentifier": ["northern"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["northern"]}], "status": true, "id": "9400ZZLUSWN1", "commonName": "South Wimbledon 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": "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": "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": "South Wimbledon Station,London Underground Ltd.,High St,London,SW19 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": "Help Points", "sourceSystemKey": "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": "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": "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"}], "children": [], "lat": 51.415078, "lon": -0.19282}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUSWN2", "modes": ["tube"], "icsCode": "1000216", "stopType": "NaptanRailAccessArea", "stationNaptan": "940GZZLUSWN", "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": "940GZZLUSWN", "lineIdentifier": ["northern"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["northern"]}], "status": true, "id": "9400ZZLUSWN2", "commonName": "South Wimbledon Station", "placeType": "StopPoint", "additionalProperties": [{"$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"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.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": "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": "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": "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": "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": "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.41525, "lon": -0.192856}], "lat": 51.415309, "lon": -0.192005}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "940GZZLUTAW", "modes": ["bus", "tube"], "icsCode": "1000237", "stopType": "NaptanMetroStation", "stationNaptan": "940GZZLUTAW", "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": "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"}, {"$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": "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"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490000237B", "stationAtcoCode": "490G00237B", "lineIdentifier": ["251", "688", "326", "605"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490000237A", "stationAtcoCode": "490G00237B", "lineIdentifier": ["251", "688", "628", "326", "605"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "940GZZLUTAW", "lineIdentifier": ["northern"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "bus", "lineIdentifier": ["251", "688", "628", "326", "605"]}, {"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["northern"]}], "status": true, "id": "940GZZLUTAW", "commonName": "Totteridge & Whetstone 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": "Help Points", "sourceSystemKey": "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": "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"}, {"$type": "Tfl.Api.Presentation.Entities.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": "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": "Totteridge & Whetstone Station,London Underground Ltd.,Totteridge Lane,London,N20 9QP"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.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": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5833"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "CarParks_800495"}], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490G00237B", "modes": ["bus"], "icsCode": "1000237", "stopType": "NaptanOnstreetBusCoachStopCluster", "stationNaptan": "490G00237B", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490G00237B", "commonName": "Totteridge & Whetstone Station", "placeType": "StopPoint", "additionalProperties": [], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000237A", "indicator": "Stop A", "stopLetter": "A", "modes": ["bus"], "icsCode": "1000237", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00237B", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000237A", "commonName": "Totteridge & Whetstone Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.630161, "lon": -0.177884}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000237B", "indicator": "Stop B", "stopLetter": "B", "modes": ["bus"], "icsCode": "1000237", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00237B", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000237B", "commonName": "Totteridge & Whetstone Stn", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.63008, "lon": -0.17676}], "lat": 51.63008, "lon": -0.17676}, {"$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": "9400ZZLUTAW", "modes": ["tube"], "icsCode": "1000237", "stopType": "NaptanMetroAccessArea", "stationNaptan": "940GZZLUTAW", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "9400ZZLUTAW", "commonName": "Totteridge & Whetstone 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": "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": "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": "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": "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": "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": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$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": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}], "children": [], "lat": 51.630597, "lon": -0.17921}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUTAW1", "modes": ["tube"], "icsCode": "1000237", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUTAW", "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": "940GZZLUTAW", "lineIdentifier": ["northern"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["northern"]}], "status": true, "id": "9400ZZLUTAW1", "commonName": "Totteridge & Whetstone 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": "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": "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": "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": "Totteridge & Whetstone Station,London Underground Ltd.,Totteridge Lane,London,N20 9QP"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.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"}], "children": [], "lat": 51.63057, "lon": -0.179226}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUTAW2", "modes": ["tube"], "icsCode": "1000237", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUTAW", "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": "940GZZLUTAW", "lineIdentifier": ["northern"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["northern"]}], "status": true, "id": "9400ZZLUTAW2", "commonName": "Totteridge & Whetstone 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": "Totteridge & Whetstone Station,London Underground Ltd.,Totteridge Lane,London,N20 9QP"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.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": "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": "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": "Help Points", "sourceSystemKey": "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": "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"}], "children": [], "lat": 51.630507, "lon": -0.179228}], "lat": 51.630597, "lon": -0.17921}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "940GZZLUTBC", "modes": ["tube", "bus"], "icsCode": "1000233", "stopType": "NaptanMetroStation", "stationNaptan": "940GZZLUTBC", "lines": [{"$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": "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": "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": "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": "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": "249", "name": "249", "uri": "/Line/249", "type": "Line", "crowding": {"$type": "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": "490000233C", "stationAtcoCode": "490G00233G", "lineIdentifier": ["n155", "155", "219", "355"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490000233G", "stationAtcoCode": "490G00233G", "lineIdentifier": ["n155", "155", "355", "249"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "940GZZLUTBC", "lineIdentifier": ["northern"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490000233A", "stationAtcoCode": "490G00233G", "lineIdentifier": ["319", "219"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490000233E", "stationAtcoCode": "490G00233E", "lineIdentifier": ["319", "249"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "bus", "lineIdentifier": ["n155", "155", "319", "219", "355", "249"]}, {"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["northern"]}], "status": true, "id": "940GZZLUTBC", "commonName": "Tooting Bec 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": "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": "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": "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": "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": "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": "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": "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": "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": "5"}], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490G00233E", "modes": ["bus"], "icsCode": "1000233", "stopType": "NaptanOnstreetBusCoachStopCluster", "stationNaptan": "490G00233E", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490G00233E", "commonName": "Tooting Bec Station", "placeType": "StopPoint", "additionalProperties": [], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000233E", "indicator": "Stop E", "stopLetter": "E", "modes": ["bus"], "icsCode": "1000233", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00233E", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000233E", "commonName": "Tooting Bec Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.435376, "lon": -0.158913}], "lat": 51.435376, "lon": -0.158913}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490G00233G", "modes": ["bus"], "icsCode": "1000233", "stopType": "NaptanOnstreetBusCoachStopCluster", "stationNaptan": "490G00233G", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490G00233G", "commonName": "Tooting Bec Station", "placeType": "StopPoint", "additionalProperties": [], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000233A", "indicator": "Stop A", "stopLetter": "A", "modes": ["bus"], "icsCode": "1000233", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00233G", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000233A", "commonName": "Tooting Bec Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.435887, "lon": -0.159943}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000233C", "indicator": "Stop C", "stopLetter": "C", "modes": ["bus"], "icsCode": "1000233", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00233G", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000233C", "commonName": "Tooting Bec Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.435417, "lon": -0.160379}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000233G", "indicator": "Stop G", "stopLetter": "G", "modes": ["bus"], "icsCode": "1000233", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00233G", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000233G", "commonName": "Tooting Bec Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.435961, "lon": -0.158976}], "lat": 51.435417, "lon": -0.160379}, {"$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": "9400ZZLUTBC", "modes": ["tube"], "icsCode": "1000233", "stopType": "NaptanMetroAccessArea", "stationNaptan": "940GZZLUTBC", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "9400ZZLUTBC", "commonName": "Tooting Bec 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": "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": "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": "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": "Facility", "key": "Help 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": "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, 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": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}], "children": [], "lat": 51.435678, "lon": -0.159736}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUTBC1", "modes": ["tube"], "icsCode": "1000233", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUTBC", "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": "940GZZLUTBC", "lineIdentifier": ["northern"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["northern"]}], "status": true, "id": "9400ZZLUTBC1", "commonName": "Tooting Bec 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": "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": "Photo 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": "Help Points", "sourceSystemKey": "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": "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": "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": "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": "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.435856, "lon": -0.159024}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUTBC2", "modes": ["tube"], "icsCode": "1000233", "stopType": "NaptanRailAccessArea", "stationNaptan": "940GZZLUTBC", "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": "940GZZLUTBC", "lineIdentifier": ["northern"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["northern"]}], "status": true, "id": "9400ZZLUTBC2", "commonName": "Tooting Bec 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": "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, 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": "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": "Help Points", "sourceSystemKey": "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": "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": "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": "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": "no"}], "children": [], "lat": 51.435847, "lon": -0.15901}], "lat": 51.435678, "lon": -0.159736}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "940GZZLUTBY", "modes": ["tube", "bus"], "icsCode": "1000234", "stopType": "NaptanMetroStation", "stationNaptan": "940GZZLUTBY", "lines": [{"$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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "264", "name": "264", "uri": "/Line/264", "type": "Line", "crowding": {"$type": "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": "490000234H", "stationAtcoCode": "490G00234G", "lineIdentifier": ["44", "g1", "280", "270", "n44", "77", "264"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490000234M", "stationAtcoCode": "490G00234M", "lineIdentifier": ["44", "493", "270", "n44", "77"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490015513L", "stationAtcoCode": "490G00234G", "lineIdentifier": ["g1", "219", "131", "155", "n155", "493"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490000234ZZ", "stationAtcoCode": "490G00234G", "lineIdentifier": ["280", "57", "264"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "940GZZLUTBY", "lineIdentifier": ["northern"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490000234W1", "stationAtcoCode": "490G00234G", "lineIdentifier": ["333", "127"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490000234G", "stationAtcoCode": "490G00234G", "lineIdentifier": ["355"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490015512B", "stationAtcoCode": "490G00234G", "lineIdentifier": ["355", "219", "155", "n155"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "bus", "lineIdentifier": ["44", "g1", "280", "57", "333", "355", "219", "155", "131", "n155", "493", "270", "127", "n44", "77", "264"]}, {"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["northern"]}], "status": true, "id": "940GZZLUTBY", "commonName": "Tooting Broadway 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": "Euro Cash Machines", "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": "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": "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": "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": "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": "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": "Ticket Halls", "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, 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": "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": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5006"}], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490G00234G", "modes": ["bus"], "icsCode": "1000234", "stopType": "NaptanOnstreetBusCoachStopCluster", "stationNaptan": "490G00234G", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490G00234G", "commonName": "Tooting Broadway Station", "placeType": "StopPoint", "additionalProperties": [], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000234G", "indicator": "Stop G", "stopLetter": "G", "modes": ["bus"], "icsCode": "1000234", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00234G", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000234G", "commonName": "Tooting Broadway Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.427156, "lon": -0.166911}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000234H", "indicator": "Stop H", "stopLetter": "H", "modes": ["bus"], "icsCode": "1000234", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00234G", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000234H", "commonName": "Tooting Broadway Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.427156, "lon": -0.166911}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000234W1", "indicator": "Stop R", "stopLetter": "R", "modes": ["bus"], "icsCode": "1000234", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00234G", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000234W1", "commonName": "Tooting Broadway Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.426864, "lon": -0.166606}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000234Z", "indicator": "->S", "stopLetter": "->S", "modes": ["bus"], "icsCode": "1000234", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00234G", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000234Z", "commonName": "Tooting Broadway Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.427444, "lon": -0.168669}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000234ZZ", "indicator": "->N", "stopLetter": "->N", "modes": ["bus"], "icsCode": "1000234", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00234G", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000234ZZ", "commonName": "Tooting Broadway Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.427092, "lon": -0.169172}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490015512B", "indicator": "Stop B", "stopLetter": "B", "modes": ["bus"], "icsCode": "1000234", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00234G", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490015512B", "commonName": "Tooting Broadway Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.428558, "lon": -0.16743}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490015513L", "indicator": "Stop L", "stopLetter": "L", "modes": ["bus"], "icsCode": "1000234", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00234G", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490015513L", "commonName": "Tooting Broadway Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.427384, "lon": -0.168815}], "lat": 51.426864, "lon": -0.166606}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490G00234M", "modes": ["bus"], "icsCode": "1000234", "stopType": "NaptanOnstreetBusCoachStopCluster", "stationNaptan": "490G00234M", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490G00234M", "commonName": "Tooting Broadway Station", "placeType": "StopPoint", "additionalProperties": [], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000234M", "indicator": "Stop M", "stopLetter": "M", "modes": ["bus"], "icsCode": "1000234", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00234M", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000234M", "commonName": "Tooting Broadway Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.428473, "lon": -0.168872}], "lat": 51.428473, "lon": -0.168872}, {"$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": "9400ZZLUTBY", "modes": ["tube"], "icsCode": "1000234", "stopType": "NaptanMetroAccessArea", "stationNaptan": "940GZZLUTBY", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "9400ZZLUTBY", "commonName": "Tooting Broadway 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": "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": "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": "Tooting Broadway Station,London Underground Ltd.,Tooting High St,London,SW17 0SU"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo 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": "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": "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": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "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": "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": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}], "children": [], "lat": 51.42763, "lon": -0.168374}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUTBY1", "modes": ["tube"], "icsCode": "1000234", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUTBY", "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": "940GZZLUTBY", "lineIdentifier": ["northern"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["northern"]}], "status": true, "id": "9400ZZLUTBY1", "commonName": "Tooting Broadway 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": "Photo 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": "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": "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": "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": "6 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": "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": "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": "Tooting Broadway Station,London Underground Ltd.,Tooting High St,London,SW17 0SU"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.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"}], "children": [], "lat": 51.427843, "lon": -0.168178}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUTBY2", "modes": ["tube"], "icsCode": "1000234", "stopType": "NaptanRailAccessArea", "stationNaptan": "940GZZLUTBY", "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": "940GZZLUTBY", "lineIdentifier": ["northern"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["northern"]}], "status": true, "id": "9400ZZLUTBY2", "commonName": "Tooting Broadway 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": "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": "3"}, {"$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": "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": "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": "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": "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": "Tooting Broadway Station,London Underground Ltd.,Tooting High St,London,SW17 0SU"}, {"$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": "Escalators", "sourceSystemKey": "StaticObjects", "value": "3"}], "children": [], "lat": 51.427825, "lon": -0.168164}], "lat": 51.42763, "lon": -0.168374}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "940GZZLUTCR", "modes": ["tube"], "icsCode": "1000235", "stopType": "NaptanMetroStation", "stationNaptan": "940GZZLUTCR", "hubNaptanCode": "HUBTCR", "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"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "940GZZLUTCR", "lineIdentifier": ["central"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "940GZZLUTCR", "lineIdentifier": ["northern"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["central", "northern"]}], "status": true, "id": "940GZZLUTCR", "commonName": "Tottenham Court Road 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": "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": "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": "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": "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": "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": "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": "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": "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": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_15"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_24"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_88"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_109"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_192"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_244"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_260"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_306"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_358"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_364"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_383"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_386"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5358"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5043"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5468"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5379"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5516"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5655"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5580"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5074"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5090"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5481"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5233"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5141"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5816"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_4139"}], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490G00235C", "modes": ["bus"], "icsCode": "1000235", "stopType": "NaptanOnstreetBusCoachStopCluster", "stationNaptan": "490G00235C", "hubNaptanCode": "HUBTCR", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490G00235C", "commonName": "Tottenham Court Road Station", "placeType": "StopPoint", "additionalProperties": [], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000235C", "indicator": "Stop C", "stopLetter": "C", "modes": ["bus"], "icsCode": "1000235", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00235C", "hubNaptanCode": "HUBTCR", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000235C", "commonName": "Tottenham Court Road Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.517674, "lon": -0.131541}], "lat": 51.517674, "lon": -0.131541}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490G00235DS", "modes": ["bus"], "icsCode": "1000235", "stopType": "NaptanOnstreetBusCoachStopCluster", "stationNaptan": "490G00235DS", "hubNaptanCode": "HUBTCR", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490G00235DS", "commonName": "Tottenham Court Road Station", "placeType": "StopPoint", "additionalProperties": [], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000235YB", "indicator": "Stop YB", "stopLetter": "YB", "modes": ["bus"], "icsCode": "1000235", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00235DS", "hubNaptanCode": "HUBTCR", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000235YB", "commonName": "Tottenham Court Road Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.516096, "lon": -0.13407}], "lat": 51.516096, "lon": -0.13407}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490G00235E", "modes": ["bus"], "icsCode": "1000235", "stopType": "NaptanOnstreetBusCoachStopCluster", "stationNaptan": "490G00235E", "hubNaptanCode": "HUBTCR", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490G00235E", "commonName": "Tottenham Court Road Station", "placeType": "StopPoint", "additionalProperties": [], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000235W1", "indicator": "Stop S", "stopLetter": "S", "modes": ["bus"], "icsCode": "1000235", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00235E", "hubNaptanCode": "HUBTCR", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000235W1", "commonName": "Tottenham Court Road Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.515556, "lon": -0.128428}], "lat": 51.515556, "lon": -0.128428}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490G00235V", "modes": ["bus"], "icsCode": "1000235", "stopType": "NaptanOnstreetBusCoachStopCluster", "stationNaptan": "490G00235V", "hubNaptanCode": "HUBTCR", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490G00235V", "commonName": "Tottenham Court Road Station", "placeType": "StopPoint", "additionalProperties": [], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000235V", "indicator": "Stop V", "stopLetter": "V", "modes": ["bus"], "icsCode": "1000235", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00235V", "hubNaptanCode": "HUBTCR", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000235V", "commonName": "Tottenham Court Road Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.516377, "lon": -0.131954}], "lat": 51.516377, "lon": -0.131954}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490G00235Z", "modes": ["bus"], "icsCode": "1000235", "stopType": "NaptanOnstreetBusCoachStopCluster", "stationNaptan": "490G00235Z", "hubNaptanCode": "HUBTCR", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490G00235Z", "commonName": "Tottenham Court Road Station", "placeType": "StopPoint", "additionalProperties": [], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000235N", "indicator": "Stop T", "stopLetter": "T", "modes": ["bus"], "icsCode": "1000235", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00235Z", "hubNaptanCode": "HUBTCR", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000235N", "commonName": "Tottenham Court Road", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.51602, "lon": -0.12874}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000235X", "indicator": "Stop X", "stopLetter": "X", "modes": ["bus"], "icsCode": "1000235", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00235Z", "hubNaptanCode": "HUBTCR", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000235X", "commonName": "Tottenham Court Road Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.516685, "lon": -0.128122}], "lat": 51.51602, "lon": -0.12874}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "4900TOTCTRD0", "indicator": "Entrance 5", "stopLetter": "5", "modes": [], "icsCode": "1000235", "stopType": "NaptanRailEntrance", "stationNaptan": "940GZZLUTCR", "hubNaptanCode": "HUBTCR", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "4900TOTCTRD0", "commonName": "Tottenham Court Road Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.515846, "lon": -0.134166}, {"$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": "9400ZZLUTCR", "modes": ["tube"], "icsCode": "1000235", "stopType": "NaptanMetroAccessArea", "stationNaptan": "940GZZLUTCR", "hubNaptanCode": "HUBTCR", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "9400ZZLUTCR", "commonName": "Tottenham Court 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": "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": "Tottenham Court Road Station,London Underground Ltd.,Oxford St,London,W1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "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": "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": "Gates", "sourceSystemKey": "StaticObjects", "value": "13"}, {"$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": "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": "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.516426, "lon": -0.13041}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUTCR1", "modes": ["tube"], "icsCode": "1000235", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUTCR", "hubNaptanCode": "HUBTCR", "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": "940GZZLUTCR", "lineIdentifier": ["central"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["central"]}], "status": true, "id": "9400ZZLUTCR1", "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": "Lifts", "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": "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": "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": "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": "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": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}], "children": [], "lat": 51.516408, "lon": -0.131549}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUTCR2", "modes": ["tube"], "icsCode": "1000235", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUTCR", "hubNaptanCode": "HUBTCR", "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": "940GZZLUTCR", "lineIdentifier": ["northern"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["northern"]}], "status": true, "id": "9400ZZLUTCR2", "commonName": "Tottenham Court Road 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": "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": "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": "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": "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": "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": "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": "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": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "1"}], "children": [], "lat": 51.515941, "lon": -0.13043}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUTCR3", "modes": ["tube"], "icsCode": "1000235", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUTCR", "hubNaptanCode": "HUBTCR", "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": "940GZZLUTCR", "lineIdentifier": ["northern"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["northern"]}], "status": true, "id": "9400ZZLUTCR3", "commonName": "Tottenham Court 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": "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": "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": "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": "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": "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": "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": "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"}], "children": [], "lat": 51.515904, "lon": -0.130402}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUTCR4", "modes": ["tube"], "icsCode": "1000235", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUTCR", "hubNaptanCode": "HUBTCR", "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": "940GZZLUTCR", "lineIdentifier": ["central"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["central"]}], "status": true, "id": "9400ZZLUTCR4", "commonName": "Tottenham Court Road 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": "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": "13"}, {"$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": "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": "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": "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": "Photo 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.51594, "lon": -0.130401}], "lat": 51.516426, "lon": -0.13041}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "940GZZLUTFP", "modes": ["bus", "tube"], "icsCode": "1000239", "stopType": "NaptanMetroStation", "stationNaptan": "940GZZLUTFP", "lines": [{"$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": "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": "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": "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": "134", "name": "134", "uri": "/Line/134", "type": "Line", "crowding": {"$type": "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": "490015053C", "stationAtcoCode": "490G00239A", "lineIdentifier": ["390", "n20", "134"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490000239G", "stationAtcoCode": "490G00239G", "lineIdentifier": ["390"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "940GZZLUTFP", "lineIdentifier": ["northern"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490005973F", "stationAtcoCode": "490G00239A", "lineIdentifier": ["n20", "134"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490000239B", "stationAtcoCode": "490G00239A", "lineIdentifier": ["4"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490000239A", "stationAtcoCode": "490G00239A", "lineIdentifier": ["4"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "bus", "lineIdentifier": ["390", "n20", "4", "134"]}, {"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["northern"]}], "status": true, "id": "940GZZLUTFP", "commonName": "Tufnell Park 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": "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": "Lifts", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$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": "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": "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": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.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": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490G00239A", "modes": ["bus"], "icsCode": "1000239", "stopType": "NaptanOnstreetBusCoachStopCluster", "stationNaptan": "490G00239A", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490G00239A", "commonName": "Tufnell Park Station", "placeType": "StopPoint", "additionalProperties": [], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000239A", "indicator": "Stop TZ", "stopLetter": "TZ", "modes": ["bus"], "icsCode": "1000239", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00239A", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000239A", "commonName": "Tufnell Park Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.556884, "lon": -0.137378}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000239B", "indicator": "Stop TW", "stopLetter": "TW", "modes": ["bus"], "icsCode": "1000239", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00239A", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000239B", "commonName": "Tufnell Park Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.557082, "lon": -0.136793}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490005973F", "indicator": "Stop TS", "stopLetter": "TS", "modes": ["bus"], "icsCode": "1000239", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00239A", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490005973F", "commonName": "Tufnell Park Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.556209, "lon": -0.138992}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490015053C", "indicator": "Stop TN", "stopLetter": "TN", "modes": ["bus"], "icsCode": "1000239", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00239A", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490015053C", "commonName": "Tufnell Park Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.557409, "lon": -0.138107}], "lat": 51.557409, "lon": -0.138107}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490G00239G", "modes": ["bus"], "icsCode": "1000239", "stopType": "NaptanOnstreetBusCoachStopCluster", "stationNaptan": "490G00239G", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490G00239G", "commonName": "Tufnell Park Station", "placeType": "StopPoint", "additionalProperties": [], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000239G", "indicator": "Stop TF", "stopLetter": "TF", "modes": ["bus"], "icsCode": "1000239", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00239G", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000239G", "commonName": "Tufnell Park Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.556456, "lon": -0.13816}], "lat": 51.556456, "lon": -0.13816}, {"$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": "9400ZZLUTFP", "modes": ["tube"], "icsCode": "1000239", "stopType": "NaptanMetroAccessArea", "stationNaptan": "940GZZLUTFP", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "9400ZZLUTFP", "commonName": "Tufnell 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": "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": "Photo 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": "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": "Tufnell Park Station,London Underground Ltd.,Fortess Rd,London,N19 5QB"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.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": "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": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}], "children": [], "lat": 51.556822, "lon": -0.138433}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUTFP1", "modes": ["tube"], "icsCode": "1000239", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUTFP", "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": "940GZZLUTFP", "lineIdentifier": ["northern"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["northern"]}], "status": true, "id": "9400ZZLUTFP1", "commonName": "Tufnell 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": "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": "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": "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": "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": "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": "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.556803, "lon": -0.138391}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUTFP2", "modes": ["tube"], "icsCode": "1000239", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUTFP", "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": "940GZZLUTFP", "lineIdentifier": ["northern"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["northern"]}], "status": true, "id": "9400ZZLUTFP2", "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": "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": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$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": "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": "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": "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.556741, "lon": -0.138422}], "lat": 51.556822, "lon": -0.138433}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "940GZZLUTHB", "modes": ["tube"], "icsCode": "1000232", "stopType": "NaptanMetroStation", "stationNaptan": "940GZZLUTHB", "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": "940GZZLUTHB", "lineIdentifier": ["central"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["central"]}], "status": true, "id": "940GZZLUTHB", "commonName": "Theydon Bois 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": "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 (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": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "6"}, {"$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": "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": "Ticket Halls", "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": "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": "Boarding Ramps", "sourceSystemKey": "StaticObjects", "value": "yes Eastbound 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": "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"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "CarParks_800493"}], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "150G00002604", "modes": [], "icsCode": "1000205", "stopType": "NaptanOnstreetBusCoachStopPair", "stationNaptan": "150G00002604", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "150G00002604", "commonName": "Theydon Bois Green", "placeType": "StopPoint", "additionalProperties": [], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "1500IM386", "indicator": "adj", "modes": [], "icsCode": "1000205", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "150G00002604", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "1500IM386", "commonName": "Theydon Bois Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.671614, "lon": 0.100056}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "1500IM386B", "indicator": "opp", "modes": [], "icsCode": "1000205", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "150G00002604", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "1500IM386B", "commonName": "Theydon Bois Green", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.671241, "lon": 0.101311}], "lat": 51.671614, "lon": 0.100056}, {"$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": "9400ZZLUTHB", "modes": ["tube"], "icsCode": "1000232", "stopType": "NaptanMetroAccessArea", "stationNaptan": "940GZZLUTHB", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "9400ZZLUTHB", "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": "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": "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": "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": "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": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "6"}, {"$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": "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": "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": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}], "children": [], "lat": 51.671759, "lon": 0.103085}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUTHB1", "modes": ["tube"], "icsCode": "1000232", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUTHB", "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": "940GZZLUTHB", "lineIdentifier": ["central"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["central"]}], "status": true, "id": "9400ZZLUTHB1", "commonName": "Theydon Bois Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$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": "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": "Boarding Ramps", "sourceSystemKey": "StaticObjects", "value": "yes Eastbound 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": "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": "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": "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": "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": "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.671479, "lon": 0.103651}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUTHB2", "modes": ["tube"], "icsCode": "1000232", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUTHB", "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": "940GZZLUTHB", "lineIdentifier": ["central"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["central"]}], "status": true, "id": "9400ZZLUTHB2", "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": "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 (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": "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": "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": "Lifts", "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": "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 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.671426, "lon": 0.10362}], "lat": 51.671759, "lon": 0.103085}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "940GZZLUTMH", "modes": ["tube"], "icsCode": "1000236", "stopType": "NaptanMetroStation", "stationNaptan": "940GZZLUTMH", "hubNaptanCode": "HUBTOM", "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": "940GZZLUTMH", "lineIdentifier": ["victoria"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["victoria"]}], "status": true, "id": "940GZZLUTMH", "commonName": "Tottenham Hale Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Tottenham Hale Underground Station,London Underground Ltd.,Station Rd,London,N17 9LR"}, {"$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": "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": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "CarParks_800494"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.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": "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": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$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": "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"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "ServiceInfo", "key": "Night", "sourceSystemKey": "TransXchangeETL", "value": "yes"}], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUTMH", "modes": ["tube"], "icsCode": "1000236", "stopType": "NaptanMetroAccessArea", "stationNaptan": "940GZZLUTMH", "hubNaptanCode": "HUBTOM", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "9400ZZLUTMH", "commonName": "Tottenham Hale 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": "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": "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": "Payphones", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Tottenham Hale Underground Station,London Underground Ltd.,Station Rd,London,N17 9LR"}, {"$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": "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": "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"}], "children": [], "lat": 51.588108, "lon": -0.060241}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUTMH1", "modes": ["tube"], "icsCode": "1000236", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUTMH", "hubNaptanCode": "HUBTOM", "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": "940GZZLUTMH", "lineIdentifier": ["victoria"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["victoria"]}], "status": true, "id": "9400ZZLUTMH1", "commonName": "Tottenham Hale 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": "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": "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": "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": "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": "Address", "sourceSystemKey": "StaticObjects", "value": "Tottenham Hale Underground Station,London Underground Ltd.,Station Rd,London,N17 9LR"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.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": "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": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}], "children": [], "lat": 51.588309, "lon": -0.061532}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUTMH2", "modes": ["tube"], "icsCode": "1000236", "stopType": "NaptanRailAccessArea", "stationNaptan": "940GZZLUTMH", "hubNaptanCode": "HUBTOM", "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": "940GZZLUTMH", "lineIdentifier": ["victoria"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["victoria"]}], "status": true, "id": "9400ZZLUTMH2", "commonName": "Tottenham Hale", "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": "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"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.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": "Bridge", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Tottenham Hale Underground Station,London Underground Ltd.,Station Rd,London,N17 9LR"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.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": "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": "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": "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": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}], "children": [], "lat": 51.588318, "lon": -0.061502}], "lat": 51.588108, "lon": -0.060241}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "940GZZLUTMP", "modes": ["tube"], "icsCode": "1000231", "stopType": "NaptanMetroStation", "stationNaptan": "940GZZLUTMP", "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": "940GZZLUTMP", "lineIdentifier": ["circle", "district"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["circle", "district"]}], "status": true, "id": "940GZZLUTMP", "commonName": "Temple Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5767"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5965"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_3915"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_4859"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5264"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5331"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.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": "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": "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": "Temple Station,London Underground Ltd.,Victoria Embankment,London,WC2R 2PH"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, 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": "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": "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": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_79"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_147"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_232"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_256"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_283"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_309"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_335"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_338"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_564"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_594"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_773"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_842"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_857"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5506"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_4627"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5279"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_3914"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5473"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5315"}], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490G00231E", "modes": ["bus"], "icsCode": "1000231", "stopType": "NaptanOnstreetBusCoachStopCluster", "stationNaptan": "490G00231E", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490G00231E", "commonName": "Temple Station", "placeType": "StopPoint", "additionalProperties": [], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000231E", "indicator": "Stop N", "stopLetter": "N", "modes": ["bus"], "icsCode": "1000231", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00231E", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000231E", "commonName": "Temple Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.510993, "lon": -0.113022}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000231W", "indicator": "Stop O", "stopLetter": "O", "modes": ["bus"], "icsCode": "1000231", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00231E", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000231W", "commonName": "Temple Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.510839, "lon": -0.112913}], "lat": 51.510839, "lon": -0.112913}, {"$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": "9400ZZLUTMP", "modes": ["tube"], "icsCode": "1000231", "stopType": "NaptanMetroAccessArea", "stationNaptan": "940GZZLUTMP", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "9400ZZLUTMP", "commonName": "Temple 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": "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": "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": "Temple Station,London Underground Ltd.,Victoria Embankment,London,WC2R 2PH"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.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": "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": "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"}], "children": [], "lat": 51.511006, "lon": -0.11426}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUTMP1", "modes": ["tube"], "icsCode": "1000231", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUTMP", "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": "940GZZLUTMP", "lineIdentifier": ["circle", "district"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["circle", "district"]}], "status": true, "id": "9400ZZLUTMP1", "commonName": "Temple 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": "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": "Facility", "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": "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": "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": "Temple Station,London Underground Ltd.,Victoria Embankment,London,WC2R 2PH"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}], "children": [], "lat": 51.510861, "lon": -0.114756}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUTMP2", "modes": ["tube"], "icsCode": "1000231", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUTMP", "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": "940GZZLUTMP", "lineIdentifier": ["district", "circle"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["district", "circle"]}], "status": true, "id": "9400ZZLUTMP2", "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": "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": "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": "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": "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": "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"}], "children": [], "lat": 51.510877, "lon": -0.114669}], "lat": 51.511006, "lon": -0.11426}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "940GZZLUTNG", "modes": ["bus", "tube"], "icsCode": "1000240", "stopType": "NaptanMetroStation", "stationNaptan": "940GZZLUTNG", "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": "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": "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": "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": "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": "e3", "name": "E3", "uri": "/Line/e3", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "940GZZLUTNG", "lineIdentifier": ["district", "piccadilly"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "940GZZLUTNG", "lineIdentifier": ["district"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490000240KK", "stationAtcoCode": "490G00240KK", "lineIdentifier": ["n11", "e3"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490000240JJ", "stationAtcoCode": "490G00240KK", "lineIdentifier": ["n11", "e3"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490000240LL", "stationAtcoCode": "490G00240LL", "lineIdentifier": ["272", "94"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490000240MM", "stationAtcoCode": "490G00240LL", "lineIdentifier": ["272", "94"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "940GZZLUTNG", "lineIdentifier": ["piccadilly"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["district", "piccadilly"]}, {"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "bus", "lineIdentifier": ["n11", "272", "94", "e3"]}], "status": true, "id": "940GZZLUTNG", "commonName": "Turnham Green 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": "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": "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": "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": "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": "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": "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": "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": "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": "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"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5494"}], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490G00240KK", "modes": ["bus"], "icsCode": "1000240", "stopType": "NaptanOnstreetBusCoachStopCluster", "stationNaptan": "490G00240KK", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490G00240KK", "commonName": "Turnham Green Station", "placeType": "StopPoint", "additionalProperties": [], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000240JJ", "indicator": "Stop JJ", "stopLetter": "JJ", "modes": ["bus"], "icsCode": "1000240", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00240KK", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000240JJ", "commonName": "Turnham Green Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.494655, "lon": -0.255395}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000240KK", "indicator": "Stop KK", "stopLetter": "KK", "modes": ["bus"], "icsCode": "1000240", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00240KK", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000240KK", "commonName": "Turnham Green Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.495174, "lon": -0.255231}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000240S", "indicator": "Stop", "modes": ["bus"], "icsCode": "1000240", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00240KK", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000240S", "commonName": "Turnham Green Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.494698, "lon": -0.255278}], "lat": 51.494698, "lon": -0.255278}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490G00240LL", "modes": ["bus"], "icsCode": "1000240", "stopType": "NaptanOnstreetBusCoachStopCluster", "stationNaptan": "490G00240LL", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490G00240LL", "commonName": "Turnham Green Station", "placeType": "StopPoint", "additionalProperties": [], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000240LL", "indicator": "Stop LL", "stopLetter": "LL", "modes": ["bus"], "icsCode": "1000240", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00240LL", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000240LL", "commonName": "Turnham Green Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.495968, "lon": -0.254221}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000240MM", "indicator": "Stop MM", "stopLetter": "MM", "modes": ["bus"], "icsCode": "1000240", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00240LL", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000240MM", "commonName": "Turnham Green Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.495793, "lon": -0.254501}], "lat": 51.495968, "lon": -0.254221}, {"$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": "9400ZZLUTNG", "modes": ["tube"], "icsCode": "1000240", "stopType": "NaptanMetroAccessArea", "stationNaptan": "940GZZLUTNG", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "9400ZZLUTNG", "commonName": "Turnham Green Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$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": "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": "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": "Bridge", "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": "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": "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": "4"}, {"$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": "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.495148, "lon": -0.254555}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUTNG1", "modes": ["tube"], "icsCode": "1000240", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUTNG", "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": "940GZZLUTNG", "lineIdentifier": ["piccadilly"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["piccadilly"]}], "status": true, "id": "9400ZZLUTNG1", "commonName": "Turnham 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": "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": "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": "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": "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": "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": "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": "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": "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.495275, "lon": -0.254622}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUTNG2", "modes": ["tube"], "icsCode": "1000240", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUTNG", "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": "940GZZLUTNG", "lineIdentifier": ["piccadilly", "district"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["piccadilly", "district"]}], "status": true, "id": "9400ZZLUTNG2", "commonName": "Turnham Green 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": "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": "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": "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": "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": "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": "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": "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.495265, "lon": -0.25455}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUTNG3", "modes": ["tube"], "icsCode": "1000240", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUTNG", "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": "940GZZLUTNG", "lineIdentifier": ["district"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["district"]}], "status": true, "id": "9400ZZLUTNG3", "commonName": "Turnham 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": "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": "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": "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": "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": "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": "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": "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": "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": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}], "children": [], "lat": 51.495263, "lon": -0.254464}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUTNG4", "modes": ["tube"], "icsCode": "1000240", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUTNG", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "9400ZZLUTNG4", "commonName": "Turnham 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": "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": "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": "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": "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": "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": "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": "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": "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.495262, "lon": -0.254377}], "lat": 51.495148, "lon": -0.254555}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "940GZZLUTPN", "modes": ["tube", "bus"], "icsCode": "1000241", "stopType": "NaptanMetroStation", "stationNaptan": "940GZZLUTPN", "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": "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": "217", "name": "217", "uri": "/Line/217", "type": "Line", "crowding": {"$type": "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": "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": "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": "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": "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": "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": "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": "329", "name": "329", "uri": "/Line/329", "type": "Line", "crowding": {"$type": "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": "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": "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": "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": "w4", "name": "W4", "uri": "/Line/w4", "type": "Line", "crowding": {"$type": "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": "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": "184", "name": "184", "uri": "/Line/184", "type": "Line", "crowding": {"$type": "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": "490000241P", "stationAtcoCode": "490G00241M", "lineIdentifier": ["123", "444", "217", "231"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490000241M", "stationAtcoCode": "490G00241M", "lineIdentifier": ["221", "121", "n29", "144", "329", "29", "141"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490015475Y", "stationAtcoCode": "490G00241M", "lineIdentifier": ["41", "67", "329", "232", "n41", "w4", "230", "184"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490015475U", "stationAtcoCode": "490G00241M", "lineIdentifier": ["41", "n29", "67", "29", "141", "n41", "w4", "230"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "940GZZLUTPN", "lineIdentifier": ["piccadilly"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "bus", "lineIdentifier": ["123", "444", "217", "221", "121", "41", "n29", "67", "144", "329", "29", "141", "232", "n41", "w4", "231", "230", "184"]}, {"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["piccadilly"]}], "status": true, "id": "940GZZLUTPN", "commonName": "Turnpike Lane 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": "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": "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": "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": "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": "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": "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": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5564"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5874"}], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490G00241M", "modes": ["bus"], "icsCode": "1000241", "stopType": "NaptanOnstreetBusCoachStopCluster", "stationNaptan": "490G00241M", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490G00241M", "commonName": "Turnpike Lane Station", "placeType": "StopPoint", "additionalProperties": [], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000241M", "indicator": "Stop M", "stopLetter": "M", "modes": ["bus"], "icsCode": "1000241", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00241M", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000241M", "commonName": "Turnpike Lane Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.59084, "lon": -0.103666}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000241P", "indicator": "Stop P", "stopLetter": "P", "modes": ["bus"], "icsCode": "1000241", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00241M", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000241P", "commonName": "Turnpike Lane Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.590911, "lon": -0.102551}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490015475U", "indicator": "Stop U", "stopLetter": "U", "modes": ["bus"], "icsCode": "1000241", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00241M", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490015475U", "commonName": "Turnpike Lane Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.589237, "lon": -0.102462}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490015475Y", "indicator": "Stop Y", "stopLetter": "Y", "modes": ["bus"], "icsCode": "1000241", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00241M", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490015475Y", "commonName": "Turnpike Lane Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.589624, "lon": -0.102475}], "lat": 51.589237, "lon": -0.102462}, {"$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": "9400ZZLUTPN", "modes": ["tube"], "icsCode": "1000241", "stopType": "NaptanMetroAccessArea", "stationNaptan": "940GZZLUTPN", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "9400ZZLUTPN", "commonName": "Turnpike Lane 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": "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": "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": "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": "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": "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": "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": "Other Facilities", "sourceSystemKey": "StaticObjects", "value": "post office style queuing for tickets, subway to street, routeways platform to ticket hall."}], "children": [], "lat": 51.590272, "lon": -0.102953}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUTPN1", "modes": ["tube"], "icsCode": "1000241", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUTPN", "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": "940GZZLUTPN", "lineIdentifier": ["piccadilly"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["piccadilly"]}], "status": true, "id": "9400ZZLUTPN1", "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": "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": "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": "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, 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": "Turnpike Lane Station,London Underground Ltd.,Westbury Avenue,London,N15 3NX"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.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": "5"}], "children": [], "lat": 51.590046, "lon": -0.10289}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUTPN2", "modes": ["tube"], "icsCode": "1000241", "stopType": "NaptanRailAccessArea", "stationNaptan": "940GZZLUTPN", "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": "940GZZLUTPN", "lineIdentifier": ["piccadilly"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["piccadilly"]}], "status": true, "id": "9400ZZLUTPN2", "commonName": "Turnpike Lane 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": "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": "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": "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": "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": "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": "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": "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": "Bridge", "sourceSystemKey": "StaticObjects", "value": "no"}], "children": [], "lat": 51.590046, "lon": -0.102876}], "lat": 51.590272, "lon": -0.102953}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "940GZZLUTWH", "modes": ["tube"], "icsCode": "1000238", "stopType": "NaptanMetroStation", "stationNaptan": "940GZZLUTWH", "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": "940GZZLUTWH", "lineIdentifier": ["circle", "district"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["circle", "district"]}], "status": true, "id": "940GZZLUTWH", "commonName": "Tower 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": "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": "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": "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": "Help Points", "sourceSystemKey": "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": "Gates", "sourceSystemKey": "StaticObjects", "value": "15"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_104"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_102"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_199"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5900"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5905"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_130"}, {"$type": "Tfl.Api.Presentation.Entities.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": "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": "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": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5902"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5451"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5916"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5941"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5269"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5915"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5917"}], "children": [{"$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": "9400ZZLUTWH", "modes": ["tube"], "icsCode": "1000238", "stopType": "NaptanMetroAccessArea", "stationNaptan": "940GZZLUTWH", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "9400ZZLUTWH", "commonName": "Tower 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": "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": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$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": "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": "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": "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": "15"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}], "children": [], "lat": 51.509971, "lon": -0.076546}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUTWH1", "modes": ["tube"], "icsCode": "1000238", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUTWH", "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": "940GZZLUTWH", "lineIdentifier": ["circle", "district"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["circle", "district"]}], "status": true, "id": "9400ZZLUTWH1", "commonName": "Tower Hill Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$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": "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": "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": "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": "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": "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"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "1"}], "children": [], "lat": 51.509663, "lon": -0.076991}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUTWH2", "modes": ["tube"], "icsCode": "1000238", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUTWH", "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": "940GZZLUTWH", "lineIdentifier": ["district", "circle"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["district", "circle"]}], "status": true, "id": "9400ZZLUTWH2", "commonName": "Tower Hill Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$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": "Gates", "sourceSystemKey": "StaticObjects", "value": "15"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.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": "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": "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": "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": "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": "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.50962, "lon": -0.077108}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUTWH3", "indicator": "westbound", "modes": ["tube"], "icsCode": "1000238", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUTWH", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "9400ZZLUTWH3", "commonName": "Tower Hill 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": "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": "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": "Help Points", "sourceSystemKey": "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": "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": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "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": "Tower Hill Station,London Underground Ltd.,Trinity Square,London,EC3N 4DJ"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "15"}], "children": [], "lat": 51.509707, "lon": -0.076917}], "lat": 51.509971, "lon": -0.076546}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "940GZZLUUPB", "modes": ["bus", "tube"], "icsCode": "1000243", "stopType": "NaptanMetroStation", "stationNaptan": "940GZZLUUPB", "lines": [{"$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": "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": "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"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490000243B", "stationAtcoCode": "490G00243B", "lineIdentifier": ["370", "248", "652", "646"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490000243A", "stationAtcoCode": "490G00243B", "lineIdentifier": ["370", "248", "652", "646"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "940GZZLUUPB", "lineIdentifier": ["district"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "bus", "lineIdentifier": ["370", "248", "652", "646"]}, {"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["district"]}], "status": true, "id": "940GZZLUUPB", "commonName": "Upminster Bridge 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": "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": "yes M&F (open between 0500-1500)"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.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": "Geo", "key": "Zone", "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": "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": "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": "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": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5857"}], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490G00243B", "modes": ["bus"], "icsCode": "1000243", "stopType": "NaptanOnstreetBusCoachStopCluster", "stationNaptan": "490G00243B", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490G00243B", "commonName": "Upminster Bridge Station", "placeType": "StopPoint", "additionalProperties": [], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000243A", "indicator": "Stop A", "stopLetter": "A", "modes": ["bus"], "icsCode": "1000243", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00243B", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000243A", "commonName": "Upminster Bridge Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.559052, "lon": 0.235372}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000243B", "indicator": "Stop B", "stopLetter": "B", "modes": ["bus"], "icsCode": "1000243", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00243B", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000243B", "commonName": "Upminster Bridge Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.55906, "lon": 0.235892}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000243Y", "indicator": "->E", "stopLetter": "->E", "modes": ["bus"], "icsCode": "1000243", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00243B", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000243Y", "commonName": "Upminster Bridge Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.559236, "lon": 0.23515}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000243Z", "indicator": "->W", "stopLetter": "->W", "modes": ["bus"], "icsCode": "1000243", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00243B", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000243Z", "commonName": "Upminster Bridge Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.559085, "lon": 0.235085}], "lat": 51.559236, "lon": 0.23515}, {"$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": "9400ZZLUUPB", "modes": ["tube"], "icsCode": "1000243", "stopType": "NaptanMetroAccessArea", "stationNaptan": "940GZZLUUPB", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "9400ZZLUUPB", "commonName": "Upminster Bridge 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 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": "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": "canopies over platform."}, {"$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": "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": "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": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "0"}], "children": [], "lat": 51.55856, "lon": 0.235809}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUUPB1", "modes": ["tube"], "icsCode": "1000243", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUUPB", "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": "940GZZLUUPB", "lineIdentifier": ["district"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["district"]}], "status": true, "id": "9400ZZLUUPB1", "commonName": "Upminster Bridge 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": "Help Points", "sourceSystemKey": "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": "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": "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": "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": "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": "Other Facilities", "sourceSystemKey": "StaticObjects", "value": "canopies over platform."}], "children": [], "lat": 51.558254, "lon": 0.234857}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUUPB2", "modes": ["tube"], "icsCode": "1000243", "stopType": "NaptanRailAccessArea", "stationNaptan": "940GZZLUUPB", "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": "940GZZLUUPB", "lineIdentifier": ["district"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["district"]}], "status": true, "id": "9400ZZLUUPB2", "commonName": "Upminster Bridge", "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": "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": "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": "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": "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": "0"}, {"$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": "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"}], "children": [], "lat": 51.558263, "lon": 0.234872}], "lat": 51.55856, "lon": 0.235809}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "940GZZLUUPK", "modes": ["tube", "bus"], "icsCode": "1000245", "stopType": "NaptanMetroStation", "stationNaptan": "940GZZLUUPK", "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": "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": "376", "name": "376", "uri": "/Line/376", "type": "Line", "crowding": {"$type": "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": "330", "name": "330", "uri": "/Line/330", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "940GZZLUUPK", "lineIdentifier": ["district", "hammersmith-city"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490000245A", "stationAtcoCode": "490G00245A", "lineIdentifier": ["58", "376", "104", "330"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490000245B", "stationAtcoCode": "490G00245A", "lineIdentifier": ["58", "376", "104", "330"]}], "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": "bus", "lineIdentifier": ["58", "376", "104", "330"]}], "status": true, "id": "940GZZLUUPK", "commonName": "Upton 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": "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": "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": "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": "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": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$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": "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": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5827"}], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490G00245A", "modes": ["bus"], "icsCode": "1000245", "stopType": "NaptanOnstreetBusCoachStopCluster", "stationNaptan": "490G00245A", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490G00245A", "commonName": "Upton Park Station", "placeType": "StopPoint", "additionalProperties": [], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000245A", "indicator": "Stop A", "stopLetter": "A", "modes": ["bus"], "icsCode": "1000245", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00245A", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000245A", "commonName": "Upton Park Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.534671, "lon": 0.035377}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000245B", "indicator": "Stop B", "stopLetter": "B", "modes": ["bus"], "icsCode": "1000245", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00245A", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000245B", "commonName": "Upton Park Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.53605, "lon": 0.035194}], "lat": 51.534671, "lon": 0.035377}, {"$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": "9400ZZLUUPK", "modes": ["tube"], "icsCode": "1000245", "stopType": "NaptanMetroAccessArea", "stationNaptan": "940GZZLUUPK", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "9400ZZLUUPK", "commonName": "Upton Park Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$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": "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": "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": "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": "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": "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"}], "children": [], "lat": 51.53534, "lon": 0.035263}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUUPK1", "modes": ["tube"], "icsCode": "1000245", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUUPK", "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": "940GZZLUUPK", "lineIdentifier": ["district", "hammersmith-city"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["district", "hammersmith-city"]}], "status": true, "id": "9400ZZLUUPK1", "commonName": "Upton 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": "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": "Other Facilities", "sourceSystemKey": "StaticObjects", "value": "canopies over platform."}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.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": "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": "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": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$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"}], "children": [], "lat": 51.53516, "lon": 0.034274}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUUPK2", "modes": ["tube"], "icsCode": "1000245", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUUPK", "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": "940GZZLUUPK", "lineIdentifier": ["district", "hammersmith-city"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["district", "hammersmith-city"]}], "status": true, "id": "9400ZZLUUPK2", "commonName": "Upton Park 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": "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": "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": "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": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.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": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}], "children": [], "lat": 51.53516, "lon": 0.034289}], "lat": 51.53534, "lon": 0.035263}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "940GZZLUUPM", "modes": ["tube"], "icsCode": "1000242", "stopType": "NaptanMetroStation", "stationNaptan": "940GZZLUUPM", "hubNaptanCode": "HUBUPM", "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": "940GZZLUUPM", "lineIdentifier": ["district"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["district"]}], "status": true, "id": "940GZZLUUPM", "commonName": "Upminster 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 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": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "6"}, {"$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": "Opening Time", "key": "MonFriFrom", "sourceSystemKey": "StaticObjects", "value": "05: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": "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": "Refreshment 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": "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": "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": "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": "MonFriTo", "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": "Opening Time", "key": "SunFrom", "sourceSystemKey": "StaticObjects", "value": "06: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": "Opening Time", "key": "SunTo", "sourceSystemKey": "StaticObjects", "value": "22:00"}, {"$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": "9400ZZLUUPM", "modes": ["tube"], "icsCode": "1000242", "stopType": "NaptanMetroAccessArea", "stationNaptan": "940GZZLUUPM", "hubNaptanCode": "HUBUPM", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "9400ZZLUUPM", "commonName": "Upminster 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": "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": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$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": "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": "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": "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": "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": "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"}], "children": [], "lat": 51.559063, "lon": 0.250882}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUUPM1", "modes": ["tube"], "icsCode": "1000242", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUUPM", "hubNaptanCode": "HUBUPM", "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": "940GZZLUUPM", "lineIdentifier": ["district"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["district"]}], "status": true, "id": "9400ZZLUUPM1", "commonName": "Upminster 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": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$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": "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": "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": "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": "Opening Time", "key": "MonFriTo", "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": "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": "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": "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": "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": "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": "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"}], "children": [], "lat": 51.559335, "lon": 0.25127}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUUPM2", "modes": ["tube"], "icsCode": "1000242", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUUPM", "hubNaptanCode": "HUBUPM", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "9400ZZLUUPM2", "commonName": "Upminster Underground 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": "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": "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": "Opening Time", "key": "MonFriTo", "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": "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": "Gates", "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": "Refreshment facilities"}, {"$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": "Facility", "key": "Help 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": "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": "22:00"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Opening Time", "key": "SunFrom", "sourceSystemKey": "StaticObjects", "value": "06:45"}], "children": [], "lat": 51.559333, "lon": 0.251357}], "lat": 51.559063, "lon": 0.250882}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "940GZZLUUPY", "modes": ["bus", "tube"], "icsCode": "1000244", "stopType": "NaptanMetroStation", "stationNaptan": "940GZZLUUPY", "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": "62", "name": "62", "uri": "/Line/62", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "940GZZLUUPY", "lineIdentifier": ["district"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490000244B", "stationAtcoCode": "490G00244B", "lineIdentifier": ["62"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490000244A", "stationAtcoCode": "490G00244B", "lineIdentifier": ["62"]}], "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": "bus", "lineIdentifier": ["62"]}], "status": true, "id": "940GZZLUUPY", "commonName": "Upney 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": "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": "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": "Opening Time", "key": "MonFriTo", "sourceSystemKey": "StaticObjects", "value": "09: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": "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": "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": "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": "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": "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": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490G00244B", "modes": ["bus"], "icsCode": "1000244", "stopType": "NaptanOnstreetBusCoachStopCluster", "stationNaptan": "490G00244B", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490G00244B", "commonName": "Upney Station", "placeType": "StopPoint", "additionalProperties": [], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000244A", "indicator": "Stop V", "stopLetter": "V", "modes": ["bus"], "icsCode": "1000244", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00244B", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000244A", "commonName": "Upney Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.538423, "lon": 0.101605}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000244B", "indicator": "Stop B", "stopLetter": "B", "modes": ["bus"], "icsCode": "1000244", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00244B", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000244B", "commonName": "Upney Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.537818, "lon": 0.102197}], "lat": 51.538423, "lon": 0.101605}, {"$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": "9400ZZLUUPY", "modes": ["tube"], "icsCode": "1000244", "stopType": "NaptanMetroAccessArea", "stationNaptan": "940GZZLUUPY", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "9400ZZLUUPY", "commonName": "Upney 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": "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": "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": "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": "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": "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": "Opening Time", "key": "MonFriTo", "sourceSystemKey": "StaticObjects", "value": "09:45"}, {"$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": "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": "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": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "yes"}], "children": [], "lat": 51.538372, "lon": 0.10153}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUUPY1", "modes": ["tube"], "icsCode": "1000244", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUUPY", "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": "940GZZLUUPY", "lineIdentifier": ["district"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["district"]}], "status": true, "id": "9400ZZLUUPY1", "commonName": "Upney 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": "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": "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": "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": "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": "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": "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": "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": "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": "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"}], "children": [], "lat": 51.538371, "lon": 0.100045}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUUPY2", "modes": ["tube"], "icsCode": "1000244", "stopType": "NaptanRailAccessArea", "stationNaptan": "940GZZLUUPY", "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": "940GZZLUUPY", "lineIdentifier": ["district"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["district"]}], "status": true, "id": "9400ZZLUUPY2", "commonName": "Upney Station", "placeType": "StopPoint", "additionalProperties": [{"$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": "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": "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": "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": "Opening Time", "key": "SatFrom", "sourceSystemKey": "StaticObjects", "value": "13:30"}, {"$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": "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": "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": "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": "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"}], "children": [], "lat": 51.538371, "lon": 0.10003}], "lat": 51.538372, "lon": 0.10153}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "940GZZLUUXB", "modes": ["bus", "tube"], "icsCode": "1000246", "stopType": "NaptanMetroStation", "stationNaptan": "940GZZLUUXB", "lines": [{"$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": "u2", "name": "U2", "uri": "/Line/u2", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "u3", "name": "U3", "uri": "/Line/u3", "type": "Line", "crowding": {"$type": "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": "a10", "name": "A10", "uri": "/Line/a10", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "u1", "name": "U1", "uri": "/Line/u1", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "u10", "name": "U10", "uri": "/Line/u10", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "u4", "name": "U4", "uri": "/Line/u4", "type": "Line", "crowding": {"$type": "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": "u9", "name": "U9", "uri": "/Line/u9", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "222", "name": "222", "uri": "/Line/222", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "427", "name": "427", "uri": "/Line/427", "type": "Line", "crowding": {"$type": "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": "u7", "name": "U7", "uri": "/Line/u7", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "331", "name": "331", "uri": "/Line/331", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "u5", "name": "U5", "uri": "/Line/u5", "type": "Line", "crowding": {"$type": "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": "490000246O", "stationAtcoCode": "490G00246H", "lineIdentifier": ["n207", "sl8", "427", "u7"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490000246N", "stationAtcoCode": "490G00246H", "lineIdentifier": ["u2", "u3", "u4", "222", "u5"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490000246L", "stationAtcoCode": "490G00246H", "lineIdentifier": ["a10", "u1", "u10", "u9", "331"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "940GZZLUUXB", "lineIdentifier": ["piccadilly", "metropolitan"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "bus", "lineIdentifier": ["n207", "u2", "u3", "sl8", "a10", "u1", "u10", "u4", "u9", "222", "427", "u7", "331", "u5"]}, {"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["piccadilly", "metropolitan"]}], "status": true, "id": "940GZZLUUXB", "commonName": "Uxbridge 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": "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": "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": "Help 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": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.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 Metropolitan 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": "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": "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": "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": "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": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5605"}], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490G00246E", "modes": ["bus"], "icsCode": "1000246", "stopType": "NaptanOnstreetBusCoachStopCluster", "stationNaptan": "940GZZLUUXB", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490G00246E", "commonName": "Uxbridge Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.546565, "lon": -0.477949}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490G00246H", "modes": ["bus"], "icsCode": "1000246", "stopType": "NaptanOnstreetBusCoachStopCluster", "stationNaptan": "490G00246H", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490G00246H", "commonName": "Uxbridge Station", "placeType": "StopPoint", "additionalProperties": [], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000246H", "indicator": "Stand H", "stopLetter": "H", "modes": ["bus"], "icsCode": "1000246", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00246H", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000246H", "commonName": "Uxbridge Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.547093, "lon": -0.478566}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000246L", "indicator": "Stop L", "stopLetter": "L", "modes": ["bus"], "icsCode": "1000246", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00246H", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000246L", "commonName": "Uxbridge Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.546535, "lon": -0.478483}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000246N", "indicator": "Stop N", "stopLetter": "N", "modes": ["bus"], "icsCode": "1000246", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00246H", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000246N", "commonName": "Uxbridge Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.546916, "lon": -0.478745}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000246N1", "indicator": "->N", "stopLetter": "->N", "modes": ["bus"], "icsCode": "1000246", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00246H", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000246N1", "commonName": "Uxbridge Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.546506, "lon": -0.475614}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000246O", "indicator": "Stop O", "stopLetter": "O", "modes": ["bus"], "icsCode": "1000246", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00246H", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000246O", "commonName": "Uxbridge Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.5473, "lon": -0.479294}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000246Z", "indicator": "->W", "stopLetter": "->W", "modes": ["bus"], "icsCode": "1000246", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00246H", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000246Z", "commonName": "Uxbridge Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.547663, "lon": -0.478849}], "lat": 51.546506, "lon": -0.475614}, {"$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": "9400ZZLUUXB", "modes": ["tube"], "icsCode": "1000246", "stopType": "NaptanMetroAccessArea", "stationNaptan": "940GZZLUUXB", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "9400ZZLUUXB", "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": "Help Points", "sourceSystemKey": "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": "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": "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": "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": "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": "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": "Boarding Ramps", "sourceSystemKey": "StaticObjects", "value": "yes Metropolitan only"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, 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": "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": "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.546565, "lon": -0.477949}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUUXB1", "modes": ["tube"], "icsCode": "1000246", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUUXB", "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": "940GZZLUUXB", "lineIdentifier": ["piccadilly", "metropolitan"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["piccadilly", "metropolitan"]}], "status": true, "id": "9400ZZLUUXB1", "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": "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": "Uxbridge Station,London Underground Ltd.,High St,Uxbridge,Middx,UB8 1JZ"}, {"$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": "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": "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"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.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": "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": "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": "no"}], "children": [], "lat": 51.546807, "lon": -0.477191}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUUXB2", "modes": ["tube"], "icsCode": "1000246", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUUXB", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "9400ZZLUUXB2", "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": "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": "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": "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": "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": "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": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.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": "Payphones", "sourceSystemKey": "StaticObjects", "value": "4"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "yes"}], "children": [], "lat": 51.546833, "lon": -0.477132}], "lat": 51.546565, "lon": -0.477949}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "940GZZLUVIC", "modes": ["tube"], "icsCode": "1000248", "stopType": "NaptanMetroStation", "stationNaptan": "940GZZLUVIC", "hubNaptanCode": "HUBVIC", "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"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "940GZZLUVIC", "lineIdentifier": ["circle", "district"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "940GZZLUVIC", "lineIdentifier": ["victoria"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["circle", "district", "victoria"]}], "status": true, "id": "940GZZLUVIC", "commonName": "Victoria 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": "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": "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": "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": "Boarding Ramps", "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": "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": "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": "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": "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": "Lifts", "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": "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_161"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_167"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_177"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_268"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_316"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_320"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_360"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_646"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_799"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_826"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5970"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5744"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5654"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5773"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5743"}], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490G00248G", "modes": ["bus"], "icsCode": "1000248", "stopType": "NaptanOnstreetBusCoachStopCluster", "stationNaptan": "490G00248G", "hubNaptanCode": "HUBVIC", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490G00248G", "commonName": "Victoria Station", "placeType": "StopPoint", "additionalProperties": [], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "4900000248S", "indicator": "AP", "stopLetter": "AP", "modes": ["bus"], "icsCode": "1000248", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00248G", "hubNaptanCode": "HUBVIC", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "4900000248S", "commonName": "Victoria Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.496253, "lon": -0.143942}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000248G", "indicator": "Stop G", "stopLetter": "G", "modes": ["bus"], "icsCode": "1000248", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00248G", "hubNaptanCode": "HUBVIC", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000248G", "commonName": "Victoria Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.496534, "lon": -0.143498}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000248H", "indicator": "Stop J", "stopLetter": "J", "modes": ["bus"], "icsCode": "1000248", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00248G", "hubNaptanCode": "HUBVIC", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000248H", "commonName": "Victoria Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.495663, "lon": -0.14303}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000248N2", "indicator": "Stop S", "stopLetter": "S", "modes": ["bus"], "icsCode": "1000248", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00248G", "hubNaptanCode": "HUBVIC", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000248N2", "commonName": "Victoria Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.496488, "lon": -0.145114}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000248S", "indicator": "Stop U", "stopLetter": "U", "modes": ["bus"], "icsCode": "1000248", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00248G", "hubNaptanCode": "HUBVIC", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000248S", "commonName": "Victoria Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.496002, "lon": -0.142267}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000248S1", "indicator": "Stop Z5", "stopLetter": "Z5", "modes": ["bus"], "icsCode": "1000248", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00248G", "hubNaptanCode": "HUBVIC", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000248S1", "commonName": "Victoria", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.495364, "lon": -0.145692}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000248S2", "indicator": "Stop Z12", "stopLetter": "Z12", "modes": ["bus"], "icsCode": "1000248", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00248G", "hubNaptanCode": "HUBVIC", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000248S2", "commonName": "Victoria", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.494776, "lon": -0.146091}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000248UA", "indicator": "Stop 11", "stopLetter": "11", "modes": ["bus"], "icsCode": "1000248", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00248G", "hubNaptanCode": "HUBVIC", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000248UA", "commonName": "Victoria Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.49527, "lon": -0.145999}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000248Y", "indicator": "Z14", "stopLetter": "Z14", "modes": ["bus"], "icsCode": "1000248", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00248G", "hubNaptanCode": "HUBVIC", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000248Y", "commonName": "Victoria", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.497886, "lon": -0.14255}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000248YZ", "indicator": "Stop F", "stopLetter": "F", "modes": ["bus"], "icsCode": "1000248", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00248G", "hubNaptanCode": "HUBVIC", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000248YZ", "commonName": "Victoria Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.49622, "lon": -0.143526}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000248Z", "indicator": "16", "stopLetter": "16", "modes": ["bus"], "icsCode": "1000248", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00248G", "hubNaptanCode": "HUBVIC", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000248Z", "commonName": "Victoria", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.496084, "lon": -0.144612}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000248Z7", "indicator": "Stop Z7", "stopLetter": "Z7", "modes": ["bus"], "icsCode": "1000248", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00248G", "hubNaptanCode": "HUBVIC", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000248Z7", "commonName": "Victoria", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.496474, "lon": -0.145979}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000248ZY", "indicator": "Stop JA", "stopLetter": "JA", "modes": ["bus"], "icsCode": "1000248", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00248G", "hubNaptanCode": "HUBVIC", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000248ZY", "commonName": "Victoria Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.496563, "lon": -0.144203}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000248ZZ", "indicator": "Stop H", "stopLetter": "H", "modes": ["bus"], "icsCode": "1000248", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00248G", "hubNaptanCode": "HUBVIC", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000248ZZ", "commonName": "Victoria Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.495846, "lon": -0.143238}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490002139ZZ", "indicator": "Stop E", "stopLetter": "E", "modes": ["bus"], "icsCode": "1000248", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00248G", "hubNaptanCode": "HUBVIC", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490002139ZZ", "commonName": "Victoria Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.496283, "lon": -0.144128}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490007544N2", "indicator": "Stop Z6", "stopLetter": "Z6", "modes": ["bus"], "icsCode": "1000248", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00248G", "hubNaptanCode": "HUBVIC", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490007544N2", "commonName": "Victoria Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.496283, "lon": -0.145842}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490014050R", "indicator": "Stop R", "stopLetter": "R", "modes": ["bus"], "icsCode": "1000248", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00248G", "hubNaptanCode": "HUBVIC", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490014050R", "commonName": "Victoria Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.495773, "lon": -0.145388}], "lat": 51.495773, "lon": -0.145388}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490G00248J", "modes": ["bus"], "icsCode": "1000248", "stopType": "NaptanOnstreetBusCoachStopCluster", "stationNaptan": "490G00248J", "hubNaptanCode": "HUBVIC", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490G00248J", "commonName": "Victoria Station", "placeType": "StopPoint", "additionalProperties": [], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000248J", "indicator": "Stop Z1", "stopLetter": "Z1", "modes": ["bus"], "icsCode": "1000248", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00248J", "hubNaptanCode": "HUBVIC", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000248J", "commonName": "Victoria Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.494767, "lon": -0.142619}], "lat": 51.494767, "lon": -0.142619}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "4900VICTRIC0", "indicator": "Entrance 4", "stopLetter": "4", "modes": [], "icsCode": "1000248", "stopType": "NaptanRailEntrance", "stationNaptan": "940GZZLUVIC", "hubNaptanCode": "HUBVIC", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "4900VICTRIC0", "commonName": "London Victoria Rail Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.495971, "lon": -0.143723}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "4900VICTRIC4", "indicator": "Entrance 3", "stopLetter": "3", "modes": [], "icsCode": "1000248", "stopType": "NaptanRailEntrance", "stationNaptan": "940GZZLUVIC", "hubNaptanCode": "HUBVIC", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "4900VICTRIC4", "commonName": "London Victoria Rail Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.496004, "lon": -0.14352}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "4900VICTRIC1", "indicator": "Entrance 1", "stopLetter": "1", "modes": [], "icsCode": "1000248", "stopType": "NaptanMetroEntrance", "stationNaptan": "940GZZLUVIC", "hubNaptanCode": "HUBVIC", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "4900VICTRIC1", "commonName": "Victoria Underground Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.496596, "lon": -0.143986}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "4900VICTRIC2", "indicator": "Entrance 2", "stopLetter": "2", "modes": [], "icsCode": "1000248", "stopType": "NaptanMetroEntrance", "stationNaptan": "940GZZLUVIC", "hubNaptanCode": "HUBVIC", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "4900VICTRIC2", "commonName": "Victoria Underground Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.496318, "lon": -0.144026}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "4900VICTRIC5", "indicator": "Entrance 7", "stopLetter": "7", "modes": [], "icsCode": "1000248", "stopType": "NaptanMetroEntrance", "stationNaptan": "940GZZLUVIC", "hubNaptanCode": "HUBVIC", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "4900VICTRIC5", "commonName": "Victoria Underground Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.494064, "lon": -0.146538}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "4900VICTRIC7", "indicator": "Entrance 6", "stopLetter": "6", "modes": [], "icsCode": "1000248", "stopType": "NaptanMetroEntrance", "stationNaptan": "940GZZLUVIC", "hubNaptanCode": "HUBVIC", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "4900VICTRIC7", "commonName": "Victoria Underground Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.494308, "lon": -0.143171}, {"$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": "9400ZZLUVIC", "modes": ["tube"], "icsCode": "1000248", "stopType": "NaptanMetroAccessArea", "stationNaptan": "940GZZLUVIC", "hubNaptanCode": "HUBVIC", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "9400ZZLUVIC", "commonName": "Victoria 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": "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": "Boarding Ramps", "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": "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": "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": "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": "Help Points", "sourceSystemKey": "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, taxi ranks outside station, 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": "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"}], "children": [], "lat": 51.496359, "lon": -0.143102}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUVIC1", "modes": ["tube"], "icsCode": "1000248", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUVIC", "hubNaptanCode": "HUBVIC", "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": "940GZZLUVIC", "lineIdentifier": ["circle", "district"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["circle", "district"]}], "status": true, "id": "9400ZZLUVIC1", "commonName": "Victoria 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": "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": "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": "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"}, {"$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": "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": "Help 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": "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": "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": "Payphones", "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"}], "children": [], "lat": 51.49645, "lon": -0.144899}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUVIC2", "modes": ["tube"], "icsCode": "1000248", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUVIC", "hubNaptanCode": "HUBVIC", "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": "940GZZLUVIC", "lineIdentifier": ["victoria"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["victoria"]}], "status": true, "id": "9400ZZLUVIC2", "commonName": "Victoria 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": "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": "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": "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": "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": "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": "Toilets", "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": "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"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}], "children": [], "lat": 51.49712, "lon": -0.14346}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUVIC3", "modes": ["tube"], "icsCode": "1000248", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUVIC", "hubNaptanCode": "HUBVIC", "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": "940GZZLUVIC", "lineIdentifier": ["victoria"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["victoria"]}], "status": true, "id": "9400ZZLUVIC3", "commonName": "Victoria 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": "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": "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": "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": "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": "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": "Boarding Ramps", "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": "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": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Victoria Underground Station,London Underground Ltd.,Victoria St,London,SW1E 5ND"}], "children": [], "lat": 51.497031, "lon": -0.143536}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUVIC4", "modes": ["tube"], "icsCode": "1000248", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUVIC", "hubNaptanCode": "HUBVIC", "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": "940GZZLUVIC", "lineIdentifier": ["district", "circle"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["district", "circle"]}], "status": true, "id": "9400ZZLUVIC4", "commonName": "Victoria 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": "Facility", "key": "Help Points", "sourceSystemKey": "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": "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"}, {"$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": "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, 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": "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": "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": "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"}], "children": [], "lat": 51.496969, "lon": -0.143596}], "lat": 51.496359, "lon": -0.143102}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "940GZZLUVXL", "modes": ["tube"], "icsCode": "1000247", "stopType": "NaptanMetroStation", "stationNaptan": "940GZZLUVXL", "hubNaptanCode": "HUBVXH", "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": "940GZZLUVXL", "lineIdentifier": ["victoria"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["victoria"]}], "status": true, "id": "940GZZLUVXL", "commonName": "Vauxhall 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": "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": "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": "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": "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": "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": "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": "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": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_74"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_146"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_270"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_437"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_600"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_813"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5533"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5490"}], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490G00247N", "modes": ["bus"], "icsCode": "1000247", "stopType": "NaptanOnstreetBusCoachStopCluster", "stationNaptan": "940GZZLUVXL", "hubNaptanCode": "HUBVXH", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490G00247N", "commonName": "Vauxhall", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.485743, "lon": -0.124204}, {"$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": "9400ZZLUVXL", "modes": ["tube"], "icsCode": "1000247", "stopType": "NaptanMetroAccessArea", "stationNaptan": "940GZZLUVXL", "hubNaptanCode": "HUBVXH", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "9400ZZLUVXL", "commonName": "Vauxhall 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": "Escalators", "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": "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": "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": "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": "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": "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": "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": "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"}], "children": [], "lat": 51.485743, "lon": -0.124204}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUVXL1", "modes": ["tube"], "icsCode": "1000247", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUVXL", "hubNaptanCode": "HUBVXH", "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": "940GZZLUVXL", "lineIdentifier": ["victoria"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["victoria"]}], "status": true, "id": "9400ZZLUVXL1", "commonName": "Vauxhall Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$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": "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": "Bridge", "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": "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": "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": "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": "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": "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": "Help Points", "sourceSystemKey": "StaticObjects", "value": "4 on platforms, 0 in ticket halls, 1 elsewhere"}], "children": [], "lat": 51.486216, "lon": -0.12453}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUVXL2", "modes": ["tube"], "icsCode": "1000247", "stopType": "NaptanRailAccessArea", "stationNaptan": "940GZZLUVXL", "hubNaptanCode": "HUBVXH", "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": "940GZZLUVXL", "lineIdentifier": ["victoria"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["victoria"]}], "status": true, "id": "9400ZZLUVXL2", "commonName": "Vauxhall", "placeType": "StopPoint", "additionalProperties": [{"$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": "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": "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, 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": "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": "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": "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": "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": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}], "children": [], "lat": 51.486216, "lon": -0.124516}], "lat": 51.485743, "lon": -0.124204}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "940GZZLUWAF", "modes": ["tube"], "icsCode": "1000255", "stopType": "NaptanMetroStation", "stationNaptan": "940GZZLUWAF", "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": "940GZZLUWAF", "lineIdentifier": ["metropolitan"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["metropolitan"]}], "status": true, "id": "940GZZLUWAF", "commonName": "Watford 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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "CarParks_800464"}], "children": [{"$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": "9400ZZLUWAF", "modes": ["tube"], "icsCode": "1000255", "stopType": "NaptanMetroAccessArea", "stationNaptan": "940GZZLUWAF", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "9400ZZLUWAF", "commonName": "Watford 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": "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": "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": "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": "7 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": "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": "Car park", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$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": "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": "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.657446, "lon": -0.417377}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUWAF1", "modes": ["tube"], "icsCode": "1000255", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUWAF", "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": "940GZZLUWAF", "lineIdentifier": ["metropolitan"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["metropolitan"]}], "status": true, "id": "9400ZZLUWAF1", "commonName": "Watford 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": "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": "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": "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": "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": "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": "7 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": "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": "Euro Cash Machines", "sourceSystemKey": "StaticObjects", "value": "yes"}], "children": [], "lat": 51.657327, "lon": -0.41861}], "lat": 51.657446, "lon": -0.417377}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "940GZZLUWBN", "modes": ["tube"], "icsCode": "1000260", "stopType": "NaptanMetroStation", "stationNaptan": "940GZZLUWBN", "hubNaptanCode": "HUBWBP", "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": "940GZZLUWBN", "lineIdentifier": ["district"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["district"]}], "status": true, "id": "940GZZLUWBN", "commonName": "West Brompton 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": "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": "Help 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": "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": "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 (part)."}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, 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": "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": "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": "9400ZZLUWBN", "modes": ["tube"], "icsCode": "1000260", "stopType": "NaptanMetroAccessArea", "stationNaptan": "940GZZLUWBN", "hubNaptanCode": "HUBWBP", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "9400ZZLUWBN", "commonName": "West Brompton 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": "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"}, {"$type": "Tfl.Api.Presentation.Entities.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)."}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.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": "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": "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": "Gates", "sourceSystemKey": "StaticObjects", "value": "3"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "2"}], "children": [], "lat": 51.487268, "lon": -0.195599}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUWBN1", "modes": ["tube"], "icsCode": "1000260", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUWBN", "hubNaptanCode": "HUBWBP", "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": "940GZZLUWBN", "lineIdentifier": ["district"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["district"]}], "status": true, "id": "9400ZZLUWBN1", "commonName": "West Brompton 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": "Help Points", "sourceSystemKey": "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": "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": "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": "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": "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": "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"}], "children": [], "lat": 51.486962, "lon": -0.195006}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUWBN2", "modes": ["tube"], "icsCode": "1000260", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUWBN", "hubNaptanCode": "HUBWBP", "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": "940GZZLUWBN", "lineIdentifier": ["district"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["district"]}], "status": true, "id": "9400ZZLUWBN2", "commonName": "West Brompton 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": "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": "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": "Facility", "key": "Photo 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": "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": "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": "Car park", "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.486916, "lon": -0.194921}], "lat": 51.487268, "lon": -0.195599}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "940GZZLUWCY", "modes": ["bus", "tube"], "icsCode": "1000269", "stopType": "NaptanMetroStation", "stationNaptan": "940GZZLUWCY", "lines": [{"$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": "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": "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": "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": "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": "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": "95", "name": "95", "uri": "/Line/95", "type": "Line", "crowding": {"$type": "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": "490000269B", "stationAtcoCode": "490G00269B", "lineIdentifier": ["n72", "220", "72", "228", "272", "95"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490000269N", "stationAtcoCode": "490G00269B", "lineIdentifier": ["n72", "220", "72", "228", "272", "95"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "940GZZLUWCY", "lineIdentifier": ["central"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "bus", "lineIdentifier": ["n72", "220", "72", "228", "272", "95"]}, {"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["central"]}], "status": true, "id": "940GZZLUWCY", "commonName": "White City 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": "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": "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": "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": "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": "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": "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": "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 (male, female)"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_566"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_601"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_652"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_741"}], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490G00269B", "modes": ["bus"], "icsCode": "1000269", "stopType": "NaptanOnstreetBusCoachStopCluster", "stationNaptan": "490G00269B", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490G00269B", "commonName": "White City Station", "placeType": "StopPoint", "additionalProperties": [], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000269B", "indicator": "Stop WA", "stopLetter": "WA", "modes": ["bus"], "icsCode": "1000269", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00269B", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000269B", "commonName": "White City Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.511765, "lon": -0.224664}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000269N", "indicator": "Stop WE", "stopLetter": "WE", "modes": ["bus"], "icsCode": "1000269", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00269B", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000269N", "commonName": "White City Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.512005, "lon": -0.225044}], "lat": 51.512005, "lon": -0.225044}, {"$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": "9400ZZLUWCY", "modes": ["tube"], "icsCode": "1000269", "stopType": "NaptanMetroAccessArea", "stationNaptan": "940GZZLUWCY", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "9400ZZLUWCY", "commonName": "White City 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": "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": "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": "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": "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": "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": "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.511959, "lon": -0.224297}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUWCY1", "modes": ["tube"], "icsCode": "1000269", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUWCY", "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": "940GZZLUWCY", "lineIdentifier": ["central"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["central"]}], "status": true, "id": "9400ZZLUWCY1", "commonName": "White City 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": "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": "White City Station,London Underground Ltd.,Wood Lane,London,W12 7RH"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.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": "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": "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": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "2"}], "children": [], "lat": 51.511991, "lon": -0.224022}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUWCY2", "modes": ["tube"], "icsCode": "1000269", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUWCY", "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": "940GZZLUWCY", "lineIdentifier": ["central"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["central"]}], "status": true, "id": "9400ZZLUWCY2", "commonName": "White City 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": "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": "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": "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": "0"}, {"$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": "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": "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": "Bridge", "sourceSystemKey": "StaticObjects", "value": "no"}], "children": [], "lat": 51.511967, "lon": -0.224239}], "lat": 51.511959, "lon": -0.224297}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "940GZZLUWFN", "modes": ["bus", "tube"], "icsCode": "1000261", "stopType": "NaptanMetroStation", "stationNaptan": "940GZZLUWFN", "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"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490000261N", "stationAtcoCode": "490G00261S", "lineIdentifier": ["326"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490000261S", "stationAtcoCode": "490G00261S", "lineIdentifier": ["326"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "940GZZLUWFN", "lineIdentifier": ["northern"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "bus", "lineIdentifier": ["326"]}, {"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["northern"]}], "status": true, "id": "940GZZLUWFN", "commonName": "West Finchley 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": "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": "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": "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": "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": "Escalators", "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": "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": "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": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490G00261S", "modes": ["bus"], "icsCode": "1000261", "stopType": "NaptanOnstreetBusCoachStopCluster", "stationNaptan": "490G00261S", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490G00261S", "commonName": "West Finchley Station", "placeType": "StopPoint", "additionalProperties": [], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000261N", "indicator": "->N", "stopLetter": "->N", "modes": ["bus"], "icsCode": "1000261", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00261S", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000261N", "commonName": "West Finchley Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.609583, "lon": -0.189872}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000261S", "indicator": "->S", "stopLetter": "->S", "modes": ["bus"], "icsCode": "1000261", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00261S", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000261S", "commonName": "West Finchley Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.609354, "lon": -0.189636}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000261ZH", "indicator": "->N", "stopLetter": "->N", "modes": ["bus"], "icsCode": "1000261", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00261S", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000261ZH", "commonName": "West Finchley Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.609592, "lon": -0.189857}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000261ZZ", "indicator": "->S", "stopLetter": "->S", "modes": ["bus"], "icsCode": "1000261", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00261S", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000261ZZ", "commonName": "West Finchley Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.609257, "lon": -0.189697}], "lat": 51.609354, "lon": -0.189636}, {"$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": "9400ZZLUWFN", "modes": ["tube"], "icsCode": "1000261", "stopType": "NaptanMetroAccessArea", "stationNaptan": "940GZZLUWFN", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "9400ZZLUWFN", "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": "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 Finchley Station,London Underground Ltd.,Nether Street,London,N3 1NT"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.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": "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": "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)"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.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": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "0 on platforms, 0 in ticket halls, 0 elsewhere"}], "children": [], "lat": 51.609426, "lon": -0.188362}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUWFN1", "modes": ["tube"], "icsCode": "1000261", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUWFN", "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": "940GZZLUWFN", "lineIdentifier": ["northern"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["northern"]}], "status": true, "id": "9400ZZLUWFN1", "commonName": "West Finchley 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": "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": "Boarding Ramps", "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": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "4"}, {"$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": "Help Points", "sourceSystemKey": "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": "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"}], "children": [], "lat": 51.60941, "lon": -0.188449}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUWFN2", "modes": ["tube"], "icsCode": "1000261", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUWFN", "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": "940GZZLUWFN", "lineIdentifier": ["northern"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["northern"]}], "status": true, "id": "9400ZZLUWFN2", "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": "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": "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": "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": "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": "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"}], "children": [], "lat": 51.609356, "lon": -0.188466}], "lat": 51.609426, "lon": -0.188362}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "940GZZLUWHM", "modes": ["tube"], "icsCode": "1000262", "stopType": "NaptanMetroStation", "stationNaptan": "940GZZLUWHM", "hubNaptanCode": "HUBWEH", "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": "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": "940GZZLUWHM", "lineIdentifier": ["jubilee"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "940GZZLUWHM", "lineIdentifier": ["district", "hammersmith-city"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["jubilee", "district", "hammersmith-city"]}], "status": true, "id": "940GZZLUWHM", "commonName": "West Ham 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": "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": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "West Ham Underground Station,London Underground Ltd.,Manor Rd,London,E15 3BN"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "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": "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": "Escalators", "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": "ServiceInfo", "key": "Night", "sourceSystemKey": "TransXchangeETL", "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": "Photo 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"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.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": "TaxiRank_5826"}], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUWHM", "modes": ["tube"], "icsCode": "1000262", "stopType": "NaptanMetroAccessArea", "stationNaptan": "940GZZLUWHM", "hubNaptanCode": "HUBWEH", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "9400ZZLUWHM", "commonName": "West Ham 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": "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": "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": "2/3"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "West Ham Underground Station,London Underground Ltd.,Manor Rd,London,E15 3BN"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.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": "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": "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": "Photo 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.528136, "lon": 0.005055}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUWHM1", "indicator": "Platform 1", "stopLetter": "1", "modes": ["tube"], "icsCode": "1000262", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUWHM", "hubNaptanCode": "HUBWEH", "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": "940GZZLUWHM", "lineIdentifier": ["hammersmith-city", "district"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["hammersmith-city", "district"]}], "status": true, "id": "9400ZZLUWHM1", "commonName": "West Ham Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "West Ham Underground Station,London Underground Ltd.,Manor Rd,London,E15 3BN"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.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": "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": "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": "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": "Photo 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": "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": "Escalators", "sourceSystemKey": "StaticObjects", "value": "6"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "2"}], "children": [], "lat": 51.528558, "lon": 0.005593}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUWHM2", "indicator": "Platform 2", "stopLetter": "2", "modes": ["tube"], "icsCode": "1000262", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUWHM", "hubNaptanCode": "HUBWEH", "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": "940GZZLUWHM", "lineIdentifier": ["jubilee"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["jubilee"]}], "status": true, "id": "9400ZZLUWHM2", "commonName": "West Ham 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": "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": "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": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "West Ham Underground Station,London Underground Ltd.,Manor Rd,London,E15 3BN"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.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": "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": "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": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "0"}], "children": [], "lat": 51.528648, "lon": 0.005597}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUWHM3", "indicator": "Platform 5", "stopLetter": "5", "modes": ["tube"], "icsCode": "1000262", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUWHM", "hubNaptanCode": "HUBWEH", "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": "940GZZLUWHM", "lineIdentifier": ["district", "hammersmith-city"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["district", "hammersmith-city"]}], "status": true, "id": "9400ZZLUWHM3", "commonName": "West Ham 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": "Facility", "key": "Toilets", "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": "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": "Photo 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": "West Ham Underground Station,London Underground Ltd.,Manor Rd,London,E15 3BN"}, {"$type": "Tfl.Api.Presentation.Entities.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/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": "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.527511, "lon": 0.004264}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUWHM4", "indicator": "Platform 6", "stopLetter": "6", "modes": ["tube"], "icsCode": "1000262", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUWHM", "hubNaptanCode": "HUBWEH", "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": "940GZZLUWHM", "lineIdentifier": ["jubilee"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["jubilee"]}], "status": true, "id": "9400ZZLUWHM4", "commonName": "West Ham 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": "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": "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": "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": "Boarding Ramps", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "West Ham Underground Station,London Underground Ltd.,Manor Rd,London,E15 3BN"}, {"$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": "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": "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"}], "children": [], "lat": 51.527514, "lon": 0.00412}], "lat": 51.528136, "lon": 0.005055}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "940GZZLUWHP", "modes": ["tube"], "icsCode": "1000263", "stopType": "NaptanMetroStation", "stationNaptan": "940GZZLUWHP", "hubNaptanCode": "HUBWHD", "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": "940GZZLUWHP", "lineIdentifier": ["jubilee"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["jubilee"]}], "status": true, "id": "940GZZLUWHP", "commonName": "West Hampstead 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": "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": "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": "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": "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": "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": "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": "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."}], "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": [{"$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": "9400ZZLUWHP", "modes": ["tube"], "icsCode": "1000263", "stopType": "NaptanMetroAccessArea", "stationNaptan": "940GZZLUWHP", "hubNaptanCode": "HUBWHD", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "9400ZZLUWHP", "commonName": "West Hampstead 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": "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": "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": "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": "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": "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": "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.546638, "lon": -0.191059}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUWHP1", "modes": ["tube"], "icsCode": "1000263", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUWHP", "hubNaptanCode": "HUBWHD", "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": "940GZZLUWHP", "lineIdentifier": ["jubilee"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["jubilee"]}], "status": true, "id": "9400ZZLUWHP1", "commonName": "West Hampstead 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": "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": "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": "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": "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": "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": "Escalators", "sourceSystemKey": "StaticObjects", "value": "0"}], "children": [], "lat": 51.5468, "lon": -0.190475}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUWHP2", "modes": ["tube"], "icsCode": "1000263", "stopType": "NaptanRailAccessArea", "stationNaptan": "940GZZLUWHP", "hubNaptanCode": "HUBWHD", "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": "940GZZLUWHP", "lineIdentifier": ["jubilee"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["jubilee"]}], "status": true, "id": "9400ZZLUWHP2", "commonName": "West Hampstead 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": "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": "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": "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": "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": "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": "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": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$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"}], "children": [], "lat": 51.546809, "lon": -0.190475}], "lat": 51.546638, "lon": -0.191059}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "940GZZLUWHW", "modes": ["tube"], "icsCode": "1000264", "stopType": "NaptanMetroStation", "stationNaptan": "940GZZLUWHW", "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": "940GZZLUWHW", "lineIdentifier": ["metropolitan"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["metropolitan"]}], "status": true, "id": "940GZZLUWHW", "commonName": "West 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": "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": "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": "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": "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": "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": "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"}], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490G00264S", "modes": ["bus"], "icsCode": "1000264", "stopType": "NaptanOnstreetBusCoachStopCluster", "stationNaptan": "490G00264S", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490G00264S", "commonName": "West Harrow Station", "placeType": "StopPoint", "additionalProperties": [], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000264S", "indicator": "->S", "stopLetter": "->S", "modes": ["bus"], "icsCode": "1000264", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00264S", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000264S", "commonName": "West Harrow Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.582859, "lon": -0.353603}], "lat": 51.582859, "lon": -0.353603}, {"$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": "9400ZZLUWHW", "modes": ["tube"], "icsCode": "1000264", "stopType": "NaptanMetroAccessArea", "stationNaptan": "940GZZLUWHW", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "9400ZZLUWHW", "commonName": "West Harrow Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$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": "Gates", "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": "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": "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": "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": "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"}], "children": [], "lat": 51.57971, "lon": -0.3534}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUWHW1", "modes": ["tube"], "icsCode": "1000264", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUWHW", "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": "940GZZLUWHW", "lineIdentifier": ["metropolitan"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["metropolitan"]}], "status": true, "id": "9400ZZLUWHW1", "commonName": "West Harrow Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$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": "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": "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": "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": "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": "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": "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"}], "children": [], "lat": 51.579811, "lon": -0.353497}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUWHW2", "modes": ["tube"], "icsCode": "1000264", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUWHW", "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": "940GZZLUWHW", "lineIdentifier": ["metropolitan"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["metropolitan"]}], "status": true, "id": "9400ZZLUWHW2", "commonName": "West Harrow 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": "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": "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": "Payphones", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$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": "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": "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.579767, "lon": -0.353585}], "lat": 51.57971, "lon": -0.3534}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "940GZZLUWIG", "modes": ["bus", "tube"], "icsCode": "1000270", "stopType": "NaptanMetroStation", "stationNaptan": "940GZZLUWIG", "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": "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": "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": "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": "460", "name": "460", "uri": "/Line/460", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "940GZZLUWIG", "lineIdentifier": ["jubilee"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490000270A", "stationAtcoCode": "490G00270W", "lineIdentifier": ["n266", "260", "266", "460"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490000270B", "stationAtcoCode": "490G00270W", "lineIdentifier": ["n266", "260", "266", "460"]}], "lineModeGroups": [{"$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": ["n266", "260", "266", "460"]}], "status": true, "id": "940GZZLUWIG", "commonName": "Willesden Green 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": "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": "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": "2+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": "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": "Euro Cash Machines", "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": "Help Points", "sourceSystemKey": "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": "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": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5503"}], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490G00270W", "modes": ["bus"], "icsCode": "1000270", "stopType": "NaptanOnstreetBusCoachStopCluster", "stationNaptan": "490G00270W", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490G00270W", "commonName": "Willesden Green Station", "placeType": "StopPoint", "additionalProperties": [], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000270A", "indicator": "Stop A", "stopLetter": "A", "modes": ["bus"], "icsCode": "1000270", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00270W", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000270A", "commonName": "Willesden Green Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.549107, "lon": -0.220889}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000270B", "indicator": "Stop B", "stopLetter": "B", "modes": ["bus"], "icsCode": "1000270", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00270W", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000270B", "commonName": "Willesden Green Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.548883, "lon": -0.221518}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000270W", "indicator": "Stop", "modes": ["bus"], "icsCode": "1000270", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00270W", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000270W", "commonName": "Willesden Green Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.549367, "lon": -0.221398}], "lat": 51.549367, "lon": -0.221398}, {"$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": "9400ZZLUWIG", "modes": ["tube"], "icsCode": "1000270", "stopType": "NaptanMetroAccessArea", "stationNaptan": "940GZZLUWIG", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "9400ZZLUWIG", "commonName": "Willesden Green 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": "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": "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": "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": "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": "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": "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": "Help Points", "sourceSystemKey": "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": "0"}], "children": [], "lat": 51.549146, "lon": -0.221537}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUWIG1", "modes": ["tube"], "icsCode": "1000270", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUWIG", "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": "940GZZLUWIG", "lineIdentifier": ["jubilee"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["jubilee"]}], "status": true, "id": "9400ZZLUWIG1", "commonName": "Willesden Green 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": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$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": "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": "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": "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": "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": "2+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": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}], "children": [], "lat": 51.549348, "lon": -0.221846}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUWIG2", "modes": ["tube"], "icsCode": "1000270", "stopType": "NaptanRailAccessArea", "stationNaptan": "940GZZLUWIG", "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": "940GZZLUWIG", "lineIdentifier": ["jubilee"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["jubilee"]}], "status": true, "id": "9400ZZLUWIG2", "commonName": "Willesden Green 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": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$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": "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": "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": "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": "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": "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.549348, "lon": -0.221846}], "lat": 51.549146, "lon": -0.221537}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "940GZZLUWIM", "modes": ["tube"], "icsCode": "1000272", "stopType": "NaptanMetroStation", "stationNaptan": "940GZZLUWIM", "hubNaptanCode": "HUBWIM", "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": "940GZZLUWIM", "lineIdentifier": ["district"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["district"]}], "status": true, "id": "940GZZLUWIM", "commonName": "Wimbledon 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": "Toilets", "sourceSystemKey": "StaticObjects", "value": "yes (male, female)"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Wimbledon,London Underground Ltd.,The Broadway,London,SW19 7NL"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo 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": "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": "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": "Lifts", "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": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5382"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5128"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5691"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5679"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5692"}], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUWIM", "modes": ["tube"], "icsCode": "1000272", "stopType": "NaptanMetroAccessArea", "stationNaptan": "940GZZLUWIM", "hubNaptanCode": "HUBWIM", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "9400ZZLUWIM", "commonName": "Wimbledon 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": "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": "Wimbledon,London Underground Ltd.,The Broadway,London,SW19 7NL"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.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": "Facility", "key": "Help Points", "sourceSystemKey": "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": "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": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.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": "Gates", "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.421207, "lon": -0.206573}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUWIM1", "modes": ["tube"], "icsCode": "1000272", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUWIM", "hubNaptanCode": "HUBWIM", "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": "940GZZLUWIM", "lineIdentifier": ["district"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["district"]}], "status": true, "id": "9400ZZLUWIM1", "commonName": "Wimbledon 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": "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": "Toilets", "sourceSystemKey": "StaticObjects", "value": "yes (male, female)"}, {"$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": "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": "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": "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": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Wimbledon,London Underground Ltd.,The Broadway,London,SW19 7NL"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "0"}], "children": [], "lat": 51.421342, "lon": -0.206625}], "lat": 51.421207, "lon": -0.206573}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "940GZZLUWIP", "modes": ["tube"], "icsCode": "1000273", "stopType": "NaptanMetroStation", "stationNaptan": "940GZZLUWIP", "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": "940GZZLUWIP", "lineIdentifier": ["district"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["district"]}], "status": true, "id": "940GZZLUWIP", "commonName": "Wimbledon 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": "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"}, {"$type": "Tfl.Api.Presentation.Entities.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 (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": "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": "Wimbledon Park Station,Arthur Rd,London,SW19 "}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.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": "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"}], "children": [{"$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": "9400ZZLUWIP", "modes": ["tube"], "icsCode": "1000273", "stopType": "NaptanMetroAccessArea", "stationNaptan": "940GZZLUWIP", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "9400ZZLUWIP", "commonName": "Wimbledon 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": "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": "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": "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": "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": "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": "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"}], "children": [], "lat": 51.434573, "lon": -0.199719}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUWIP1", "modes": ["tube"], "icsCode": "1000273", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUWIP", "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": "940GZZLUWIP", "lineIdentifier": ["district"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["district"]}], "status": true, "id": "9400ZZLUWIP1", "commonName": "Wimbledon Park 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": "no"}, {"$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": "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": "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": "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.434323, "lon": -0.199311}], "lat": 51.434573, "lon": -0.199719}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "940GZZLUWJN", "modes": ["tube"], "icsCode": "1000271", "stopType": "NaptanMetroStation", "stationNaptan": "940GZZLUWJN", "hubNaptanCode": "HUBWIJ", "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": "940GZZLUWJN", "lineIdentifier": ["bakerloo"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["bakerloo"]}], "status": true, "id": "940GZZLUWJN", "commonName": "Willesden Junction 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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "SunTo", "sourceSystemKey": "StaticObjects", "value": "18:30"}], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUWJN", "modes": ["tube"], "icsCode": "1000271", "stopType": "NaptanMetroAccessArea", "stationNaptan": "940GZZLUWJN", "hubNaptanCode": "HUBWIJ", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "9400ZZLUWJN", "commonName": "Willesden Junction 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": "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": "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": "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": "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": "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": "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": "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": "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"}], "children": [], "lat": 51.532259, "lon": -0.244283}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUWJN1", "modes": ["tube"], "icsCode": "1000271", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUWJN", "hubNaptanCode": "HUBWIJ", "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": "940GZZLUWJN", "lineIdentifier": ["bakerloo"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["bakerloo"]}], "status": true, "id": "9400ZZLUWJN1", "commonName": "Willesden Junction 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": "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": "Willesden Junction,London Overground Ltd.,Station Approach,Harlesden,NW10 4UY"}, {"$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": "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": "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": "Lifts", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$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": "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": "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": "18: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": "Car park", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$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": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "no"}], "children": [], "lat": 51.532496, "lon": -0.24449}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUWJN2", "modes": ["tube"], "icsCode": "1000271", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUWJN", "hubNaptanCode": "HUBWIJ", "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": "940GZZLUWJN", "lineIdentifier": ["bakerloo"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["bakerloo"]}], "status": true, "id": "9400ZZLUWJN2", "commonName": "Willesden Junction 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": "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": "Opening Time", "key": "MonFriFrom", "sourceSystemKey": "StaticObjects", "value": "06: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": "Opening Time", "key": "SunFrom", "sourceSystemKey": "StaticObjects", "value": "09:15"}, {"$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": "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": "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": "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": "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": "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": "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": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}], "children": [], "lat": 51.532398, "lon": -0.244537}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUWJN3", "modes": ["tube"], "icsCode": "1000271", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUWJN", "hubNaptanCode": "HUBWIJ", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "9400ZZLUWJN3", "commonName": "Willesden Junction 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": "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": "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": "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": "Help Points", "sourceSystemKey": "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": "09:15"}, {"$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": "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 London Overground only"}, {"$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": "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": "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": "Opening Time", "key": "MonFriFrom", "sourceSystemKey": "StaticObjects", "value": "06:30"}], "children": [], "lat": 51.532325, "lon": -0.244468}], "lat": 51.532259, "lon": -0.244283}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "940GZZLUWKA", "modes": ["bus", "tube"], "icsCode": "1000253", "stopType": "NaptanMetroStation", "stationNaptan": "940GZZLUWKA", "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": "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": "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": "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": "6", "name": "6", "uri": "/Line/6", "type": "Line", "crowding": {"$type": "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": "490000253H", "stationAtcoCode": "490G00253H", "lineIdentifier": ["46", "16", "187", "6"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490000253K", "stationAtcoCode": "490G00253H", "lineIdentifier": ["46", "187", "6"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "940GZZLUWKA", "lineIdentifier": ["bakerloo"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "bus", "lineIdentifier": ["46", "16", "187", "6"]}, {"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["bakerloo"]}], "status": true, "id": "940GZZLUWKA", "commonName": "Warwick Avenue 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": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_255"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_47"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5702"}, {"$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": "Waiting Room", "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"}, {"$type": "Tfl.Api.Presentation.Entities.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": "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": "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": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490G00253H", "modes": ["bus"], "icsCode": "1000253", "stopType": "NaptanOnstreetBusCoachStopCluster", "stationNaptan": "490G00253H", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490G00253H", "commonName": "Warwick Avenue Station", "placeType": "StopPoint", "additionalProperties": [], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000253H", "indicator": "Stop H", "stopLetter": "H", "modes": ["bus"], "icsCode": "1000253", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00253H", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000253H", "commonName": "Warwick Avenue Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.523615, "lon": -0.183423}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000253K", "indicator": "Stop K", "stopLetter": "K", "modes": ["bus"], "icsCode": "1000253", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00253H", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000253K", "commonName": "Warwick Avenue Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.523689, "lon": -0.183579}], "lat": 51.523615, "lon": -0.183423}, {"$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": "9400ZZLUWKA", "modes": ["tube"], "icsCode": "1000253", "stopType": "NaptanMetroAccessArea", "stationNaptan": "940GZZLUWKA", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "9400ZZLUWKA", "commonName": "Warwick Avenue 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": "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": "Waiting Room", "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": "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": "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": "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": "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.523263, "lon": -0.183783}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUWKA1", "modes": ["tube"], "icsCode": "1000253", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUWKA", "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": "940GZZLUWKA", "lineIdentifier": ["bakerloo"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["bakerloo"]}], "status": true, "id": "9400ZZLUWKA1", "commonName": "Warwick Avenue Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$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": "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": "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": "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": "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": "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": "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"}], "children": [], "lat": 51.522973, "lon": -0.183103}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUWKA2", "modes": ["tube"], "icsCode": "1000253", "stopType": "NaptanRailAccessArea", "stationNaptan": "940GZZLUWKA", "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": "940GZZLUWKA", "lineIdentifier": ["bakerloo"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["bakerloo"]}], "status": true, "id": "9400ZZLUWKA2", "commonName": "Warwick Avenue", "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": "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": "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": "Bridge", "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": "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": "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": "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": "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.522973, "lon": -0.183103}], "lat": 51.523263, "lon": -0.183783}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "940GZZLUWKN", "modes": ["bus", "tube"], "icsCode": "1000265", "stopType": "NaptanMetroStation", "stationNaptan": "940GZZLUWKN", "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": "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": "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": "n28", "name": "N28", "uri": "/Line/n28", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "940GZZLUWKN", "lineIdentifier": ["district"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490000265A", "stationAtcoCode": "490G00265W", "lineIdentifier": ["306", "28", "n28"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490000265B", "stationAtcoCode": "490G00265W", "lineIdentifier": ["306", "28", "n28"]}], "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": "bus", "lineIdentifier": ["306", "28", "n28"]}], "status": true, "id": "940GZZLUWKN", "commonName": "West Kensington 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": "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": "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": "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": "Gates", "sourceSystemKey": "StaticObjects", "value": "4"}, {"$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": "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": "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": "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_633"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_660"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_720"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_770"}], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490G00265W", "modes": ["bus"], "icsCode": "1000265", "stopType": "NaptanOnstreetBusCoachStopCluster", "stationNaptan": "490G00265W", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490G00265W", "commonName": "West Kensington Station", "placeType": "StopPoint", "additionalProperties": [], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000265A", "indicator": "Stop S", "stopLetter": "S", "modes": ["bus"], "icsCode": "1000265", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00265W", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000265A", "commonName": "West Kensington Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.490565, "lon": -0.206632}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000265B", "indicator": "Stop T", "stopLetter": "T", "modes": ["bus"], "icsCode": "1000265", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00265W", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000265B", "commonName": "West Kensington Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.489916, "lon": -0.206485}], "lat": 51.489916, "lon": -0.206485}, {"$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": "9400ZZLUWKN", "modes": ["tube"], "icsCode": "1000265", "stopType": "NaptanMetroAccessArea", "stationNaptan": "940GZZLUWKN", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "9400ZZLUWKN", "commonName": "West Kensington 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": "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": "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": "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": "Help 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": "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, post office style queuing for tickets, routeways platform to ticket hall."}], "children": [], "lat": 51.490459, "lon": -0.206636}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUWKN1", "modes": ["tube"], "icsCode": "1000265", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUWKN", "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": "940GZZLUWKN", "lineIdentifier": ["district"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["district"]}], "status": true, "id": "9400ZZLUWKN1", "commonName": "West Kensington 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": "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": "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": "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": "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": "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": "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": "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"}], "children": [], "lat": 51.49083, "lon": -0.20619}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUWKN2", "modes": ["tube"], "icsCode": "1000265", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUWKN", "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": "940GZZLUWKN", "lineIdentifier": ["district"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["district"]}], "status": true, "id": "9400ZZLUWKN2", "commonName": "West Kensington 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": "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": "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": "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": "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": "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": "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": "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.490846, "lon": -0.206088}], "lat": 51.490459, "lon": -0.206636}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "940GZZLUWLA", "modes": ["tube"], "icsCode": "1000278", "stopType": "NaptanMetroStation", "stationNaptan": "940GZZLUWLA", "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": "940GZZLUWLA", "lineIdentifier": ["circle", "hammersmith-city"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["circle", "hammersmith-city"]}], "status": true, "id": "940GZZLUWLA", "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": "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": "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": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_566"}, {"$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_652"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5931"}, {"$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": "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": "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": "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"}], "children": [{"$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": "9400ZZLUWLA", "modes": ["tube"], "icsCode": "1000278", "stopType": "NaptanMetroAccessArea", "stationNaptan": "940GZZLUWLA", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "9400ZZLUWLA", "commonName": "Wood Lane 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": "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": "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": "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": "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": "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": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.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": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "2"}], "children": [], "lat": 51.509669, "lon": -0.22453}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUWLA1", "modes": ["tube"], "icsCode": "1000278", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUWLA", "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": "940GZZLUWLA", "lineIdentifier": ["circle", "hammersmith-city"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["circle", "hammersmith-city"]}], "status": true, "id": "9400ZZLUWLA1", "commonName": "Wood Lane 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": "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": "Car park", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$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": "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": "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": "Toilets", "sourceSystemKey": "StaticObjects", "value": "no"}], "children": [], "lat": 51.509658, "lon": -0.224401}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUWLA2", "modes": ["tube"], "icsCode": "1000278", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUWLA", "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": "940GZZLUWLA", "lineIdentifier": ["circle", "hammersmith-city"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["circle", "hammersmith-city"]}], "status": true, "id": "9400ZZLUWLA2", "commonName": "Wood 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": "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": "Help Points", "sourceSystemKey": "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": "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": "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": "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": "Payphones", "sourceSystemKey": "StaticObjects", "value": "0"}], "children": [], "lat": 51.509639, "lon": -0.224329}], "lat": 51.509669, "lon": -0.22453}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "940GZZLUWLO", "modes": ["tube"], "icsCode": "1000254", "stopType": "NaptanMetroStation", "stationNaptan": "940GZZLUWLO", "hubNaptanCode": "HUBWAT", "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"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "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": "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": "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": "940GZZLUWLO", "lineIdentifier": ["waterloo-city"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "940GZZLUWLO", "lineIdentifier": ["northern"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "940GZZLUWLO", "lineIdentifier": ["jubilee"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "940GZZLUWLO", "lineIdentifier": ["bakerloo"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["waterloo-city", "northern", "jubilee", "bakerloo"]}], "status": true, "id": "940GZZLUWLO", "commonName": "Waterloo 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": "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": "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": "Ticket Halls", "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": "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": "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": "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, 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": "46"}, {"$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": "Payphones", "sourceSystemKey": "StaticObjects", "value": "6"}, {"$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": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_154"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_173"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_197"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_272"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_273"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_334"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_336"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_347"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_361"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_374"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_377"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_672"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_815"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_819"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5940"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5974"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5279"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5973"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5563"}], "children": [{"$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": "9400ZZLUWLO", "modes": ["tube"], "icsCode": "1000254", "stopType": "NaptanMetroAccessArea", "stationNaptan": "940GZZLUWLO", "hubNaptanCode": "HUBWAT", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "9400ZZLUWLO", "commonName": "Waterloo 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": "Escalators", "sourceSystemKey": "StaticObjects", "value": "23"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.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": "46"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo 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": "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": "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": "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": "Help 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": "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": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "3"}], "children": [], "lat": 51.503299, "lon": -0.11478}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUWLO1", "modes": ["tube"], "icsCode": "1000254", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUWLO", "hubNaptanCode": "HUBWAT", "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": "940GZZLUWLO", "lineIdentifier": ["bakerloo"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["bakerloo"]}], "status": true, "id": "9400ZZLUWLO1", "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": "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": "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": "Help Points", "sourceSystemKey": "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": "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": "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": "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": "Ticket Halls", "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": "yes"}], "children": [], "lat": 51.503097, "lon": -0.11512}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUWLO2", "modes": ["tube"], "icsCode": "1000254", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUWLO", "hubNaptanCode": "HUBWAT", "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": "940GZZLUWLO", "lineIdentifier": ["bakerloo"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["bakerloo"]}], "status": true, "id": "9400ZZLUWLO2", "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": "Photo 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": "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": "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": "Payphones", "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": "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": "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": "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": "Car park", "sourceSystemKey": "StaticObjects", "value": "no"}], "children": [], "lat": 51.503052, "lon": -0.115093}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUWLO3", "modes": ["tube"], "icsCode": "1000254", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUWLO", "hubNaptanCode": "HUBWAT", "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": "940GZZLUWLO", "lineIdentifier": ["northern"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["northern"]}], "status": true, "id": "9400ZZLUWLO3", "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": "Facility", "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": "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": "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": "Help 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": "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": "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": "Escalators", "sourceSystemKey": "StaticObjects", "value": "23"}, {"$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": "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": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}], "children": [], "lat": 51.503189, "lon": -0.113574}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUWLO4", "modes": ["tube"], "icsCode": "1000254", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUWLO", "hubNaptanCode": "HUBWAT", "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": "940GZZLUWLO", "lineIdentifier": ["jubilee"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["jubilee"]}], "status": true, "id": "9400ZZLUWLO4", "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": "Photo 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": "Waterloo Underground Station,London Underground Ltd.,York Rd,London,SE1 7ND"}, {"$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": "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": "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": "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": "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": "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.503333, "lon": -0.113021}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUWLO5", "modes": ["tube"], "icsCode": "1000254", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUWLO", "hubNaptanCode": "HUBWAT", "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": "940GZZLUWLO", "lineIdentifier": ["waterloo-city"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["waterloo-city"]}], "status": true, "id": "9400ZZLUWLO5", "commonName": "Waterloo 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": "Payphones", "sourceSystemKey": "StaticObjects", "value": "6"}, {"$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": "Gates", "sourceSystemKey": "StaticObjects", "value": "46"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo 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": "Waterloo Underground Station,London Underground Ltd.,York Rd,London,SE1 7ND"}, {"$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": "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": "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, post office style queuing for tickets, routeways platform to ticket hall."}], "children": [], "lat": 51.502683, "lon": -0.112875}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUWLO6", "modes": ["tube"], "icsCode": "1000254", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUWLO", "hubNaptanCode": "HUBWAT", "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": "940GZZLUWLO", "lineIdentifier": ["waterloo-city"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["waterloo-city"]}], "status": true, "id": "9400ZZLUWLO6", "commonName": "Waterloo Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$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": "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": "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": "Payphones", "sourceSystemKey": "StaticObjects", "value": "6"}, {"$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": "Help Points", "sourceSystemKey": "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": "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": "23"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "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.502738, "lon": -0.11293}], "lat": 51.503299, "lon": -0.11478}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "940GZZLUWOF", "modes": ["tube", "bus"], "icsCode": "1000274", "stopType": "NaptanMetroStation", "stationNaptan": "940GZZLUWOF", "lines": [{"$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": "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": "549", "name": "549", "uri": "/Line/549", "type": "Line", "crowding": {"$type": "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": "490000274A", "stationAtcoCode": "490G00274S", "lineIdentifier": ["275", "549"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490000274C", "stationAtcoCode": "490G00274S", "lineIdentifier": ["275"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "940GZZLUWOF", "lineIdentifier": ["central"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490000274B", "stationAtcoCode": "490G00274S", "lineIdentifier": ["549"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "bus", "lineIdentifier": ["275", "549"]}, {"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["central"]}], "status": true, "id": "940GZZLUWOF", "commonName": "Woodford 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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "CarParks_800498"}], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490G00274S", "modes": ["bus"], "icsCode": "1000274", "stopType": "NaptanOnstreetBusCoachStopCluster", "stationNaptan": "490G00274S", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490G00274S", "commonName": "Woodford Station", "placeType": "StopPoint", "additionalProperties": [], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000274A", "indicator": "Stop A", "stopLetter": "A", "modes": ["bus"], "icsCode": "1000274", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00274S", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000274A", "commonName": "Woodford Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.607434, "lon": 0.035742}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000274B", "indicator": "Stop B", "stopLetter": "B", "modes": ["bus"], "icsCode": "1000274", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00274S", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000274B", "commonName": "Woodford Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.608648, "lon": 0.036749}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000274C", "indicator": "Stop R", "stopLetter": "R", "modes": ["bus"], "icsCode": "1000274", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00274S", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000274C", "commonName": "Woodford Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.607664, "lon": 0.036474}], "lat": 51.607664, "lon": 0.036474}, {"$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": "9400ZZLUWOF", "modes": ["tube"], "icsCode": "1000274", "stopType": "NaptanMetroAccessArea", "stationNaptan": "940GZZLUWOF", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "9400ZZLUWOF", "commonName": "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, subway to street."}, {"$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": "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": "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": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$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": "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": "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": "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": "Gates", "sourceSystemKey": "StaticObjects", "value": "6"}], "children": [], "lat": 51.606899, "lon": 0.03397}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUWOF1", "modes": ["tube"], "icsCode": "1000274", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUWOF", "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": "940GZZLUWOF", "lineIdentifier": ["central"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["central"]}], "status": true, "id": "9400ZZLUWOF1", "commonName": "Woodford 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": "post office style queuing for tickets, subway to street."}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, 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": "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": "Payphones", "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": "Help Points", "sourceSystemKey": "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": "Boarding Ramps", "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": "Facility", "key": "Lifts", "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": "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": "Toilets", "sourceSystemKey": "StaticObjects", "value": "yes (male, female)"}], "children": [], "lat": 51.607181, "lon": 0.033781}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUWOF2", "modes": ["tube"], "icsCode": "1000274", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUWOF", "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": "940GZZLUWOF", "lineIdentifier": ["central"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["central"]}], "status": true, "id": "9400ZZLUWOF2", "commonName": "Woodford 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": "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": "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": "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": "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": "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": "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": "Help Points", "sourceSystemKey": "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": "Woodford Station,London Underground Ltd.,Snakes Lane,Woodford Green,Essex"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.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"}], "children": [], "lat": 51.607128, "lon": 0.03375}], "lat": 51.606899, "lon": 0.03397}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "940GZZLUWOG", "modes": ["tube", "bus"], "icsCode": "1000275", "stopType": "NaptanMetroStation", "stationNaptan": "940GZZLUWOG", "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": "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": "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": "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": "w4", "name": "W4", "uri": "/Line/w4", "type": "Line", "crowding": {"$type": "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": "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": "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": "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": "329", "name": "329", "uri": "/Line/329", "type": "Line", "crowding": {"$type": "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": "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": "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": "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": "121", "name": "121", "uri": "/Line/121", "type": "Line", "crowding": {"$type": "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": "490014854HB", "stationAtcoCode": "490G00275D", "lineIdentifier": ["230", "29", "67", "144", "123"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490000275D", "stationAtcoCode": "490G00275D", "lineIdentifier": ["141", "232", "w4", "n91", "n29", "329", "221", "121"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490015567H", "stationAtcoCode": "490G00275D", "lineIdentifier": ["141", "232", "n91", "n29", "329", "221", "121"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "940GZZLUWOG", "lineIdentifier": ["piccadilly"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490000275F", "stationAtcoCode": "490G00275D", "lineIdentifier": ["144", "w3", "243"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "bus", "lineIdentifier": ["230", "141", "29", "232", "w4", "n91", "67", "n29", "144", "329", "w3", "123", "243", "221", "121"]}, {"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["piccadilly"]}], "status": true, "id": "940GZZLUWOG", "commonName": "Wood Green 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": "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": "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": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.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": "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": "Gates", "sourceSystemKey": "StaticObjects", "value": "7"}, {"$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": "Toilets", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5526"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5527"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5564"}], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490G00275D", "modes": ["bus"], "icsCode": "1000275", "stopType": "NaptanOnstreetBusCoachStopCluster", "stationNaptan": "490G00275D", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490G00275D", "commonName": "Wood Green Station", "placeType": "StopPoint", "additionalProperties": [], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000275D", "indicator": "Stop D", "stopLetter": "D", "modes": ["bus"], "icsCode": "1000275", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00275D", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000275D", "commonName": "Wood Green Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.59759, "lon": -0.110185}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000275F", "indicator": "Stop F", "stopLetter": "F", "modes": ["bus"], "icsCode": "1000275", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00275D", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000275F", "commonName": "Wood Green Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.597177, "lon": -0.10909}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490014854HB", "indicator": "Stop HB", "stopLetter": "HB", "modes": ["bus"], "icsCode": "1000275", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00275D", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490014854HB", "commonName": "Wood Green Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.595784, "lon": -0.109134}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490015567H", "indicator": "Stop H", "stopLetter": "H", "modes": ["bus"], "icsCode": "1000275", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00275D", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490015567H", "commonName": "Wood Green Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.596588, "lon": -0.109952}], "lat": 51.59759, "lon": -0.110185}, {"$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": "9400ZZLUWOG", "modes": ["tube"], "icsCode": "1000275", "stopType": "NaptanMetroAccessArea", "stationNaptan": "940GZZLUWOG", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "9400ZZLUWOG", "commonName": "Wood Green 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": "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": "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": "Lifts", "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": "Escalators", "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": "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": "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": "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"}], "children": [], "lat": 51.597479, "lon": -0.109886}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUWOG1", "modes": ["tube"], "icsCode": "1000275", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUWOG", "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": "940GZZLUWOG", "lineIdentifier": ["piccadilly"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["piccadilly"]}], "status": true, "id": "9400ZZLUWOG1", "commonName": "Wood Green Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$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": "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": "Help Points", "sourceSystemKey": "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"}, {"$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": "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": "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": "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": "Gates", "sourceSystemKey": "StaticObjects", "value": "7"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "no"}], "children": [], "lat": 51.597437, "lon": -0.11009}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUWOG2", "modes": ["tube"], "icsCode": "1000275", "stopType": "NaptanRailAccessArea", "stationNaptan": "940GZZLUWOG", "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": "940GZZLUWOG", "lineIdentifier": ["piccadilly"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["piccadilly"]}], "status": true, "id": "9400ZZLUWOG2", "commonName": "Wood 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": "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": "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": "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": "Photo Booths", "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": "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": "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": "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": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "no"}], "children": [], "lat": 51.597428, "lon": -0.110091}], "lat": 51.597479, "lon": -0.109886}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "940GZZLUWOP", "modes": ["bus", "tube"], "icsCode": "1000276", "stopType": "NaptanMetroStation", "stationNaptan": "940GZZLUWOP", "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": "383", "name": "383", "uri": "/Line/383", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "940GZZLUWOP", "lineIdentifier": ["northern"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490000276W", "stationAtcoCode": "490G00276S", "lineIdentifier": ["383"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["northern"]}, {"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "bus", "lineIdentifier": ["383"]}], "status": true, "id": "940GZZLUWOP", "commonName": "Woodside Park 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": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$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": "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": "Help Points", "sourceSystemKey": "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": "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": "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": "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": "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"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "CarParks_800499"}], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490G00276S", "modes": ["bus"], "icsCode": "1000276", "stopType": "NaptanOnstreetBusCoachStopCluster", "stationNaptan": "490G00276S", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490G00276S", "commonName": "Woodside Park Station", "placeType": "StopPoint", "additionalProperties": [], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000276W", "indicator": "Stop L", "stopLetter": "L", "modes": ["bus"], "icsCode": "1000276", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00276S", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000276W", "commonName": "Woodside Park Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.617828, "lon": -0.185181}], "lat": 51.617828, "lon": -0.185181}, {"$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": "9400ZZLUWOP", "modes": ["tube"], "icsCode": "1000276", "stopType": "NaptanMetroAccessArea", "stationNaptan": "940GZZLUWOP", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "9400ZZLUWOP", "commonName": "Woodside 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": "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": "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": "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": "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": "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": "Payphones", "sourceSystemKey": "StaticObjects", "value": "0"}], "children": [], "lat": 51.618014, "lon": -0.18542}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUWOP1", "modes": ["tube"], "icsCode": "1000276", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUWOP", "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": "940GZZLUWOP", "lineIdentifier": ["northern"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["northern"]}], "status": true, "id": "9400ZZLUWOP1", "commonName": "Woodside 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": "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"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.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": "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": "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": "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": "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.617783, "lon": -0.185602}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUWOP2", "modes": ["tube"], "icsCode": "1000276", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUWOP", "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": "940GZZLUWOP", "lineIdentifier": ["northern"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["northern"]}], "status": true, "id": "9400ZZLUWOP2", "commonName": "Woodside 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": "Escalators", "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": "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": "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": "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": "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"}], "children": [], "lat": 51.61787, "lon": -0.185454}], "lat": 51.618014, "lon": -0.18542}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "940GZZLUWPL", "modes": ["tube"], "icsCode": "1000268", "stopType": "NaptanMetroStation", "stationNaptan": "940GZZLUWPL", "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"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "940GZZLUWPL", "lineIdentifier": ["district", "hammersmith-city"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["district", "hammersmith-city"]}], "status": true, "id": "940GZZLUWPL", "commonName": "Whitechapel 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": "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": "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": "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": "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, taxi ranks outside station, routeways platform to ticket hall."}, {"$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": "Photo 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": "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": "9400ZZLUWPL", "modes": ["tube"], "icsCode": "1000268", "stopType": "NaptanMetroAccessArea", "stationNaptan": "940GZZLUWPL", "hubNaptanCode": "HUBZWL", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "9400ZZLUWPL", "commonName": "Whitechapel 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": "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": "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": "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": "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": "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": "Help Points", "sourceSystemKey": "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": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.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"}], "children": [], "lat": 51.519518, "lon": -0.059971}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUWPL1", "modes": ["tube"], "icsCode": "1000268", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUWPL", "hubNaptanCode": "HUBZWL", "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": "940GZZLUWPL", "lineIdentifier": ["hammersmith-city", "district"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["hammersmith-city", "district"]}], "status": true, "id": "9400ZZLUWPL1", "commonName": "Whitechapel 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, 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": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$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": "Help 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": "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": "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": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}], "children": [], "lat": 51.519398, "lon": -0.060884}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUWPL2", "modes": ["tube"], "icsCode": "1000268", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUWPL", "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"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "940GZZLUWPL", "lineIdentifier": ["district", "hammersmith-city"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["district", "hammersmith-city"]}], "status": true, "id": "9400ZZLUWPL2", "commonName": "Whitechapel 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": "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": "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": "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": "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": "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": "Help 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": "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": "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.519414, "lon": -0.060797}], "lat": 51.519518, "lon": -0.059971}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "940GZZLUWRP", "modes": ["tube"], "icsCode": "1000267", "stopType": "NaptanMetroStation", "stationNaptan": "940GZZLUWRP", "hubNaptanCode": "HUBWRU", "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": "940GZZLUWRP", "lineIdentifier": ["central"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["central"]}], "status": true, "id": "940GZZLUWRP", "commonName": "West Ruislip 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": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "West Ruislip Station,London Underground Ltd.,Ickenham Rd,West Ruislip,Middlesex"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, 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": "Help Points", "sourceSystemKey": "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": "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": "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": "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": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUWRP", "modes": ["tube"], "icsCode": "1000267", "stopType": "NaptanMetroAccessArea", "stationNaptan": "940GZZLUWRP", "hubNaptanCode": "HUBWRU", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "9400ZZLUWRP", "commonName": "West Ruislip 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": "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": "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": "Toilets", "sourceSystemKey": "StaticObjects", "value": "yes (male, female)"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "West Ruislip Station,London Underground Ltd.,Ickenham Rd,West Ruislip,Middlesex"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.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, 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": "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": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "6"}], "children": [], "lat": 51.569688, "lon": -0.437886}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUWRP1", "modes": ["tube"], "icsCode": "1000267", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUWRP", "hubNaptanCode": "HUBWRU", "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": "940GZZLUWRP", "lineIdentifier": ["central"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["central"]}], "status": true, "id": "9400ZZLUWRP1", "commonName": "West Ruislip 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": "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": "Bridge", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "West Ruislip Station,London Underground Ltd.,Ickenham Rd,West Ruislip,Middlesex"}, {"$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": "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 (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": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "6"}], "children": [], "lat": 51.56951, "lon": -0.437343}], "lat": 51.569688, "lon": -0.437886}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "940GZZLUWRR", "modes": ["bus", "tube"], "icsCode": "1000252", "stopType": "NaptanMetroStation", "stationNaptan": "940GZZLUWRR", "lines": [{"$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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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", "naptanIdReference": "490000252X", "stationAtcoCode": "490G00252X", "lineIdentifier": ["n73", "n20", "24", "390", "73", "n279", "n253", "134", "n29", "n5", "29"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "940GZZLUWRR", "lineIdentifier": ["northern"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490000252V", "stationAtcoCode": "490G00252KA", "lineIdentifier": ["30", "n27", "27", "18", "n205", "205"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490000252KA", "stationAtcoCode": "490G00252KA", "lineIdentifier": ["30", "18", "n205", "205"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "940GZZLUWRR", "lineIdentifier": ["victoria"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "bus", "lineIdentifier": ["n73", "n20", "24", "390", "73", "30", "n27", "n279", "27", "n253", "18", "n205", "134", "n29", "n5", "205", "29"]}, {"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["northern", "victoria"]}], "status": true, "id": "940GZZLUWRR", "commonName": "Warren Street 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": "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": "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": "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": "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": "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": "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": "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": "Toilets", "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": "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_28"}, {"$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_76"}, {"$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_239"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_357"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5405"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5592"}, {"$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_5399"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5638"}, {"$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": "490G00252KA", "modes": ["bus"], "icsCode": "1000252", "stopType": "NaptanOnstreetBusCoachStopCluster", "stationNaptan": "490G00252KA", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490G00252KA", "commonName": "Warren Street Stn / Tottenham Court Rd", "placeType": "StopPoint", "additionalProperties": [], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000252KA", "indicator": "Stop KA", "stopLetter": "KA", "modes": ["bus"], "icsCode": "1000252", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00252KA", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000252KA", "commonName": "Warren Street Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.524914, "lon": -0.139519}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000252V", "indicator": "Stop V", "stopLetter": "V", "modes": ["bus"], "icsCode": "1000252", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00252KA", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000252V", "commonName": "Warren Street Stn / Tottenham Court Rd", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.524576, "lon": -0.139187}], "lat": 51.524576, "lon": -0.139187}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490G00252X", "modes": ["bus"], "icsCode": "1000252", "stopType": "NaptanOnstreetBusCoachStopCluster", "stationNaptan": "490G00252X", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490G00252X", "commonName": "Warren Street Station", "placeType": "StopPoint", "additionalProperties": [], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000252X", "indicator": "Stop X", "stopLetter": "X", "modes": ["bus"], "icsCode": "1000252", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00252X", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000252X", "commonName": "Warren Street Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.524111, "lon": -0.137649}], "lat": 51.524111, "lon": -0.137649}, {"$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": "9400ZZLUWRR", "modes": ["tube"], "icsCode": "1000252", "stopType": "NaptanMetroAccessArea", "stationNaptan": "940GZZLUWRR", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "9400ZZLUWRR", "commonName": "Warren Street 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": "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, 5 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": "Gates", "sourceSystemKey": "StaticObjects", "value": "10"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.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": "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": "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": "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": "Car park", "sourceSystemKey": "StaticObjects", "value": "no"}], "children": [], "lat": 51.524951, "lon": -0.138321}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUWRR1", "modes": ["tube"], "icsCode": "1000252", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUWRR", "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": "940GZZLUWRR", "lineIdentifier": ["northern"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["northern"]}], "status": true, "id": "9400ZZLUWRR1", "commonName": "Warren Street 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": "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": "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": "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": "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": "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": "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": "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": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "1"}], "children": [], "lat": 51.524331, "lon": -0.137784}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUWRR2", "modes": ["tube"], "icsCode": "1000252", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUWRR", "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": "940GZZLUWRR", "lineIdentifier": ["northern"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["northern"]}], "status": true, "id": "9400ZZLUWRR2", "commonName": "Warren 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": "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": "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": "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": "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": "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": "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": "10"}, {"$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."}], "children": [], "lat": 51.524276, "lon": -0.137757}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUWRR3", "modes": ["tube"], "icsCode": "1000252", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUWRR", "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": "940GZZLUWRR", "lineIdentifier": ["victoria"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["victoria"]}], "status": true, "id": "9400ZZLUWRR3", "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": "Facility", "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": "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": "Cash Machines", "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": "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"}, {"$type": "Tfl.Api.Presentation.Entities.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": "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": "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"}], "children": [], "lat": 51.524084, "lon": -0.138688}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUWRR4", "modes": ["tube"], "icsCode": "1000252", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUWRR", "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": "940GZZLUWRR", "lineIdentifier": ["victoria"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["victoria"]}], "status": true, "id": "9400ZZLUWRR4", "commonName": "Warren Street 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": "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": "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": "Escalators", "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": "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": "1"}, {"$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": "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": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "no"}], "children": [], "lat": 51.524031, "lon": -0.138719}], "lat": 51.524951, "lon": -0.138321}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "940GZZLUWSD", "modes": ["tube", "bus"], "icsCode": "1000250", "stopType": "NaptanMetroStation", "stationNaptan": "940GZZLUWSD", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "w13", "name": "W13", "uri": "/Line/w13", "type": "Line", "crowding": {"$type": "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": "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": "101", "name": "101", "uri": "/Line/101", "type": "Line", "crowding": {"$type": "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"}, {"$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": "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": "145", "name": "145", "uri": "/Line/145", "type": "Line", "crowding": {"$type": "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"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490015125B", "stationAtcoCode": "490G00250A", "lineIdentifier": ["w13", "n8", "101", "w14", "308", "145", "n55"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490015125C", "stationAtcoCode": "490G00250A", "lineIdentifier": ["w13", "n8", "101", "w14", "308", "145", "n55"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490000250A", "stationAtcoCode": "490G00250A", "lineIdentifier": ["66", "n8", "145"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "940GZZLUWSD", "lineIdentifier": ["central"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "bus", "lineIdentifier": ["w13", "66", "n8", "101", "w14", "308", "145", "n55"]}, {"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["central"]}], "status": true, "id": "940GZZLUWSD", "commonName": "Wanstead 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": "Car park", "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": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "4"}, {"$type": "Tfl.Api.Presentation.Entities.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": "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": "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": "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": "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": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5825"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "CarParks_800496"}], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490G00250A", "modes": ["bus"], "icsCode": "1000250", "stopType": "NaptanOnstreetBusCoachStopCluster", "stationNaptan": "490G00250A", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490G00250A", "commonName": "Wanstead Station / George Green", "placeType": "StopPoint", "additionalProperties": [], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000250A", "indicator": "Stop A", "stopLetter": "A", "modes": ["bus"], "icsCode": "1000250", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00250A", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000250A", "commonName": "Wanstead Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.575855, "lon": 0.028803}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490015125B", "indicator": "Stop B", "stopLetter": "B", "modes": ["bus"], "icsCode": "1000250", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00250A", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490015125B", "commonName": "Wanstead Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.575308, "lon": 0.027119}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490015125C", "indicator": "Stop C", "stopLetter": "C", "modes": ["bus"], "icsCode": "1000250", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00250A", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490015125C", "commonName": "Wanstead Station / George Green", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.575082, "lon": 0.026705}], "lat": 51.575308, "lon": 0.027119}, {"$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": "9400ZZLUWSD", "modes": ["tube"], "icsCode": "1000250", "stopType": "NaptanMetroAccessArea", "stationNaptan": "940GZZLUWSD", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "9400ZZLUWSD", "commonName": "Wanstead 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": "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": "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": "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": "4"}, {"$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": "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": "Escalators", "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": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "no"}], "children": [], "lat": 51.575501, "lon": 0.028527}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUWSD1", "modes": ["tube"], "icsCode": "1000250", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUWSD", "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": "940GZZLUWSD", "lineIdentifier": ["central"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["central"]}], "status": true, "id": "9400ZZLUWSD1", "commonName": "Wanstead 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": "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": "Wanstead Underground Station,London Underground Ltd.,The Green,London,E11 2NT"}, {"$type": "Tfl.Api.Presentation.Entities.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": "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": "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": "Gates", "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": "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": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}], "children": [], "lat": 51.575663, "lon": 0.029069}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUWSD2", "modes": ["tube"], "icsCode": "1000250", "stopType": "NaptanRailAccessArea", "stationNaptan": "940GZZLUWSD", "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": "940GZZLUWSD", "lineIdentifier": ["central"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["central"]}], "status": true, "id": "9400ZZLUWSD2", "commonName": "Wanstead 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": "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": "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": "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": "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": "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": "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": "Payphones", "sourceSystemKey": "StaticObjects", "value": "0"}], "children": [], "lat": 51.575672, "lon": 0.029069}], "lat": 51.575501, "lon": 0.028527}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "940GZZLUWSM", "modes": ["tube"], "icsCode": "1000266", "stopType": "NaptanMetroStation", "stationNaptan": "940GZZLUWSM", "hubNaptanCode": "HUBWSM", "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"}, {"$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": "940GZZLUWSM", "lineIdentifier": ["district", "circle"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "940GZZLUWSM", "lineIdentifier": ["jubilee"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["district", "circle", "jubilee"]}], "status": true, "id": "940GZZLUWSM", "commonName": "Westminster 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": "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": "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": "Help Points", "sourceSystemKey": "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": "Westminster Station,London Underground Ltd.,Bridge St,London,SW1A 2JR"}, {"$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": "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": "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": "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": "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": "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": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_583"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_762"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_818"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_4884"}], "children": [{"$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": "9400ZZLUWSM", "modes": ["tube"], "icsCode": "1000266", "stopType": "NaptanMetroAccessArea", "stationNaptan": "940GZZLUWSM", "hubNaptanCode": "HUBWSM", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "9400ZZLUWSM", "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": "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": "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": "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": "Help 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": "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": "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": "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": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}], "children": [], "lat": 51.50132, "lon": -0.124861}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUWSM1", "modes": ["tube"], "icsCode": "1000266", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUWSM", "hubNaptanCode": "HUBWSM", "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": "940GZZLUWSM", "lineIdentifier": ["district", "circle"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["district", "circle"]}], "status": true, "id": "9400ZZLUWSM1", "commonName": "Westminster 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": "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": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "4"}, {"$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": "Facility", "key": "WiFi", "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": "Facility", "key": "Help 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": "Westminster Station,London Underground Ltd.,Bridge St,London,SW1A 2JR"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.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": "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": "15"}], "children": [], "lat": 51.501284, "lon": -0.124877}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUWSM2", "modes": ["tube"], "icsCode": "1000266", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUWSM", "hubNaptanCode": "HUBWSM", "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": "940GZZLUWSM", "lineIdentifier": ["district", "circle"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["district", "circle"]}], "status": true, "id": "9400ZZLUWSM2", "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": "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": "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": "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": "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": "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": "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": "Euro Cash Machines", "sourceSystemKey": "StaticObjects", "value": "yes"}], "children": [], "lat": 51.501185, "lon": -0.124838}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUWSM3", "modes": ["tube"], "icsCode": "1000266", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUWSM", "hubNaptanCode": "HUBWSM", "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": "940GZZLUWSM", "lineIdentifier": ["jubilee"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["jubilee"]}], "status": true, "id": "9400ZZLUWSM3", "commonName": "Westminster 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": "Boarding Ramps", "sourceSystemKey": "StaticObjects", "value": "yes Circle and District lines 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": "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": "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": "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": "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": "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": "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": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$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": "subway to street, routeways platform to ticket hall."}], "children": [], "lat": 51.501004, "lon": -0.124773}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUWSM4", "modes": ["tube"], "icsCode": "1000266", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUWSM", "hubNaptanCode": "HUBWSM", "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": "940GZZLUWSM", "lineIdentifier": ["jubilee"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["jubilee"]}], "status": true, "id": "9400ZZLUWSM4", "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": "Payphones", "sourceSystemKey": "StaticObjects", "value": "4"}, {"$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": "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": "17"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, 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": "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": "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"}], "children": [], "lat": 51.501006, "lon": -0.124932}], "lat": 51.50132, "lon": -0.124861}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "940GZZLUWSP", "modes": ["bus", "tube"], "icsCode": "1000259", "stopType": "NaptanMetroStation", "stationNaptan": "940GZZLUWSP", "lines": [{"$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": "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": "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": "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": "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", "naptanIdReference": "490000259A", "stationAtcoCode": "490G00259A", "lineIdentifier": ["n31", "n28", "328", "28", "31"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490000259B", "stationAtcoCode": "490G00259A", "lineIdentifier": ["n31", "n28", "328", "28", "31"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "940GZZLUWSP", "lineIdentifier": ["circle", "hammersmith-city"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "bus", "lineIdentifier": ["n31", "n28", "328", "28", "31"]}, {"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["circle", "hammersmith-city"]}], "status": true, "id": "940GZZLUWSP", "commonName": "Westbourne Park Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_805"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_760"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_758"}, {"$type": "Tfl.Api.Presentation.Entities.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_643"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5828"}, {"$type": "Tfl.Api.Presentation.Entities.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": "Westbourne Park Station,London Underground Ltd.,Western Rd,London,W11 1AB"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.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": "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": "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": "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": "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"}], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490G00259A", "modes": ["bus"], "icsCode": "1000259", "stopType": "NaptanOnstreetBusCoachStopCluster", "stationNaptan": "490G00259A", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490G00259A", "commonName": "Westbourne Park Station", "placeType": "StopPoint", "additionalProperties": [], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000259A", "indicator": "Stop A", "stopLetter": "A", "modes": ["bus"], "icsCode": "1000259", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00259A", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000259A", "commonName": "Westbourne Park Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.521223, "lon": -0.200931}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000259B", "indicator": "Stop B", "stopLetter": "B", "modes": ["bus"], "icsCode": "1000259", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00259A", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000259B", "commonName": "Westbourne Park Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.520282, "lon": -0.199945}], "lat": 51.520282, "lon": -0.199945}, {"$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": "9400ZZLUWSP", "modes": ["tube"], "icsCode": "1000259", "stopType": "NaptanMetroAccessArea", "stationNaptan": "940GZZLUWSP", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "9400ZZLUWSP", "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": "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": "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": "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": "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": "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": "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.52111, "lon": -0.201065}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUWSP1", "modes": ["tube"], "icsCode": "1000259", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUWSP", "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": "940GZZLUWSP", "lineIdentifier": ["circle", "hammersmith-city"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["circle", "hammersmith-city"]}], "status": true, "id": "9400ZZLUWSP1", "commonName": "Westbourne Park Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$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": "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": "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, 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": "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": "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"}], "children": [], "lat": 51.520984, "lon": -0.201647}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUWSP2", "modes": ["tube"], "icsCode": "1000259", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUWSP", "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": "940GZZLUWSP", "lineIdentifier": ["circle", "hammersmith-city"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["circle", "hammersmith-city"]}], "status": true, "id": "9400ZZLUWSP2", "commonName": "Westbourne 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": "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": "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": "Westbourne Park Station,London Underground Ltd.,Western Rd,London,W11 1AB"}, {"$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": "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": "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"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.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.520973, "lon": -0.201546}], "lat": 51.52111, "lon": -0.201065}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "940GZZLUWTA", "modes": ["bus", "tube"], "icsCode": "1000258", "stopType": "NaptanMetroStation", "stationNaptan": "940GZZLUWTA", "lines": [{"$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": "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", "naptanIdReference": "490000258A", "stationAtcoCode": "490G00258B", "lineIdentifier": ["218"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490000258B", "stationAtcoCode": "490G00258B", "lineIdentifier": ["218"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "940GZZLUWTA", "lineIdentifier": ["central"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "bus", "lineIdentifier": ["218"]}, {"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["central"]}], "status": true, "id": "940GZZLUWTA", "commonName": "West Acton 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": "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": "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": "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": "Help 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": "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": "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": "Payphones", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490G00258B", "modes": ["bus"], "icsCode": "1000258", "stopType": "NaptanOnstreetBusCoachStopCluster", "stationNaptan": "490G00258B", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490G00258B", "commonName": "West Acton Station", "placeType": "StopPoint", "additionalProperties": [], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000258A", "indicator": "Stop EA", "stopLetter": "EA", "modes": ["bus"], "icsCode": "1000258", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00258B", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000258A", "commonName": "West Acton Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.517677, "lon": -0.279839}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000258B", "indicator": "Stop EB", "stopLetter": "EB", "modes": ["bus"], "icsCode": "1000258", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00258B", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000258B", "commonName": "West Acton Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.516951, "lon": -0.281221}], "lat": 51.517677, "lon": -0.279839}, {"$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": "9400ZZLUWTA", "modes": ["tube"], "icsCode": "1000258", "stopType": "NaptanMetroAccessArea", "stationNaptan": "940GZZLUWTA", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "9400ZZLUWTA", "commonName": "West Acton 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": "3"}, {"$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": "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": "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": "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": "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": "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"}], "children": [], "lat": 51.518001, "lon": -0.28098}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUWTA1", "modes": ["tube"], "icsCode": "1000258", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUWTA", "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": "940GZZLUWTA", "lineIdentifier": ["central"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["central"]}], "status": true, "id": "9400ZZLUWTA1", "commonName": "West Acton 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": "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": "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": "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": "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": "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": "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": "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.518194, "lon": -0.280641}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUWTA2", "modes": ["tube"], "icsCode": "1000258", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUWTA", "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": "940GZZLUWTA", "lineIdentifier": ["central"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["central"]}], "status": true, "id": "9400ZZLUWTA2", "commonName": "West Acton 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": "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": "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"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.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": "Help Points", "sourceSystemKey": "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": "West Acton Station,London Underground Ltd.,Princes Gardens,London,W3 0LG"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}], "children": [], "lat": 51.518159, "lon": -0.2807}], "lat": 51.518001, "lon": -0.28098}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "940GZZLUWWL", "modes": ["tube"], "icsCode": "1000249", "stopType": "NaptanMetroStation", "stationNaptan": "940GZZLUWWL", "hubNaptanCode": "HUBWHC", "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": "940GZZLUWWL", "lineIdentifier": ["victoria"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["victoria"]}], "status": true, "id": "940GZZLUWWL", "commonName": "Walthamstow Central 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": "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"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.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": "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": "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": "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": "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": "Help 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": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "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": "9400ZZLUWWL", "modes": ["tube"], "icsCode": "1000249", "stopType": "NaptanMetroAccessArea", "stationNaptan": "940GZZLUWWL", "hubNaptanCode": "HUBWHC", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "9400ZZLUWWL", "commonName": "Walthamstow Central 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": "Toilets", "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": "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": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.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": "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": "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": "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"}], "children": [], "lat": 51.582965, "lon": -0.019885}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUWWL1", "modes": ["tube"], "icsCode": "1000249", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUWWL", "hubNaptanCode": "HUBWHC", "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": "940GZZLUWWL", "lineIdentifier": ["victoria"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["victoria"]}], "status": true, "id": "9400ZZLUWWL1", "commonName": "Walthamstow Central 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": "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 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, 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": "Lifts", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$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": "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": "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": "Help Points", "sourceSystemKey": "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"}], "children": [], "lat": 51.583067, "lon": -0.01952}], "lat": 51.582965, "lon": -0.019885}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "940GZZLUWYC", "modes": ["tube"], "icsCode": "1000256", "stopType": "NaptanMetroStation", "stationNaptan": "940GZZLUWYC", "hubNaptanCode": "HUBWMB", "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": "940GZZLUWYC", "lineIdentifier": ["bakerloo"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["bakerloo"]}], "status": true, "id": "940GZZLUWYC", "commonName": "Wembley Central 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, 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": "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": "Opening Time", "key": "SatFrom", "sourceSystemKey": "StaticObjects", "value": "09: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": "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": "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": "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": "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": "Wembley Central,London Overground Ltd.,High Road,Wembley,HA9 7AJ"}, {"$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": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUWYC", "modes": ["tube"], "icsCode": "1000256", "stopType": "NaptanMetroAccessArea", "stationNaptan": "940GZZLUWYC", "hubNaptanCode": "HUBWMB", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "9400ZZLUWYC", "commonName": "Wembley Central Underground 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": "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": "12"}, {"$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": "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": "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": "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": "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": "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": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "yes"}], "children": [], "lat": 51.552304, "lon": -0.296852}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUWYC1", "modes": ["tube"], "icsCode": "1000256", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUWYC", "hubNaptanCode": "HUBWMB", "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": "940GZZLUWYC", "lineIdentifier": ["bakerloo"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["bakerloo"]}], "status": true, "id": "9400ZZLUWYC1", "commonName": "Wembley Central 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": "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": "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": "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": "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"}, {"$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": "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": "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": "Car park", "sourceSystemKey": "StaticObjects", "value": "no"}], "children": [], "lat": 51.551739, "lon": -0.29631}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUWYC2", "indicator": "southbound", "modes": ["tube"], "icsCode": "1000256", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUWYC", "hubNaptanCode": "HUBWMB", "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": "940GZZLUWYC", "lineIdentifier": ["bakerloo"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["bakerloo"]}], "status": true, "id": "9400ZZLUWYC2", "commonName": "Wembley Central 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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "yes"}], "children": [], "lat": 51.552312, "lon": -0.296794}], "lat": 51.552304, "lon": -0.296852}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "940GZZLUWYP", "modes": ["bus", "tube"], "icsCode": "1000257", "stopType": "NaptanMetroStation", "stationNaptan": "940GZZLUWYP", "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": "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": "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": "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": "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": "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": "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": "206", "name": "206", "uri": "/Line/206", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "940GZZLUWYP", "lineIdentifier": ["jubilee"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490000257M", "stationAtcoCode": "490G00257M", "lineIdentifier": ["297", "223", "206"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490000257O", "stationAtcoCode": "490G00257M", "lineIdentifier": ["297", "83", "n83", "182", "223", "206"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "940GZZLUWYP", "lineIdentifier": ["metropolitan"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490000257N", "stationAtcoCode": "490G00257M", "lineIdentifier": ["83", "n83", "182"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["jubilee", "metropolitan"]}, {"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "bus", "lineIdentifier": ["297", "83", "n83", "182", "223", "206"]}], "status": true, "id": "940GZZLUWYP", "commonName": "Wembley Park 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": "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": "Boarding Ramps", "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": "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": "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": "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 (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": "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": "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": "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"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5583"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "CarParks_800497"}], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490G00257M", "modes": ["bus"], "icsCode": "1000257", "stopType": "NaptanOnstreetBusCoachStopCluster", "stationNaptan": "490G00257M", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490G00257M", "commonName": "Wembley Park Station", "placeType": "StopPoint", "additionalProperties": [], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000257E", "indicator": "->NE", "modes": ["bus"], "icsCode": "1000257", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00257M", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000257E", "commonName": "Wembley Park Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.564618, "lon": -0.278111}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000257M", "indicator": "Stop M", "stopLetter": "M", "modes": ["bus"], "icsCode": "1000257", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00257M", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000257M", "commonName": "Wembley Park Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.563668, "lon": -0.278898}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000257N", "indicator": "Stop N", "stopLetter": "N", "modes": ["bus"], "icsCode": "1000257", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00257M", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000257N", "commonName": "Wembley Park Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.563226, "lon": -0.279434}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000257NB", "indicator": "->E", "stopLetter": "->E", "modes": ["bus"], "icsCode": "1000257", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00257M", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000257NB", "commonName": "Wembley Park Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.56413, "lon": -0.277957}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000257O", "indicator": "Stop O", "stopLetter": "O", "modes": ["bus"], "icsCode": "1000257", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00257M", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000257O", "commonName": "Wembley Park Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.5637, "lon": -0.278651}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000257RB", "indicator": "->S", "stopLetter": "->S", "modes": ["bus"], "icsCode": "1000257", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00257M", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000257RB", "commonName": "Wembley Park Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.565104, "lon": -0.277473}], "lat": 51.565104, "lon": -0.277473}, {"$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": "9400ZZLUWYP", "modes": ["tube"], "icsCode": "1000257", "stopType": "NaptanMetroAccessArea", "stationNaptan": "940GZZLUWYP", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "9400ZZLUWYP", "commonName": "Wembley 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": "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": "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": "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": "5"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, 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": "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": "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": "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": "Gates", "sourceSystemKey": "StaticObjects", "value": "33"}], "children": [], "lat": 51.563198, "lon": -0.279262}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUWYP1", "modes": ["tube"], "icsCode": "1000257", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUWYP", "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": "940GZZLUWYP", "lineIdentifier": ["jubilee"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["jubilee"]}], "status": true, "id": "9400ZZLUWYP1", "commonName": "Wembley 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": "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": "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": "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": "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": "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": "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": "4"}], "children": [], "lat": 51.563518, "lon": -0.279596}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUWYP2", "modes": ["tube"], "icsCode": "1000257", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUWYP", "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": "940GZZLUWYP", "lineIdentifier": ["jubilee"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["jubilee"]}], "status": true, "id": "9400ZZLUWYP2", "commonName": "Wembley Park Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$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": "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": "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": "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": "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": "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": "Facility", "key": "Help Points", "sourceSystemKey": "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": "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, disabled/baby-changing facilities)"}], "children": [], "lat": 51.563518, "lon": -0.279581}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUWYP3", "modes": ["tube"], "icsCode": "1000257", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUWYP", "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": "940GZZLUWYP", "lineIdentifier": ["metropolitan"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["metropolitan"]}], "status": true, "id": "9400ZZLUWYP3", "commonName": "Wembley 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": "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": "Gates", "sourceSystemKey": "StaticObjects", "value": "33"}, {"$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": "5"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.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": "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": "Help Points", "sourceSystemKey": "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": "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)"}], "children": [], "lat": 51.563509, "lon": -0.279596}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUWYP4", "modes": ["tube"], "icsCode": "1000257", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUWYP", "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": "940GZZLUWYP", "lineIdentifier": ["metropolitan"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["metropolitan"]}], "status": true, "id": "9400ZZLUWYP4", "commonName": "Wembley 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": "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": "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": "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": "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": "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": "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": "Waiting Room", "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": "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": "2"}], "children": [], "lat": 51.563517, "lon": -0.279567}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUWYP6", "indicator": "southbound", "modes": ["tube"], "icsCode": "1000257", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUWYP", "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": "940GZZLUWYP", "lineIdentifier": ["metropolitan"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["metropolitan"]}], "status": true, "id": "9400ZZLUWYP6", "commonName": "Wembley 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": "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": "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": "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": "Lifts", "sourceSystemKey": "StaticObjects", "value": "5"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.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": "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": "4"}, {"$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": "Boarding Ramps", "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": "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.565944, "lon": -0.279504}], "lat": 51.563198, "lon": -0.279262}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "940GZZNEUGST", "modes": ["tube", "bus"], "icsCode": "1002196", "stopType": "NaptanMetroStation", "stationNaptan": "940GZZNEUGST", "lines": [{"$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": "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": "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": "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": "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", "naptanIdReference": "490014679S", "stationAtcoCode": "490G02196E", "lineIdentifier": ["77", "196", "452", "n87", "87"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490014679N", "stationAtcoCode": "490G02196E", "lineIdentifier": ["77", "196", "452", "n87", "87"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "940GZZNEUGST", "lineIdentifier": ["northern"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "bus", "lineIdentifier": ["77", "196", "452", "n87", "87"]}, {"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["northern"]}], "status": true, "id": "940GZZNEUGST", "commonName": "Nine Elms Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$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_600"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_676"}], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490G02196E", "modes": ["bus"], "icsCode": "1002196", "stopType": "NaptanOnstreetBusCoachStopCluster", "stationNaptan": "490G02196E", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490G02196E", "commonName": "Nine Elms Station", "placeType": "StopPoint", "additionalProperties": [], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490014679N", "indicator": "Stop J", "stopLetter": "J", "modes": ["bus"], "icsCode": "1002196", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G02196E", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490014679N", "commonName": "Nine Elms Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.479474, "lon": -0.128695}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490014679S", "indicator": "Stop L", "stopLetter": "L", "modes": ["bus"], "icsCode": "1002196", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G02196E", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490014679S", "commonName": "Nine Elms Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.480628, "lon": -0.127798}], "lat": 51.480628, "lon": -0.127798}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "4900ZZNEUGST", "indicator": "Entrance 1", "stopLetter": "1", "modes": ["bus"], "icsCode": "1002196", "stopType": "NaptanMetroEntrance", "stationNaptan": "940GZZNEUGST", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "4900ZZNEUGST", "commonName": "Nine Elms Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.479918, "lon": -0.128346}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZNEUGST", "indicator": "N/A", "stopLetter": "N/A", "modes": ["tube"], "icsCode": "1002196", "stopType": "NaptanMetroAccessArea", "stationNaptan": "940GZZNEUGST", "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": "940GZZNEUGST", "lineIdentifier": ["northern"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["northern"]}], "status": true, "id": "9400ZZNEUGST", "commonName": "Nine Elms Underground Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.479912, "lon": -0.128476}], "lat": 51.479912, "lon": -0.128476}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "HUBAMR", "modes": ["tube", "bus", "national-rail"], "icsCode": "1000006", "stopType": "TransportInterchange", "hubNaptanCode": "HUBAMR", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "chiltern-railways", "name": "Chiltern Railways", "uri": "/Line/chiltern-railways", "type": "Line", "crowding": {"$type": "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": "910GAMERSHM", "lineIdentifier": ["chiltern-railways"]}, {"$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": "national-rail", "lineIdentifier": ["chiltern-railways"]}, {"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["metropolitan"]}], "status": true, "id": "HUBAMR", "commonName": "Amersham", "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": "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"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, 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": "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": "Amersham Station,Stn Approach,Amersham,Bucks HP6 5AZ"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.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": "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": "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"}], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "910GAMERSHM", "modes": ["national-rail"], "icsCode": "1000006", "stopType": "NaptanRailStation", "stationNaptan": "910GAMERSHM", "hubNaptanCode": "HUBAMR", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "910GAMERSHM", "commonName": "Amersham Rail Station", "placeType": "StopPoint", "additionalProperties": [], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "040G00002152", "modes": [], "icsCode": "1000299", "stopType": "NaptanOnstreetBusCoachStopCluster", "stationNaptan": "040G00002152", "hubNaptanCode": "HUBAMR", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "040G00002152", "commonName": "Railway Station", "placeType": "StopPoint", "additionalProperties": [], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "040000002101", "indicator": "adj", "modes": [], "icsCode": "1000299", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "040G00002152", "hubNaptanCode": "HUBAMR", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "040000002101", "commonName": "Railway Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.674198, "lon": -0.607449}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "040000002152", "indicator": "Stop G", "stopLetter": "G", "modes": [], "icsCode": "1000299", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "040G00002152", "hubNaptanCode": "HUBAMR", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "040000002152", "commonName": "Railway Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.674294, "lon": -0.607981}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "040000002154", "indicator": "Stop F", "stopLetter": "F", "modes": [], "icsCode": "1000299", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "040G00002152", "hubNaptanCode": "HUBAMR", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "040000002154", "commonName": "Railway Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.674404, "lon": -0.606662}], "lat": 51.674198, "lon": -0.607449}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "940GZZLUAMS", "modes": ["tube"], "icsCode": "1000006", "stopType": "NaptanMetroStation", "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": "940GZZLUAMS", "commonName": "Amersham 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": "Amersham Station,Stn Approach,Amersham,Bucks HP6 5AZ"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.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": "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 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": "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": "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": "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": "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": "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": "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": [{"$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": "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}], "lat": 51.674126, "lon": -0.607714}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "0400AMERSHM0", "indicator": "entrance", "modes": [], "icsCode": "1000006", "stopType": "NaptanRailEntrance", "stationNaptan": "910GAMERSHM", "hubNaptanCode": "HUBAMR", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "0400AMERSHM0", "commonName": "Amersham Rail Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.674206, "lon": -0.607347}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9100AMERSHM1", "modes": [], "icsCode": "1000006", "stopType": "NaptanRailAccessArea", "stationNaptan": "910GAMERSHM", "hubNaptanCode": "HUBAMR", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "9100AMERSHM1", "commonName": "Amersham Rail Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 0.0, "lon": 0.0}], "lat": 51.674206, "lon": -0.607596}], "lat": 51.674207, "lon": -0.60759}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "HUBBAL", "modes": ["bus", "tube", "national-rail"], "icsCode": "1000012", "stopType": "TransportInterchange", "hubNaptanCode": "HUBBAL", "lines": [{"$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": "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": "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": "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": "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": "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": "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": "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", "naptanIdReference": "490000012A", "stationAtcoCode": "490G00012S", "lineIdentifier": ["315"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "910GBALHAM", "lineIdentifier": ["southern"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490000012J", "stationAtcoCode": "490G00012S", "lineIdentifier": ["255"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490000012C", "stationAtcoCode": "490G00012C", "lineIdentifier": ["255", "155", "n155", "355", "249"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490000012B", "stationAtcoCode": "490G00012S", "lineIdentifier": ["155", "n155", "355", "249"]}, {"$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": "bus", "lineIdentifier": ["315", "255", "155", "n155", "355", "249"]}, {"$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": "tube", "lineIdentifier": ["northern"]}], "status": true, "id": "HUBBAL", "commonName": "Balham", "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": "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": "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": "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": "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": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "3"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5665"}], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "910GBALHAM", "modes": ["national-rail"], "icsCode": "1000328", "stopType": "NaptanRailStation", "stationNaptan": "910GBALHAM", "hubNaptanCode": "HUBBAL", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "910GBALHAM", "commonName": "Balham Rail Station", "placeType": "StopPoint", "additionalProperties": [], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "4900BALHAM0", "indicator": "Entrance 1", "stopLetter": "1", "modes": [], "icsCode": "1000328", "stopType": "NaptanRailEntrance", "stationNaptan": "910GBALHAM", "hubNaptanCode": "HUBBAL", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "4900BALHAM0", "commonName": "Balham Rail Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.443047, "lon": -0.151525}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9100BALHAM0", "modes": [], "icsCode": "1000328", "stopType": "NaptanRailAccessArea", "stationNaptan": "910GBALHAM", "hubNaptanCode": "HUBBAL", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "9100BALHAM0", "commonName": "Balham Rail Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 0.0, "lon": 0.0}], "lat": 51.443225, "lon": -0.152424}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "940GZZLUBLM", "modes": ["tube"], "icsCode": "1000012", "stopType": "NaptanMetroStation", "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": "940GZZLUBLM", "commonName": "Balham 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": "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": "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": "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": "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": "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": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5665"}], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490G00012C", "modes": ["bus"], "icsCode": "1000012", "stopType": "NaptanOnstreetBusCoachStopCluster", "stationNaptan": "490G00012C", "hubNaptanCode": "HUBBAL", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490G00012C", "commonName": "Balham Station / Balham Station Road", "placeType": "StopPoint", "additionalProperties": [], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000012C", "indicator": "Stop C", "stopLetter": "C", "modes": ["bus"], "icsCode": "1000012", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00012C", "hubNaptanCode": "HUBBAL", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000012C", "commonName": "Balham Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.44391, "lon": -0.152066}], "lat": 51.44391, "lon": -0.152066}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490G00012S", "modes": ["bus"], "icsCode": "1000012", "stopType": "NaptanOnstreetBusCoachStopCluster", "stationNaptan": "490G00012S", "hubNaptanCode": "HUBBAL", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490G00012S", "commonName": "Balham Station", "placeType": "StopPoint", "additionalProperties": [], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000012A", "indicator": "Stop A", "stopLetter": "A", "modes": ["bus"], "icsCode": "1000012", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00012S", "hubNaptanCode": "HUBBAL", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000012A", "commonName": "Balham Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.443039, "lon": -0.151554}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000012B", "indicator": "Stop B", "stopLetter": "B", "modes": ["bus"], "icsCode": "1000012", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00012S", "hubNaptanCode": "HUBBAL", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000012B", "commonName": "Balham Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.442869, "lon": -0.15336}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000012J", "indicator": "Stop J", "stopLetter": "J", "modes": ["bus"], "icsCode": "1000012", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00012S", "hubNaptanCode": "HUBBAL", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000012J", "commonName": "Balham Station / Balham Station Road", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.443019, "lon": -0.150907}], "lat": 51.442869, "lon": -0.15336}, {"$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": "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}], "lat": 51.443288, "lon": -0.152997}], "lat": 51.443259, "lon": -0.152707}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "HUBBAN", "modes": ["tube", "bus", "dlr"], "icsCode": "1000013", "stopType": "TransportInterchange", "hubNaptanCode": "HUBBAN", "lines": [{"$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": "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": "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": "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": "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": "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"}, {"$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": "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": "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": "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": "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": "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": "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": "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": "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"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490007596K", "stationAtcoCode": "490G00007599", "lineIdentifier": ["n8", "n242", "n25", "n26", "n550", "8", "26", "25"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490000013D", "stationAtcoCode": "490G000556", "lineIdentifier": ["n8", "n242", "n25", "n26", "n550", "8", "26", "25"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490000013E", "stationAtcoCode": "490G000556", "lineIdentifier": ["n8", "n242", "n25", "n26", "n550", "8", "26", "n551", "25"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "940GZZLUBNK", "lineIdentifier": ["northern"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "940GZZLUBNK", "lineIdentifier": ["waterloo-city"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "940GZZLUBNK", "lineIdentifier": ["central"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490011218A", "stationAtcoCode": "490G000713", "lineIdentifier": ["21", "141", "43"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490000013F", "stationAtcoCode": "490G000557", "lineIdentifier": ["21", "141", "43", "133", "n21"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "940GZZDLBNK", "lineIdentifier": ["dlr"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "bus", "lineIdentifier": ["n8", "n242", "n25", "n26", "n550", "8", "26", "21", "141", "n551", "25", "43", "133", "n21"]}, {"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["northern", "waterloo-city", "central"]}, {"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "dlr", "lineIdentifier": ["dlr"]}], "status": true, "id": "HUBBAN", "commonName": "Bank", "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": "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": "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": "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": "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": "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": "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": "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_101"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_120"}, {"$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_427"}, {"$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": "BikePoints_579"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5907"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5901"}, {"$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_5897"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5899"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5919"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5921"}], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490G00007599", "modes": ["bus"], "icsCode": "1007599", "stopType": "NaptanOnstreetBusCoachStopCluster", "stationNaptan": "490G00007599", "hubNaptanCode": "HUBBAN", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490G00007599", "commonName": "Bank Station / Poultry", "placeType": "StopPoint", "additionalProperties": [], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490007596K", "indicator": "Stop K", "stopLetter": "K", "modes": ["bus"], "icsCode": "1007599", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00007599", "hubNaptanCode": "HUBBAN", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490007596K", "commonName": "Bank Station / Poultry", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.513738, "lon": -0.091463}], "lat": 51.513738, "lon": -0.091463}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490G000556", "modes": ["bus"], "icsCode": "1007606", "stopType": "NaptanOnstreetBusCoachStopCluster", "stationNaptan": "490G000556", "hubNaptanCode": "HUBBAN", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490G000556", "commonName": "Bank Station / Cornhill", "placeType": "StopPoint", "additionalProperties": [], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000013D", "indicator": "Stop D", "stopLetter": "D", "modes": ["bus"], "icsCode": "1007606", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G000556", "hubNaptanCode": "HUBBAN", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000013D", "commonName": "Bank Station / Cornhill", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.513378, "lon": -0.087601}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000013E", "indicator": "Stop E", "stopLetter": "E", "modes": ["bus"], "icsCode": "1007606", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G000556", "hubNaptanCode": "HUBBAN", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000013E", "commonName": "Bank Station / Cornhill", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.513273, "lon": -0.087749}], "lat": 51.513273, "lon": -0.087749}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490G000557", "modes": ["bus"], "icsCode": "1007607", "stopType": "NaptanOnstreetBusCoachStopCluster", "stationNaptan": "490G000557", "hubNaptanCode": "HUBBAN", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490G000557", "commonName": "Bank Station / King William Street", "placeType": "StopPoint", "additionalProperties": [], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000013F", "indicator": "Stop F", "stopLetter": "F", "modes": ["bus"], "icsCode": "1007607", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G000557", "hubNaptanCode": "HUBBAN", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000013F", "commonName": "Bank Station / King William Street", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.512261, "lon": -0.088051}], "lat": 51.512261, "lon": -0.088051}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490G000559", "modes": ["bus"], "icsCode": "1007620", "stopType": "NaptanOnstreetBusCoachStopPair", "stationNaptan": "490G000559", "hubNaptanCode": "HUBBAN", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490G000559", "commonName": "Bank Station / Threadneedle Street", "placeType": "StopPoint", "additionalProperties": [], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000013C", "indicator": "Stop C", "stopLetter": "C", "modes": ["bus"], "icsCode": "1007620", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G000559", "hubNaptanCode": "HUBBAN", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000013C", "commonName": "Bank Station / Threadneedle Street", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.513823, "lon": -0.08787}], "lat": 51.513823, "lon": -0.08787}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490G000713", "modes": ["bus"], "icsCode": "1011218", "stopType": "NaptanOnstreetBusCoachStopPair", "stationNaptan": "490G000713", "hubNaptanCode": "HUBBAN", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490G000713", "commonName": "Bank Station / Princes Street", "placeType": "StopPoint", "additionalProperties": [], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490011218A", "indicator": "Stop A", "stopLetter": "A", "modes": ["bus"], "icsCode": "1011218", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G000713", "hubNaptanCode": "HUBBAN", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490011218A", "commonName": "Bank Station / Princes Street", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.514311, "lon": -0.089652}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490011218B", "indicator": "Stop B", "stopLetter": "B", "modes": ["bus"], "icsCode": "1011218", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G000713", "hubNaptanCode": "HUBBAN", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490011218B", "commonName": "Bank Station / Princes Street", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.513963, "lon": -0.089263}], "lat": 51.513963, "lon": -0.089263}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "940GZZDLBNK", "modes": ["dlr"], "stopType": "NaptanMetroStation", "stationNaptan": "940GZZDLBNK", "hubNaptanCode": "HUBBAN", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "940GZZDLBNK", "commonName": "Bank DLR Station", "placeType": "StopPoint", "additionalProperties": [], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZDLBNK1", "modes": [], "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZDLBNK", "hubNaptanCode": "HUBBAN", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "9400ZZDLBNK1", "commonName": "Bank DLR Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 0.0, "lon": 0.0}], "lat": 51.513233, "lon": -0.088515}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "940GZZLUBNK", "modes": ["tube"], "icsCode": "1000013", "stopType": "NaptanMetroStation", "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"}, {"$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"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "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": ["central"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "940GZZLUBNK", "lineIdentifier": ["waterloo-city"]}, {"$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": ["central", "waterloo-city", "northern"]}], "status": true, "id": "940GZZLUBNK", "commonName": "Bank 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": "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"}, {"$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": "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": "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": "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": "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": "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_101"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_120"}, {"$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_427"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_579"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_587"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5907"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5901"}, {"$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_5897"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5919"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5921"}], "children": [{"$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": "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}], "lat": 51.513356, "lon": -0.088899}], "lat": 51.513395, "lon": -0.089095}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "HUBBDS", "modes": ["tube", "elizabeth-line"], "icsCode": "1000025", "stopType": "TransportInterchange", "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"}, {"$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": "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": ["jubilee"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "910GBONDST", "lineIdentifier": ["elizabeth"]}, {"$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": ["jubilee", "central"]}, {"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "elizabeth-line", "lineIdentifier": ["elizabeth"]}], "status": true, "id": "HUBBDS", "commonName": "Bond Street", "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": "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": "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": "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": "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": "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": "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": "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_44"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_106"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_141"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_180"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_210"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_289"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_301"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_348"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_349"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_366"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_382"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5633"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5683"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5302"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5139"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5821"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5576"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5868"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5668"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5607"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5862"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_4171"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_4787"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5195"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5617"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5820"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_4676"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5565"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5600"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5611"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5104"}], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "910GBONDST", "modes": ["elizabeth-line"], "icsCode": "1000025", "stopType": "NaptanRailStation", "stationNaptan": "910GBONDST", "hubNaptanCode": "HUBBDS", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "910GBONDST", "commonName": "Bond Street", "placeType": "StopPoint", "additionalProperties": [], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9100BONDST1", "modes": [], "icsCode": "1000025", "stopType": "NaptanRailAccessArea", "stationNaptan": "910GBONDST", "hubNaptanCode": "HUBBDS", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "9100BONDST1", "commonName": "Bond Street Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 0.0, "lon": 0.0}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9100BONDST0", "modes": [], "icsCode": "1000025", "stopType": "NaptanRailAccessArea", "stationNaptan": "910GBONDST", "hubNaptanCode": "HUBBDS", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "9100BONDST0", "commonName": "Bond Street Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 0.0, "lon": 0.0}], "lat": 51.513895, "lon": -0.147246}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "940GZZLUBND", "modes": ["tube"], "icsCode": "1000025", "stopType": "NaptanMetroStation", "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"}, {"$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": ["jubilee"]}, {"$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": ["jubilee", "central"]}], "status": true, "id": "940GZZLUBND", "commonName": "Bond Street 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": "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": "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"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.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": "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": "Lifts", "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": "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": "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": "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": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_106"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_141"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_180"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_210"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_301"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_348"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_366"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_400"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_514"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5633"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5302"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5139"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5576"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5668"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5607"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_4334"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5862"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_4171"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_4787"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_4802"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5195"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5617"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5239"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5820"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_4676"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5565"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_4871"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5611"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5104"}], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490G00025BV", "modes": ["bus"], "icsCode": "1000025", "stopType": "NaptanOnstreetBusCoachStopCluster", "stationNaptan": "940GZZLUBND", "hubNaptanCode": "HUBBDS", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490G00025BV", "commonName": "Bond Street Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.514304, "lon": -0.149723}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490G00025BW", "modes": ["bus"], "icsCode": "1000025", "stopType": "NaptanOnstreetBusCoachStopCluster", "stationNaptan": "940GZZLUBND", "hubNaptanCode": "HUBBDS", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490G00025BW", "commonName": "Bond Street Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.514304, "lon": -0.149723}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "4900BONDST0", "indicator": "Entrance 8", "stopLetter": "8", "modes": [], "icsCode": "1000025", "stopType": "NaptanRailEntrance", "stationNaptan": "940GZZLUBND", "hubNaptanCode": "HUBBDS", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "4900BONDST0", "commonName": "Bond Street Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.513416, "lon": -0.148836}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "4900BONDST1", "indicator": "Entrance 9", "stopLetter": "9", "modes": [], "icsCode": "1000025", "stopType": "NaptanRailEntrance", "stationNaptan": "940GZZLUBND", "hubNaptanCode": "HUBBDS", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "4900BONDST1", "commonName": "Bond Street Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.514045, "lon": -0.144775}, {"$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": "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}], "lat": 51.514304, "lon": -0.149723}], "lat": 51.513362, "lon": -0.148795}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "HUBBFR", "modes": ["bus", "tube", "national-rail"], "icsCode": "1000023", "stopType": "TransportInterchange", "hubNaptanCode": "HUBBFR", "lines": [{"$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": "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": "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": "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": "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": "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": "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": "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", "naptanIdReference": "490013934N", "stationAtcoCode": "490G00013934", "lineIdentifier": ["40", "n89", "63", "n63"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490013934S", "stationAtcoCode": "490G00013934", "lineIdentifier": ["40", "n89", "63", "n63"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "910GBLFR", "lineIdentifier": ["thameslink"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490000023BA", "stationAtcoCode": "490G00023BB", "lineIdentifier": ["4"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490000023BB", "stationAtcoCode": "490G00023BB", "lineIdentifier": ["4"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "910GBLFR", "lineIdentifier": ["southeastern"]}, {"$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": "bus", "lineIdentifier": ["40", "n89", "63", "4", "n63"]}, {"$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": "tube", "lineIdentifier": ["circle", "district"]}], "status": true, "id": "HUBBFR", "commonName": "Blackfriars", "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": "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": "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": "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": "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": "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": "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": "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": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_48"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_195"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_230"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_240"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_659"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_773"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_792"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_810"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_839"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_842"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5865"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5920"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5909"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5922"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5949"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5928"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5822"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5814"}], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490G00013934", "modes": ["bus"], "icsCode": "1013934", "stopType": "NaptanOnstreetBusCoachStopPair", "stationNaptan": "490G00013934", "hubNaptanCode": "HUBBFR", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490G00013934", "commonName": "Blackfriars Station / South Entrance", "placeType": "StopPoint", "additionalProperties": [], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490013934N", "indicator": "Stop C", "stopLetter": "C", "modes": ["bus"], "icsCode": "1013934", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00013934", "hubNaptanCode": "HUBBFR", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490013934N", "commonName": "Blackfriars Station / South Entrance", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.508798, "lon": -0.104624}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490013934S", "indicator": "Stop D", "stopLetter": "D", "modes": ["bus"], "icsCode": "1013934", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00013934", "hubNaptanCode": "HUBBFR", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490013934S", "commonName": "Blackfriars Station / South Entrance", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.508209, "lon": -0.104303}], "lat": 51.508209, "lon": -0.104303}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "910GBLFR", "modes": ["national-rail"], "icsCode": "1000023", "stopType": "NaptanRailStation", "stationNaptan": "910GBLFR", "hubNaptanCode": "HUBBFR", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "910GBLFR", "commonName": "London Blackfriars Rail Station", "placeType": "StopPoint", "additionalProperties": [], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490G00023BA", "modes": ["bus"], "icsCode": "1000023", "stopType": "NaptanOnstreetBusCoachStopCluster", "stationNaptan": "910GBLFR", "hubNaptanCode": "HUBBFR", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490G00023BA", "commonName": "Blackfriars Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.51181, "lon": -0.103332}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490G00023BB", "modes": ["bus"], "icsCode": "1000023", "stopType": "NaptanOnstreetBusCoachStopCluster", "stationNaptan": "490G00023BB", "hubNaptanCode": "HUBBFR", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490G00023BB", "commonName": "Blackfriars Station", "placeType": "StopPoint", "additionalProperties": [], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000023BA", "indicator": "Stop A", "stopLetter": "A", "modes": ["bus"], "icsCode": "1000023", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00023BB", "hubNaptanCode": "HUBBFR", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000023BA", "commonName": "Blackfriars Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.51221, "lon": -0.102609}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000023BB", "indicator": "Stop B", "stopLetter": "B", "modes": ["bus"], "icsCode": "1000023", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00023BB", "hubNaptanCode": "HUBBFR", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000023BB", "commonName": "Blackfriars Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.51199, "lon": -0.102892}], "lat": 51.51221, "lon": -0.102609}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490G00023S", "modes": ["bus"], "icsCode": "1000023", "stopType": "NaptanOnstreetBusCoachStopCluster", "stationNaptan": "490G00023S", "hubNaptanCode": "HUBBFR", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490G00023S", "commonName": "Blackfriars Station", "placeType": "StopPoint", "additionalProperties": [], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000023S", "indicator": "Stop", "modes": ["bus"], "icsCode": "1000023", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00023S", "hubNaptanCode": "HUBBFR", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000023S", "commonName": "Blackfriars Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.511465, "lon": -0.102136}], "lat": 51.511465, "lon": -0.102136}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490G00023T", "modes": ["bus"], "icsCode": "1000023", "stopType": "NaptanOnstreetBusCoachStopCluster", "stationNaptan": "910GBLFR", "hubNaptanCode": "HUBBFR", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490G00023T", "commonName": "Blackfriars Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.510348, "lon": -0.104243}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "4900BLFR0", "indicator": "Entrance 1", "stopLetter": "1", "modes": [], "icsCode": "1000023", "stopType": "NaptanRailEntrance", "stationNaptan": "910GBLFR", "hubNaptanCode": "HUBBFR", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "4900BLFR0", "commonName": "Blackfriars Rail Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.511654, "lon": -0.104347}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "4900BLFR1", "indicator": "Entrance 2", "stopLetter": "2", "modes": [], "icsCode": "1000023", "stopType": "NaptanRailEntrance", "stationNaptan": "910GBLFR", "hubNaptanCode": "HUBBFR", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "4900BLFR1", "commonName": "Blackfriars Rail Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.508517, "lon": -0.103368}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9100BLFR3", "modes": [], "icsCode": "1000023", "stopType": "NaptanRailAccessArea", "stationNaptan": "910GBLFR", "hubNaptanCode": "HUBBFR", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "9100BLFR3", "commonName": "Blackfriars", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 0.0, "lon": 0.0}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9100BLFR2", "modes": [], "icsCode": "1000023", "stopType": "NaptanRailAccessArea", "stationNaptan": "910GBLFR", "hubNaptanCode": "HUBBFR", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "9100BLFR2", "commonName": "Blackfriars", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 0.0, "lon": 0.0}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9100BLFR1", "modes": [], "icsCode": "1000023", "stopType": "NaptanRailAccessArea", "stationNaptan": "910GBLFR", "hubNaptanCode": "HUBBFR", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "9100BLFR1", "commonName": "Blackfriars", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 0.0, "lon": 0.0}], "lat": 51.51181, "lon": -0.103332}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "940GZZLUBKF", "modes": ["tube"], "icsCode": "1000023", "stopType": "NaptanMetroStation", "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": "940GZZLUBKF", "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": "Escalators", "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": "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": "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, 3 in ticket halls, 2 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": "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": "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": "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": "BlueBadgeCarParkSpaces", "sourceSystemKey": "LRAD", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_839"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_842"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5926"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_703"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_773"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_659"}, {"$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": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_27"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_48"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_136"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5920"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5909"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5922"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5924"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5911"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5928"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5814"}], "children": [{"$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": "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}], "lat": 51.511581, "lon": -0.103659}], "lat": 51.509613, "lon": -0.104166}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "HUBBHO", "modes": ["tube", "overground", "bus"], "icsCode": "1000024", "stopType": "TransportInterchange", "hubNaptanCode": "HUBBHO", "lines": [{"$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": "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": "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": "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": "london-overground", "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"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490000024C", "stationAtcoCode": "490G00024D", "lineIdentifier": ["n73", "123", "230"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490000024D", "stationAtcoCode": "490G00024D", "lineIdentifier": ["n73", "123"]}, {"$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": ["w11", "230", "158"]}, {"$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", "stationAtcoCode": "940GZZLUBLR", "lineIdentifier": ["victoria"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "bus", "lineIdentifier": ["n73", "w11", "123", "230", "158"]}, {"$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"]}], "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": "910GBLCHSRD", "modes": ["overground"], "icsCode": "1000024", "stopType": "NaptanRailStation", "stationNaptan": "910GBLCHSRD", "hubNaptanCode": "HUBBHO", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "910GBLCHSRD", "commonName": "Blackhorse Road Rail Station", "placeType": "StopPoint", "additionalProperties": [], "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": [], "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": [], "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": [], "children": [], "lat": 51.58698, "lon": -0.04171}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9100BLCHSRD0", "modes": [], "icsCode": "1000024", "stopType": "NaptanRailAccessArea", "stationNaptan": "910GBLCHSRD", "hubNaptanCode": "HUBBHO", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "9100BLCHSRD0", "commonName": "Blackhorse Road Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 0.0, "lon": 0.0}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9100BLCHSRD1", "modes": [], "icsCode": "1000024", "stopType": "NaptanRailAccessArea", "stationNaptan": "910GBLCHSRD", "hubNaptanCode": "HUBBHO", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "9100BLCHSRD1", "commonName": "Blackhorse Road Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 0.0, "lon": 0.0}], "lat": 51.586605, "lon": -0.041236}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "940GZZLUBLR", "modes": ["tube"], "icsCode": "1000024", "stopType": "NaptanMetroStation", "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": "940GZZLUBLR", "commonName": "Blackhorse Road Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "CarParks_800466"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.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": "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": "ASDA Click and Collect", "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": "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": "ServiceInfo", "key": "Night", "sourceSystemKey": "TransXchangeETL", "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": "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": "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"}], "children": [{"$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}], "lat": 51.586919, "lon": -0.04115}], "lat": 51.586768, "lon": -0.041185}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "HUBBKG", "modes": ["overground", "tube", "bus", "national-rail"], "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": "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": "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": "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": "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": "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": "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": "london-overground", "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": "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": "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": "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": "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": "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": "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": "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": "366", "name": "366", "uri": "/Line/366", "type": "Line", "crowding": {"$type": "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": "490000015L", "stationAtcoCode": "490G00015G", "lineIdentifier": ["287", "238", "el1", "169", "366"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490000015H", "stationAtcoCode": "490G00015G", "lineIdentifier": ["287", "sl2", "el2", "el3", "62", "368", "el1", "687"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490000015K", "stationAtcoCode": "490G00015G", "lineIdentifier": ["sl2", "n15", "el2", "el3", "62", "368", "5", "687"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490000015X", "stationAtcoCode": "490G00015G", "lineIdentifier": ["n15", "238", "5", "169", "366"]}, {"$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"]}, {"$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": ["district"]}, {"$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": "bus", "lineIdentifier": ["287", "sl2", "n15", "el2", "el3", "62", "368", "238", "el1", "5", "169", "687", "366"]}, {"$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": "910GBARKING", "modes": ["overground", "national-rail"], "icsCode": "1000015", "stopType": "NaptanRailStation", "stationNaptan": "910GBARKING", "hubNaptanCode": "HUBBKG", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "910GBARKING", "commonName": "Barking Rail Station", "placeType": "StopPoint", "additionalProperties": [], "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": [], "children": [], "lat": 51.539439, "lon": 0.081434}, {"$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}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9100BARKING1", "modes": [], "icsCode": "1000015", "stopType": "NaptanRailAccessArea", "stationNaptan": "910GBARKING", "hubNaptanCode": "HUBBKG", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "9100BARKING1", "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": "940GZZLUBKG", "modes": ["tube"], "icsCode": "1000015", "stopType": "NaptanMetroStation", "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"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "940GZZLUBKG", "lineIdentifier": ["district"]}, {"$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": ["district", "hammersmith-city"]}], "status": true, "id": "940GZZLUBKG", "commonName": "Barking 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": "Gates", "sourceSystemKey": "StaticObjects", "value": "7"}, {"$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": "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": "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": "SunTo", "sourceSystemKey": "StaticObjects", "value": "23: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": "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": "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": "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": "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": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5722"}], "children": [{"$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}], "lat": 51.539321, "lon": 0.081053}], "lat": 51.539413, "lon": 0.080988}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "HUBBRX", "modes": ["national-rail", "bus", "tube"], "icsCode": "1000031", "stopType": "TransportInterchange", "hubNaptanCode": "HUBBRX", "lines": [{"$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": "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"}, {"$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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490000031Q", "stationAtcoCode": "490G00031N", "lineIdentifier": ["3", "432", "196", "415", "2", "n3", "n2"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490000031R", "stationAtcoCode": "490G00031N", "lineIdentifier": ["3", "759", "159", "59", "109", "355", "n3", "n109"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "910GBRIXTON", "lineIdentifier": ["southeastern"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "940GZZLUBXN", "lineIdentifier": ["victoria"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490000031P", "stationAtcoCode": "490G00031N", "lineIdentifier": ["n133", "759", "159", "45", "133", "n250", "333", "59", "109", "118", "n109", "250"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490000031S", "stationAtcoCode": "490G00031N", "lineIdentifier": ["n133", "133", "415", "118"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490000031T", "stationAtcoCode": "490G00031N", "lineIdentifier": ["432", "45", "35", "196", "n250", "2", "333", "p4", "n2", "250"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490000031N", "stationAtcoCode": "490G00031N", "lineIdentifier": ["35", "p4", "355"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490000031E", "stationAtcoCode": "490G00031E", "lineIdentifier": ["322"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490000031W", "stationAtcoCode": "490G00031E", "lineIdentifier": ["322"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "bus", "lineIdentifier": ["3", "n133", "759", "432", "159", "45", "35", "133", "196", "415", "n250", "2", "333", "322", "59", "118", "109", "p4", "355", "n3", "n2", "n109", "250"]}, {"$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": "tube", "lineIdentifier": ["victoria"]}], "status": true, "id": "HUBBRX", "commonName": "Brixton", "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": "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": "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": "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": "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": "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": "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": "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": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_831"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_832"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_833"}], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "910GBRIXTON", "modes": ["national-rail"], "icsCode": "1000325", "stopType": "NaptanRailStation", "stationNaptan": "910GBRIXTON", "hubNaptanCode": "HUBBRX", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "910GBRIXTON", "commonName": "Brixton Rail Station", "placeType": "StopPoint", "additionalProperties": [], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "4900BRIXTON1", "indicator": "Entrance 1", "stopLetter": "1", "modes": [], "icsCode": "1000325", "stopType": "NaptanRailEntrance", "stationNaptan": "910GBRIXTON", "hubNaptanCode": "HUBBRX", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "4900BRIXTON1", "commonName": "Brixton Rail Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.463235, "lon": -0.113639}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9100BRIXTON1", "modes": [], "icsCode": "1000325", "stopType": "NaptanRailAccessArea", "stationNaptan": "910GBRIXTON", "hubNaptanCode": "HUBBRX", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "9100BRIXTON1", "commonName": "Brixton Rail Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 0.0, "lon": 0.0}], "lat": 51.463299, "lon": -0.114183}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "940GZZLUBXN", "modes": ["tube"], "icsCode": "1000031", "stopType": "NaptanMetroStation", "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": "940GZZLUBXN", "commonName": "Brixton 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": "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": "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": "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": "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": "Brixton Underground Station,London Underground Ltd.,Brixton Rd,London,SW9 8HE"}, {"$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": "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, 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": "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": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_831"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_832"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_833"}], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490G00031E", "modes": ["bus"], "icsCode": "1000031", "stopType": "NaptanOnstreetBusCoachStopCluster", "stationNaptan": "490G00031E", "hubNaptanCode": "HUBBRX", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490G00031E", "commonName": "Brixton Station", "placeType": "StopPoint", "additionalProperties": [], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000031E", "indicator": "Stop L", "stopLetter": "L", "modes": ["bus"], "icsCode": "1000031", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00031E", "hubNaptanCode": "HUBBRX", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000031E", "commonName": "Brixton Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.462973, "lon": -0.113592}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000031W", "indicator": "Stop LA", "stopLetter": "LA", "modes": ["bus"], "icsCode": "1000031", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00031E", "hubNaptanCode": "HUBBRX", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000031W", "commonName": "Brixton Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.463049, "lon": -0.114395}], "lat": 51.463049, "lon": -0.114395}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490G00031N", "modes": ["bus"], "icsCode": "1000031", "stopType": "NaptanOnstreetBusCoachStopCluster", "stationNaptan": "490G00031N", "hubNaptanCode": "HUBBRX", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490G00031N", "commonName": "Brixton Station", "placeType": "StopPoint", "additionalProperties": [], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000031N", "indicator": "Stop N", "stopLetter": "N", "modes": ["bus"], "icsCode": "1000031", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00031N", "hubNaptanCode": "HUBBRX", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000031N", "commonName": "Brixton Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.462117, "lon": -0.115139}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000031P", "indicator": "Stop P", "stopLetter": "P", "modes": ["bus"], "icsCode": "1000031", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00031N", "hubNaptanCode": "HUBBRX", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000031P", "commonName": "Brixton Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.461795, "lon": -0.115253}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000031Q", "indicator": "Stop Q", "stopLetter": "Q", "modes": ["bus"], "icsCode": "1000031", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00031N", "hubNaptanCode": "HUBBRX", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000031Q", "commonName": "Brixton Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.461617, "lon": -0.115361}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000031R", "indicator": "Stop R", "stopLetter": "R", "modes": ["bus"], "icsCode": "1000031", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00031N", "hubNaptanCode": "HUBBRX", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000031R", "commonName": "Brixton Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.462236, "lon": -0.115292}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000031S", "indicator": "Stop S", "stopLetter": "S", "modes": ["bus"], "icsCode": "1000031", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00031N", "hubNaptanCode": "HUBBRX", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000031S", "commonName": "Brixton Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.462137, "lon": -0.115282}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000031T", "indicator": "Stop T", "stopLetter": "T", "modes": ["bus"], "icsCode": "1000031", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00031N", "hubNaptanCode": "HUBBRX", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000031T", "commonName": "Brixton Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.461968, "lon": -0.115376}], "lat": 51.462117, "lon": -0.115139}, {"$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": "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}], "lat": 51.462618, "lon": -0.114888}], "lat": 51.462961, "lon": -0.114531}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "HUBCAN", "modes": ["bus", "dlr", "tube"], "icsCode": "1000039", "stopType": "TransportInterchange", "hubNaptanCode": "HUBCAN", "lines": [{"$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": "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": "300", "name": "300", "uri": "/Line/300", "type": "Line", "crowding": {"$type": "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": "147", "name": "147", "uri": "/Line/147", "type": "Line", "crowding": {"$type": "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": "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": "323", "name": "323", "uri": "/Line/323", "type": "Line", "crowding": {"$type": "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": "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": "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": "474", "name": "474", "uri": "/Line/474", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "115", "name": "115", "uri": "/Line/115", "type": "Line", "crowding": {"$type": "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": "309", "name": "309", "uri": "/Line/309", "type": "Line", "crowding": {"$type": "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": "490000039A", "stationAtcoCode": "490G00039A", "lineIdentifier": ["5", "300", "147", "108", "323", "n550", "69", "309"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490000039F", "stationAtcoCode": "490G00039A", "lineIdentifier": ["5", "300", "330", "115", "n15"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "940GZZLUCGT", "lineIdentifier": ["jubilee"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490000039C", "stationAtcoCode": "490G00039A", "lineIdentifier": ["n551", "n550", "309"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490000039B", "stationAtcoCode": "490G00039A", "lineIdentifier": ["n551", "147", "474"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490000039E", "stationAtcoCode": "490G00039A", "lineIdentifier": ["108", "323", "69", "474"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "940GZZDLCGT", "lineIdentifier": ["dlr"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490000039D", "stationAtcoCode": "490G00039A", "lineIdentifier": ["330"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490000039G", "stationAtcoCode": "490G00039A", "lineIdentifier": ["115", "n15"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "bus", "lineIdentifier": ["5", "300", "n551", "147", "108", "323", "n550", "330", "69", "474", "115", "n15", "309"]}, {"$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": "dlr", "lineIdentifier": ["dlr"]}], "status": true, "id": "HUBCAN", "commonName": "Canning Town", "placeType": "StopPoint", "additionalProperties": [{"$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": "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": "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": "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": "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": "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": "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": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5301"}], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "940GZZDLCGT", "modes": ["dlr"], "icsCode": "1000039", "stopType": "NaptanMetroStation", "stationNaptan": "940GZZDLCGT", "hubNaptanCode": "HUBCAN", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "940GZZDLCGT", "commonName": "Canning Town DLR Station", "placeType": "StopPoint", "additionalProperties": [], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490G00039A", "modes": ["bus"], "icsCode": "1000039", "stopType": "NaptanOnstreetBusCoachStopCluster", "stationNaptan": "490G00039A", "hubNaptanCode": "HUBCAN", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490G00039A", "commonName": "Canning Town Bus Station", "placeType": "StopPoint", "additionalProperties": [], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000039A", "indicator": "Stop A", "stopLetter": "A", "modes": ["bus"], "icsCode": "1000039", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00039A", "hubNaptanCode": "HUBCAN", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000039A", "commonName": "Canning Town Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.514547, "lon": 0.008177}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000039B", "indicator": "Stop B", "stopLetter": "B", "modes": ["bus"], "icsCode": "1000039", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00039A", "hubNaptanCode": "HUBCAN", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000039B", "commonName": "Canning Town Bus Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.513652, "lon": 0.008973}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000039C", "indicator": "Stop C", "stopLetter": "C", "modes": ["bus"], "icsCode": "1000039", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00039A", "hubNaptanCode": "HUBCAN", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000039C", "commonName": "Canning Town Bus Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.51404, "lon": 0.008904}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000039D", "indicator": "Stop D", "stopLetter": "D", "modes": ["bus"], "icsCode": "1000039", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00039A", "hubNaptanCode": "HUBCAN", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000039D", "commonName": "Canning Town Bus Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.514236, "lon": 0.008509}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000039E", "indicator": "Stop E", "stopLetter": "E", "modes": ["bus"], "icsCode": "1000039", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00039A", "hubNaptanCode": "HUBCAN", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000039E", "commonName": "Canning Town Bus Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.514314, "lon": 0.008657}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000039F", "indicator": "Stop F", "stopLetter": "F", "modes": ["bus"], "icsCode": "1000039", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00039A", "hubNaptanCode": "HUBCAN", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000039F", "commonName": "Canning Town Bus Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.514497, "lon": 0.008477}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000039G", "indicator": "Stop G", "stopLetter": "G", "modes": ["bus"], "icsCode": "1000039", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00039A", "hubNaptanCode": "HUBCAN", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000039G", "commonName": "Canning Town Bus Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.514428, "lon": 0.008273}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000039N1", "indicator": "->N", "stopLetter": "->N", "modes": ["bus"], "icsCode": "1000039", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00039A", "hubNaptanCode": "HUBCAN", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000039N1", "commonName": "Canning Town Bus Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.514008, "lon": 0.009176}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000039Z", "indicator": "->S", "stopLetter": "->S", "modes": ["bus"], "icsCode": "1000039", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00039A", "hubNaptanCode": "HUBCAN", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000039Z", "commonName": "Canning Town Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.514259, "lon": 0.00926}], "lat": 51.514428, "lon": 0.008273}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZDLCGT3", "indicator": "Platform 3", "stopLetter": "3", "modes": [], "icsCode": "1000039", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZDLCGT", "hubNaptanCode": "HUBCAN", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "9400ZZDLCGT3", "commonName": "Canning Town DLR Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 0.0, "lon": 0.0}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZDLCGT1", "indicator": "Platform 1", "stopLetter": "1", "modes": [], "icsCode": "1000039", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZDLCGT", "hubNaptanCode": "HUBCAN", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "9400ZZDLCGT1", "commonName": "Canning Town DLR Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 0.0, "lon": 0.0}], "lat": 51.514127, "lon": 0.008101}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "940GZZLUCGT", "modes": ["tube"], "icsCode": "1000039", "stopType": "NaptanMetroStation", "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": "940GZZLUCGT", "commonName": "Canning Town 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": "Cash Machines", "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": "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": "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": "10"}, {"$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": "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": "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": "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": "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": "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 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"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "ToiletNote", "sourceSystemKey": "LRAD", "value": "(bus station)"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5301"}], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "4900ZZDLCGT2", "indicator": "Entrance 1", "stopLetter": "1", "modes": [], "icsCode": "1000039", "stopType": "NaptanMetroEntrance", "stationNaptan": "940GZZLUCGT", "hubNaptanCode": "HUBCAN", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "4900ZZDLCGT2", "commonName": "Canning Town Underground Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.514584, "lon": 0.008135}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "4900ZZDLCGT3", "indicator": "Entrance 2", "stopLetter": "2", "modes": [], "icsCode": "1000039", "stopType": "NaptanMetroEntrance", "stationNaptan": "940GZZLUCGT", "hubNaptanCode": "HUBCAN", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "4900ZZDLCGT3", "commonName": "Canning Town Underground Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.514464, "lon": 0.007251}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "4900ZZDLCGT4", "indicator": "Entrance 3", "stopLetter": "3", "modes": [], "icsCode": "1000039", "stopType": "NaptanMetroEntrance", "stationNaptan": "940GZZLUCGT", "hubNaptanCode": "HUBCAN", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "4900ZZDLCGT4", "commonName": "Canning Town Underground Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.514911, "lon": 0.007948}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "4900ZZDLCGT5", "indicator": "Entrance 4", "stopLetter": "4", "modes": [], "icsCode": "1000039", "stopType": "NaptanMetroEntrance", "stationNaptan": "940GZZLUCGT", "hubNaptanCode": "HUBCAN", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "4900ZZDLCGT5", "commonName": "Canning Town Underground Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.514671, "lon": 0.008312}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "4900ZZDLCGT6", "indicator": "Entrance 5", "stopLetter": "5", "modes": [], "icsCode": "1000039", "stopType": "NaptanMetroEntrance", "stationNaptan": "940GZZLUCGT", "hubNaptanCode": "HUBCAN", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "4900ZZDLCGT6", "commonName": "Canning Town Underground Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.513885, "lon": 0.008998}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "4900ZZDLCGT7", "indicator": "Entrance 6", "stopLetter": "6", "modes": [], "icsCode": "1000039", "stopType": "NaptanMetroEntrance", "stationNaptan": "940GZZLUCGT", "hubNaptanCode": "HUBCAN", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "4900ZZDLCGT7", "commonName": "Canning Town Underground Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.513314, "lon": 0.009276}, {"$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}], "lat": 51.513584, "lon": 0.008322}], "lat": 51.514029, "lon": 0.008025}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "HUBCAW", "modes": ["dlr", "bus", "tube", "elizabeth-line"], "icsCode": "1000038", "stopType": "TransportInterchange", "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"}, {"$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": "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": "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": "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": "d7", "name": "D7", "uri": "/Line/d7", "type": "Line", "crowding": {"$type": "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": "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": "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": "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": "940GZZLUCYF", "lineIdentifier": ["jubilee"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490000038G", "stationAtcoCode": "490G00038G", "lineIdentifier": ["d3", "277", "d7", "135", "d8", "n550", "n277"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490000038F", "stationAtcoCode": "490G00038F", "lineIdentifier": ["d3", "277", "d7", "135", "d8", "n277", "n550"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "910GCANWHRF", "lineIdentifier": ["elizabeth"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490016668K", "stationAtcoCode": "490G000917", "lineIdentifier": ["277", "d7", "135", "n550", "n277"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490016668L", "stationAtcoCode": "490G000917", "lineIdentifier": ["277", "d7", "135", "n550", "n277"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "940GZZDLCAN", "lineIdentifier": ["dlr"]}], "lineModeGroups": [{"$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": ["d3", "277", "d7", "135", "d8", "n550", "n277"]}, {"$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": "dlr", "lineIdentifier": ["dlr"]}], "status": true, "id": "HUBCAW", "commonName": "Canary Wharf", "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": "Escalators", "sourceSystemKey": "StaticObjects", "value": "20"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.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": "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": "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": "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": "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": "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": "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": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_448"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_494"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_532"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_551"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_556"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_570"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5959"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5962"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5963"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5953"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5951"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5955"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5957"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5964"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5954"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5950"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5961"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5956"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5952"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5958"}], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490G000917", "modes": ["bus"], "icsCode": "1016668", "stopType": "NaptanOnstreetBusCoachStopPair", "stationNaptan": "490G000917", "hubNaptanCode": "HUBCAW", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490G000917", "commonName": "Canary Wharf Station", "placeType": "StopPoint", "additionalProperties": [], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490016668K", "indicator": "Stop K", "stopLetter": "K", "modes": ["bus"], "icsCode": "1016668", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G000917", "hubNaptanCode": "HUBCAW", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490016668K", "commonName": "Canary Wharf Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.502873, "lon": -0.018186}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490016668L", "indicator": "Stop L", "stopLetter": "L", "modes": ["bus"], "icsCode": "1016668", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G000917", "hubNaptanCode": "HUBCAW", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490016668L", "commonName": "Canary Wharf Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.502802, "lon": -0.019817}], "lat": 51.502802, "lon": -0.019817}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "910GCANWHRF", "modes": ["elizabeth-line"], "icsCode": "1002163", "stopType": "NaptanRailStation", "stationNaptan": "910GCANWHRF", "hubNaptanCode": "HUBCAW", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "910GCANWHRF", "commonName": "Canary Wharf", "placeType": "StopPoint", "additionalProperties": [], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "4900CANWHRF0", "indicator": "Entrance 1", "stopLetter": "1", "modes": [], "icsCode": "1002163", "stopType": "NaptanRailEntrance", "stationNaptan": "910GCANWHRF", "hubNaptanCode": "HUBCAW", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "4900CANWHRF0", "commonName": "Canary Wharf Rail Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.506501, "lon": -0.016833}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "4900CANWHRF1", "indicator": "Entrance 2", "stopLetter": "2", "modes": [], "icsCode": "1002163", "stopType": "NaptanRailEntrance", "stationNaptan": "910GCANWHRF", "hubNaptanCode": "HUBCAW", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "4900CANWHRF1", "commonName": "Canary Wharf Rail Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.506098, "lon": -0.020121}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "4900CANWHRF2", "indicator": "Entrance 3", "stopLetter": "3", "modes": [], "icsCode": "1002163", "stopType": "NaptanRailEntrance", "stationNaptan": "910GCANWHRF", "hubNaptanCode": "HUBCAW", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "4900CANWHRF2", "commonName": "Canary Wharf Rail Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.50605, "lon": -0.018855}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9100CANWHRF0", "modes": [], "icsCode": "1002163", "stopType": "NaptanRailAccessArea", "stationNaptan": "910GCANWHRF", "hubNaptanCode": "HUBCAW", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "9100CANWHRF0", "commonName": "Canary Wharf Crossrail Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 0.0, "lon": 0.0}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9100CANWHRF1", "modes": [], "icsCode": "1002163", "stopType": "NaptanRailAccessArea", "stationNaptan": "910GCANWHRF", "hubNaptanCode": "HUBCAW", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "9100CANWHRF1", "commonName": "Canary Wharf Crossrail Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 0.0, "lon": 0.0}], "lat": 51.506098, "lon": -0.020121}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "940GZZDLCAN", "modes": ["dlr"], "icsCode": "1003008", "stopType": "NaptanMetroStation", "stationNaptan": "940GZZDLCAN", "hubNaptanCode": "HUBCAW", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "940GZZDLCAN", "commonName": "Canary Wharf DLR Station", "placeType": "StopPoint", "additionalProperties": [], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "4900ZZDLCAN1", "indicator": "Entrance 1", "stopLetter": "1", "modes": ["dlr"], "icsCode": "1003008", "stopType": "NaptanMetroEntrance", "stationNaptan": "940GZZDLCAN", "hubNaptanCode": "HUBCAW", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "4900ZZDLCAN1", "commonName": "Canary Wharf DLR Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.505416, "lon": -0.020727}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "4900ZZDLCAN2", "indicator": "Entrance 2", "stopLetter": "2", "modes": ["dlr"], "icsCode": "1003008", "stopType": "NaptanMetroEntrance", "stationNaptan": "940GZZDLCAN", "hubNaptanCode": "HUBCAW", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "4900ZZDLCAN2", "commonName": "Canary Wharf DLR Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.504745, "lon": -0.0209}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "4900ZZDLCAN3", "indicator": "Entrance 3", "stopLetter": "3", "modes": ["dlr"], "icsCode": "1003008", "stopType": "NaptanMetroEntrance", "stationNaptan": "940GZZDLCAN", "hubNaptanCode": "HUBCAW", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "4900ZZDLCAN3", "commonName": "Canary Wharf DLR Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.505046, "lon": -0.020642}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "4900ZZDLCAN4", "indicator": "Entrance 4", "stopLetter": "4", "modes": ["dlr"], "icsCode": "1003008", "stopType": "NaptanMetroEntrance", "stationNaptan": "940GZZDLCAN", "hubNaptanCode": "HUBCAW", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "4900ZZDLCAN4", "commonName": "Canary Wharf DLR Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.5051, "lon": -0.021173}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZDLCAN1", "modes": [], "icsCode": "1003008", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZDLCAN", "hubNaptanCode": "HUBCAW", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "9400ZZDLCAN1", "commonName": "Canary Wharf DLR Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 0.0, "lon": 0.0}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZDLCAN2", "modes": [], "icsCode": "1003008", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZDLCAN", "hubNaptanCode": "HUBCAW", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "9400ZZDLCAN2", "commonName": "Canary Wharf DLR Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 0.0, "lon": 0.0}], "lat": 51.504838, "lon": -0.020997}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "940GZZLUCYF", "modes": ["tube"], "icsCode": "1000038", "stopType": "NaptanMetroStation", "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": "940GZZLUCYF", "commonName": "Canary Wharf 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": "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": "Photo Booths", "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": "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": "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": "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": "Lifts", "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": "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": "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": "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": "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": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_448"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_494"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_532"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_551"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_570"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5959"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5962"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5963"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5953"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5951"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5955"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5957"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5964"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5954"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5950"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5961"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5956"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5952"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5958"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_556"}], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490G00038F", "modes": ["bus"], "stopType": "NaptanOnstreetBusCoachStopCluster", "stationNaptan": "490G00038F", "hubNaptanCode": "HUBCAW", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490G00038F", "commonName": "Canary Wharf Station", "placeType": "StopPoint", "additionalProperties": [], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000038F", "indicator": "Stop F", "stopLetter": "F", "modes": ["bus"], "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00038F", "hubNaptanCode": "HUBCAW", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000038F", "commonName": "Canary Wharf Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.505473, "lon": -0.020912}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000038Z", "indicator": "Stop", "modes": ["bus"], "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00038F", "hubNaptanCode": "HUBCAW", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000038Z", "commonName": "Canary Wharf Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.505433, "lon": -0.02064}], "lat": 51.505433, "lon": -0.02064}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490G00038G", "modes": ["bus"], "icsCode": "1000038", "stopType": "NaptanOnstreetBusCoachStopCluster", "stationNaptan": "490G00038G", "hubNaptanCode": "HUBCAW", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490G00038G", "commonName": "Canary Wharf Station", "placeType": "StopPoint", "additionalProperties": [], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000038G", "indicator": "Stop G", "stopLetter": "G", "modes": ["bus"], "icsCode": "1000038", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00038G", "hubNaptanCode": "HUBCAW", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000038G", "commonName": "Canary Wharf Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.50472, "lon": -0.021046}], "lat": 51.50472, "lon": -0.021046}, {"$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": "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}], "lat": 51.503488, "lon": -0.018246}], "lat": 51.503734, "lon": -0.019121}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "HUBCFO", "modes": ["national-rail", "tube", "bus"], "icsCode": "1000042", "stopType": "TransportInterchange", "hubNaptanCode": "HUBCFO", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "chiltern-railways", "name": "Chiltern Railways", "uri": "/Line/chiltern-railways", "type": "Line", "crowding": {"$type": "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": "910GCHLFNAL", "lineIdentifier": ["chiltern-railways"]}, {"$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": "national-rail", "lineIdentifier": ["chiltern-railways"]}, {"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["metropolitan"]}], "status": true, "id": "HUBCFO", "commonName": "Chalfont & Latimer", "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": "Car park", "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": "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": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "CarParks_800440"}, {"$type": "Tfl.Api.Presentation.Entities.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": "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": "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": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "8"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "0"}], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "910GCHLFNAL", "modes": ["national-rail"], "icsCode": "1000042", "stopType": "NaptanRailStation", "stationNaptan": "910GCHLFNAL", "hubNaptanCode": "HUBCFO", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "910GCHLFNAL", "commonName": "Chalfont & Latimer Rail Station", "placeType": "StopPoint", "additionalProperties": [], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "040G00002102", "modes": [], "icsCode": "1000302", "stopType": "NaptanOnstreetBusCoachStopPair", "stationNaptan": "040G00002102", "hubNaptanCode": "HUBCFO", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "040G00002102", "commonName": "Station Forecourt", "placeType": "StopPoint", "additionalProperties": [], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "040000002102", "indicator": "o/s", "modes": [], "icsCode": "1000302", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "040G00002102", "hubNaptanCode": "HUBCFO", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "040000002102", "commonName": "Station Forecourt", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.667816, "lon": -0.560634}], "lat": 51.667816, "lon": -0.560634}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "040G00002191", "modes": [], "icsCode": "5253281", "stopType": "NaptanOnstreetBusCoachStopPair", "stationNaptan": "040G00002191", "hubNaptanCode": "HUBCFO", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "040G00002191", "commonName": "Chalfont Avenue", "placeType": "StopPoint", "additionalProperties": [], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "040000002006", "indicator": "Southbound", "modes": [], "icsCode": "5253281", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "040G00002191", "hubNaptanCode": "HUBCFO", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "040000002006", "commonName": "Chalfont Avenue", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.6688, "lon": -0.558752}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "040000002191", "indicator": "o/s 19", "stopLetter": "19", "modes": [], "icsCode": "5253281", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "040G00002191", "hubNaptanCode": "HUBCFO", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "040000002191", "commonName": "Chalfont Avenue", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.66881, "lon": -0.558867}], "lat": 51.66881, "lon": -0.558867}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "040G00002620", "modes": [], "icsCode": "1000042", "stopType": "NaptanOnstreetBusCoachStopPair", "stationNaptan": "910GCHLFNAL", "hubNaptanCode": "HUBCFO", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "040G00002620", "commonName": "Railway Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.668108, "lon": -0.560526}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "940GZZLUCAL", "modes": ["tube"], "icsCode": "1000042", "stopType": "NaptanMetroStation", "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": "940GZZLUCAL", "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": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$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": "Facility", "key": "Toilets", "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": "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": "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": "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": "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": "Accessibility", "key": "AccessViaLift", "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": "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": "BlueBadgeCarParkSpaces", "sourceSystemKey": "LRAD", "value": "5"}, {"$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": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "CarParks_800440"}], "children": [{"$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": "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}], "lat": 51.667985, "lon": -0.560689}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "0400CHLFNAL0", "indicator": "south entrance", "stopLetter": "entrance", "modes": [], "icsCode": "1000042", "stopType": "NaptanRailEntrance", "stationNaptan": "910GCHLFNAL", "hubNaptanCode": "HUBCFO", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "0400CHLFNAL0", "commonName": "Chalfont & Latimer Rail Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.667914, "lon": -0.560602}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "0400CHLFNAL1", "indicator": "north entrance", "stopLetter": "entrance", "modes": [], "icsCode": "1000042", "stopType": "NaptanRailEntrance", "stationNaptan": "910GCHLFNAL", "hubNaptanCode": "HUBCFO", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "0400CHLFNAL1", "commonName": "Chalfont & Latimer Rail Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.668121, "lon": -0.56061}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9100CHLFNAL2", "modes": [], "icsCode": "1000042", "stopType": "NaptanRailAccessArea", "stationNaptan": "910GCHLFNAL", "hubNaptanCode": "HUBCFO", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "9100CHLFNAL2", "commonName": "Chalfont and Latimer Rail Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 0.0, "lon": 0.0}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9100CHLFNAL1", "modes": [], "icsCode": "1000042", "stopType": "NaptanRailAccessArea", "stationNaptan": "910GCHLFNAL", "hubNaptanCode": "HUBCFO", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "9100CHLFNAL1", "commonName": "Chalfont and Latimer Rail Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 0.0, "lon": 0.0}], "lat": 51.668108, "lon": -0.560526}], "lat": 51.668109, "lon": -0.560519}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "HUBCHX", "modes": ["tube", "bus", "national-rail"], "icsCode": "1000045", "stopType": "TransportInterchange", "hubNaptanCode": "HUBCHX", "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "n89", "name": "N89", "uri": "/Line/n89", "type": "Line", "crowding": {"$type": "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": "490013766H", "stationAtcoCode": "490G00045", "lineIdentifier": ["176", "n21", "n343", "n9", "n551", "n15", "n550", "139", "15", "9", "23", "n89"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490013766G", "stationAtcoCode": "490G000803", "lineIdentifier": ["176", "n199", "n21", "n343", "139", "n89"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490013766K", "stationAtcoCode": "490G000803", "lineIdentifier": ["n199", "n44", "n91", "n87", "n155", "26", "91", "n26", "87"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490013766E", "stationAtcoCode": "490G00045", "lineIdentifier": ["n44", "n9", "n87", "n155", "9", "87", "23"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "910GCHRX", "lineIdentifier": ["southeastern"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490013766F", "stationAtcoCode": "490G000803", "lineIdentifier": ["n91", "n551", "n15", "26", "91", "n550", "15", "n26"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "940GZZLUCHX", "lineIdentifier": ["bakerloo"]}, {"$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": "bus", "lineIdentifier": ["176", "n199", "n21", "n44", "n343", "n9", "n91", "n87", "n155", "n551", "n15", "26", "91", "n550", "139", "15", "n26", "9", "87", "23", "n89"]}, {"$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": "tube", "lineIdentifier": ["bakerloo", "northern"]}], "status": true, "id": "HUBCHX", "commonName": "Charing Cross", "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": "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": "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": "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": "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": "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": "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_64"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_83"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_160"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_226"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_229"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_233"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_325"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_341"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_354"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_388"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5506"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5596"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5016"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5670"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5364"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5281"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5671"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5737"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_4470"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5875"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5855"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5965"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_4982"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5681"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5853"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5867"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5854"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5758"}], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490G000803", "modes": ["bus"], "icsCode": "1013766", "stopType": "NaptanOnstreetBusCoachStopCluster", "stationNaptan": "490G000803", "hubNaptanCode": "HUBCHX", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490G000803", "commonName": "Charing Cross Stn / Trafalgar Square", "placeType": "StopPoint", "additionalProperties": [], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490013766F", "indicator": "Stop F", "stopLetter": "F", "modes": ["bus"], "icsCode": "1013766", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G000803", "hubNaptanCode": "HUBCHX", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490013766F", "commonName": "Charing Cross Stn / Trafalgar Square", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.508165, "lon": -0.126194}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490013766G", "indicator": "Stop G", "stopLetter": "G", "modes": ["bus"], "icsCode": "1013766", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G000803", "hubNaptanCode": "HUBCHX", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490013766G", "commonName": "Trafalgar Square / Charing Cross Stn", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.508642, "lon": -0.126232}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490013766K", "indicator": "Stop K", "stopLetter": "K", "modes": ["bus"], "icsCode": "1013766", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G000803", "hubNaptanCode": "HUBCHX", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490013766K", "commonName": "Trafalgar Square / Charing Cross Stn", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.508005, "lon": -0.126345}], "lat": 51.508165, "lon": -0.126194}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "910GCHRX", "modes": ["national-rail"], "icsCode": "1000045", "stopType": "NaptanRailStation", "stationNaptan": "910GCHRX", "hubNaptanCode": "HUBCHX", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "910GCHRX", "commonName": "London Charing Cross Rail Station", "placeType": "StopPoint", "additionalProperties": [], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9100CHRX0", "modes": [], "icsCode": "1000045", "stopType": "NaptanRailAccessArea", "stationNaptan": "910GCHRX", "hubNaptanCode": "HUBCHX", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "9100CHRX0", "commonName": "Charing Cross", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 0.0, "lon": 0.0}], "lat": 51.508027, "lon": -0.124802}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "940GZZLUCHX", "modes": ["tube"], "icsCode": "1000045", "stopType": "NaptanMetroStation", "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"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "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": ["bakerloo"]}, {"$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": ["bakerloo", "northern"]}], "status": true, "id": "940GZZLUCHX", "commonName": "Charing Cross 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": "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": "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": "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": "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": "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": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_64"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_83"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_160"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_226"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_229"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_233"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_325"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_341"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_354"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5596"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5016"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5670"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5364"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5325"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5281"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5671"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5737"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_4470"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5855"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_4982"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5681"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5853"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5867"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5854"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5856"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5758"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5572"}], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490G00045", "modes": ["bus"], "icsCode": "1000045", "stopType": "NaptanOnstreetBusCoachStopCluster", "stationNaptan": "490G00045", "hubNaptanCode": "HUBCHX", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490G00045", "commonName": "Charing Cross Stn / Trafalgar Square", "placeType": "StopPoint", "additionalProperties": [], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490013766E", "indicator": "Stop E", "stopLetter": "E", "modes": ["bus"], "icsCode": "1000045", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00045", "hubNaptanCode": "HUBCHX", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490013766E", "commonName": "Charing Cross Stn / Trafalgar Square", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.508044, "lon": -0.126487}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490013766H", "indicator": "Stop H", "stopLetter": "H", "modes": ["bus"], "icsCode": "1000045", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00045", "hubNaptanCode": "HUBCHX", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490013766H", "commonName": "Charing Cross Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.508433, "lon": -0.12552}], "lat": 51.508044, "lon": -0.126487}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "4900CHRX0", "indicator": "Entrance 9", "stopLetter": "9", "modes": [], "icsCode": "1000045", "stopType": "NaptanRailEntrance", "stationNaptan": "940GZZLUCHX", "hubNaptanCode": "HUBCHX", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "4900CHRX0", "commonName": "London Charing Cross Rail Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.508118, "lon": -0.124971}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "4900CHRX1", "indicator": "Entrance 12", "stopLetter": "12", "modes": [], "icsCode": "1000045", "stopType": "NaptanRailEntrance", "stationNaptan": "940GZZLUCHX", "hubNaptanCode": "HUBCHX", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "4900CHRX1", "commonName": "London Charing Cross Rail Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.508061, "lon": -0.124224}, {"$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": "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}], "lat": 51.50741, "lon": -0.127277}], "lat": 51.507819, "lon": -0.126137}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "HUBCLW", "modes": ["bus", "tube", "national-rail"], "icsCode": "1000049", "stopType": "TransportInterchange", "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"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "chiltern-railways", "name": "Chiltern Railways", "uri": "/Line/chiltern-railways", "type": "Line", "crowding": {"$type": "Tfl.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"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "910GCHRW", "lineIdentifier": ["chiltern-railways"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["metropolitan"]}, {"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "national-rail", "lineIdentifier": ["chiltern-railways"]}], "status": true, "id": "HUBCLW", "commonName": "Chorleywood", "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": "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": "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": "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": "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": "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": "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": "Help Points", "sourceSystemKey": "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": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "CarParks_800441"}], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "910GCHRW", "modes": ["national-rail"], "icsCode": "1000049", "stopType": "NaptanRailStation", "stationNaptan": "910GCHRW", "hubNaptanCode": "HUBCLW", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "910GCHRW", "commonName": "Chorleywood Rail Station", "placeType": "StopPoint", "additionalProperties": [], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "210G3353", "modes": [], "icsCode": "5304899", "stopType": "NaptanOnstreetBusCoachStopPair", "stationNaptan": "210G3353", "hubNaptanCode": "HUBCLW", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "210G3353", "commonName": "Library", "placeType": "StopPoint", "additionalProperties": [], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "210021804610", "indicator": "opp", "modes": [], "icsCode": "5304899", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "210G3353", "hubNaptanCode": "HUBCLW", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "210021804610", "commonName": "Library", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.652643, "lon": -0.518069}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "210021804995", "indicator": "o/s", "modes": [], "icsCode": "5304899", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "210G3353", "hubNaptanCode": "HUBCLW", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "210021804995", "commonName": "Library", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.653092, "lon": -0.51869}], "lat": 51.653092, "lon": -0.51869}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "210G3356", "modes": [], "icsCode": "5304951", "stopType": "NaptanOnstreetBusCoachStopPair", "stationNaptan": "210G3356", "hubNaptanCode": "HUBCLW", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "210G3356", "commonName": "Memorial Hall", "placeType": "StopPoint", "additionalProperties": [], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "210021802180", "indicator": "nr", "modes": [], "icsCode": "5304951", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "210G3356", "hubNaptanCode": "HUBCLW", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "210021802180", "commonName": "Memorial Hall", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.6554, "lon": -0.517025}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "210021804600", "indicator": "opp", "modes": [], "icsCode": "5304951", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "210G3356", "hubNaptanCode": "HUBCLW", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "210021804600", "commonName": "Memorial Hall", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.655614, "lon": -0.516902}], "lat": 51.6554, "lon": -0.517025}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "940GZZLUCYD", "modes": ["tube"], "icsCode": "1000049", "stopType": "NaptanMetroStation", "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": "940GZZLUCYD", "commonName": "Chorleywood 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": "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": "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": "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": "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": "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": "Geo", "key": "Zone", "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": "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": "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"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "CarParks_800441"}], "children": [{"$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": "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}], "lat": 51.654358, "lon": -0.518461}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "2100CHRW0", "indicator": "back entrance", "stopLetter": "entrance", "modes": [], "icsCode": "1000049", "stopType": "NaptanRailEntrance", "stationNaptan": "910GCHRW", "hubNaptanCode": "HUBCLW", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "2100CHRW0", "commonName": "Chorleywood Rail Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.654274, "lon": -0.518305}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "2100CHRW1", "indicator": "main entrance", "stopLetter": "entrance", "modes": [], "icsCode": "1000049", "stopType": "NaptanRailEntrance", "stationNaptan": "910GCHRW", "hubNaptanCode": "HUBCLW", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "2100CHRW1", "commonName": "Chorleywood Rail Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.654151, "lon": -0.51854}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9100CHRW1", "modes": [], "icsCode": "1000049", "stopType": "NaptanRailAccessArea", "stationNaptan": "910GCHRW", "hubNaptanCode": "HUBCLW", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "9100CHRW1", "commonName": "Chorleywood Rail Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 0.0, "lon": 0.0}], "lat": 51.654249, "lon": -0.51832}], "lat": 51.654249, "lon": -0.518312}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "HUBCST", "modes": ["national-rail", "bus", "tube"], "icsCode": "1000040", "stopType": "TransportInterchange", "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"}, {"$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": "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": "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": "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": "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": "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": "17", "name": "17", "uri": "/Line/17", "type": "Line", "crowding": {"$type": "Tfl.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"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490000040B", "stationAtcoCode": "490G00040E", "lineIdentifier": ["n21", "n199", "133", "n15", "15", "17"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490000040A", "stationAtcoCode": "490G00040E", "lineIdentifier": ["n199", "n15", "15", "17"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "910GCANONST", "lineIdentifier": ["southeastern"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["circle", "district"]}, {"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "bus", "lineIdentifier": ["n21", "n199", "133", "n15", "15", "17"]}, {"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "national-rail", "lineIdentifier": ["southeastern"]}], "status": true, "id": "HUBCST", "commonName": "Cannon Street", "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": "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": "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": "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": "Ticket Halls", "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": "Photo 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": "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": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_101"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_136"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_276"}, {"$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_427"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_579"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_587"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5907"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5901"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5918"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5919"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5921"}], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "910GCANONST", "modes": ["national-rail"], "icsCode": "1000337", "stopType": "NaptanRailStation", "stationNaptan": "910GCANONST", "hubNaptanCode": "HUBCST", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "910GCANONST", "commonName": "London Cannon Street Rail Station", "placeType": "StopPoint", "additionalProperties": [], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "4900CANONST0", "indicator": "Entrance 2", "stopLetter": "2", "modes": [], "icsCode": "1000337", "stopType": "NaptanRailEntrance", "stationNaptan": "910GCANONST", "hubNaptanCode": "HUBCST", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "4900CANONST0", "commonName": "London Cannon Street Rail Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.511528, "lon": -0.089927}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "4900CANONST1", "indicator": "Entrance 1", "stopLetter": "1", "modes": [], "icsCode": "1000337", "stopType": "NaptanRailEntrance", "stationNaptan": "910GCANONST", "hubNaptanCode": "HUBCST", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "4900CANONST1", "commonName": "London Cannon Street Rail Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.511627, "lon": -0.090499}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9100CANONST0", "modes": [], "icsCode": "1000337", "stopType": "NaptanRailAccessArea", "stationNaptan": "910GCANONST", "hubNaptanCode": "HUBCST", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "9100CANONST0", "commonName": "Cannon Street Rail Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 0.0, "lon": 0.0}], "lat": 51.511382, "lon": -0.090293}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "940GZZLUCST", "modes": ["tube"], "icsCode": "1000040", "stopType": "NaptanMetroStation", "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": "940GZZLUCST", "commonName": "Cannon Street 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": "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": "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": "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": "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": "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": "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": "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"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_101"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_136"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_276"}, {"$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_427"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_579"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_587"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5907"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5901"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5897"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5899"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5918"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5919"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5921"}], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490G00040E", "modes": ["bus"], "icsCode": "1000040", "stopType": "NaptanOnstreetBusCoachStopCluster", "stationNaptan": "490G00040E", "hubNaptanCode": "HUBCST", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490G00040E", "commonName": "Cannon Street Station", "placeType": "StopPoint", "additionalProperties": [], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000040A", "indicator": "Stop MA", "stopLetter": "MA", "modes": ["bus"], "icsCode": "1000040", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00040E", "hubNaptanCode": "HUBCST", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000040A", "commonName": "Cannon Street Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.511345, "lon": -0.089185}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000040B", "indicator": "Stop MB", "stopLetter": "MB", "modes": ["bus"], "icsCode": "1000040", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00040E", "hubNaptanCode": "HUBCST", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000040B", "commonName": "Cannon Street Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.511924, "lon": -0.091063}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490004756E", "indicator": "Stop 47", "stopLetter": "47", "modes": ["bus"], "icsCode": "1000040", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00040E", "hubNaptanCode": "HUBCST", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490004756E", "commonName": "Cannon Street Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.510435, "lon": -0.090232}], "lat": 51.511924, "lon": -0.091063}, {"$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": "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}], "lat": 51.51151, "lon": -0.090432}], "lat": 51.511451, "lon": -0.090357}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "HUBEAL", "modes": ["bus", "tube", "national-rail", "elizabeth-line"], "icsCode": "1000062", "stopType": "TransportInterchange", "hubNaptanCode": "HUBEAL", "lines": [{"$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": "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": "e7", "name": "E7", "uri": "/Line/e7", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "e11", "name": "E11", "uri": "/Line/e11", "type": "Line", "crowding": {"$type": "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": "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": "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": "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": "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": "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": "e9", "name": "E9", "uri": "/Line/e9", "type": "Line", "crowding": {"$type": "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-western-railway", "name": "Great Western Railway", "uri": "/Line/great-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": "e8", "name": "E8", "uri": "/Line/e8", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "e2", "name": "E2", "uri": "/Line/e2", "type": "Line", "crowding": {"$type": "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": "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": "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": "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": "e1", "name": "E1", "uri": "/Line/e1", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "e10", "name": "E10", "uri": "/Line/e10", "type": "Line", "crowding": {"$type": "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": "112", "name": "112", "uri": "/Line/112", "type": "Line", "crowding": {"$type": "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": "490007913D", "stationAtcoCode": "490G000578", "lineIdentifier": ["226", "112"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490000062K", "stationAtcoCode": "490G00062H", "lineIdentifier": ["n207", "e11", "n7", "sl8", "483", "n83", "207"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490000062H", "stationAtcoCode": "490G00062H", "lineIdentifier": ["n207", "e11", "sl8", "483", "n83", "207"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490000062F", "stationAtcoCode": "490G00062G", "lineIdentifier": ["e7", "n7", "n11", "e8", "e2"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "940GZZLUEBY", "lineIdentifier": ["district"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490000062C", "stationAtcoCode": "490G00062G", "lineIdentifier": ["65", "n65"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "910GEALINGB", "lineIdentifier": ["elizabeth", "great-western-railway"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490007913E", "stationAtcoCode": "490G000578", "lineIdentifier": ["e9", "e1", "e10"]}, {"$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": "bus", "lineIdentifier": ["226", "n207", "e7", "e11", "n7", "n11", "sl8", "65", "e9", "e8", "e2", "n65", "483", "n83", "e1", "e10", "207", "112"]}, {"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["district", "central"]}, {"$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": ["great-western-railway"]}], "status": true, "id": "HUBEAL", "commonName": "Ealing Broadway", "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": "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": "Facility", "key": "Help Points", "sourceSystemKey": "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": "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": "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": "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": "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": "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": "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": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5543"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5741"}], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490G000578", "modes": ["bus"], "icsCode": "1007913", "stopType": "NaptanOnstreetBusCoachStopPair", "stationNaptan": "490G000578", "hubNaptanCode": "HUBEAL", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490G000578", "commonName": "Haven Grn / Ealing Broadway Stn", "placeType": "StopPoint", "additionalProperties": [], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490007913D", "indicator": "Stop D", "stopLetter": "D", "modes": ["bus"], "icsCode": "1007913", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G000578", "hubNaptanCode": "HUBEAL", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490007913D", "commonName": "Haven Grn / Ealing Broadway Stn", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.515179, "lon": -0.303425}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490007913E", "indicator": "Stop E", "stopLetter": "E", "modes": ["bus"], "icsCode": "1007913", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G000578", "hubNaptanCode": "HUBEAL", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490007913E", "commonName": "Haven Grn / Ealing Broadway Stn", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.515603, "lon": -0.304173}], "lat": 51.515179, "lon": -0.303425}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "910GEALINGB", "modes": ["national-rail", "elizabeth-line"], "icsCode": "1000062", "stopType": "NaptanRailStation", "stationNaptan": "910GEALINGB", "hubNaptanCode": "HUBEAL", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "910GEALINGB", "commonName": "Ealing Broadway Rail Station", "placeType": "StopPoint", "additionalProperties": [], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490G00062G", "modes": ["bus"], "icsCode": "1000062", "stopType": "NaptanOnstreetBusCoachStopCluster", "stationNaptan": "490G00062G", "hubNaptanCode": "HUBEAL", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490G00062G", "commonName": "Ealing Broadway Station", "placeType": "StopPoint", "additionalProperties": [], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000062C", "indicator": "Stop C", "stopLetter": "C", "modes": ["bus"], "icsCode": "1000062", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00062G", "hubNaptanCode": "HUBEAL", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000062C", "commonName": "Ealing Broadway Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.515179, "lon": -0.302215}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000062F", "indicator": "Stop F", "stopLetter": "F", "modes": ["bus"], "icsCode": "1000062", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00062G", "hubNaptanCode": "HUBEAL", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000062F", "commonName": "Ealing Broadway Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.514694, "lon": -0.302247}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000062RB", "indicator": "Stop", "modes": ["bus"], "icsCode": "1000062", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00062G", "hubNaptanCode": "HUBEAL", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000062RB", "commonName": "Ealing Broadway Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.514162, "lon": -0.300912}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000062X2", "indicator": "Stop X2", "stopLetter": "X2", "modes": ["bus"], "icsCode": "1000062", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00062G", "hubNaptanCode": "HUBEAL", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000062X2", "commonName": "Ealing Broadway Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.515476, "lon": -0.302204}], "lat": 51.515179, "lon": -0.302215}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490G00062H", "modes": ["bus"], "icsCode": "1000062", "stopType": "NaptanOnstreetBusCoachStopCluster", "stationNaptan": "490G00062H", "hubNaptanCode": "HUBEAL", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490G00062H", "commonName": "Ealing Broadway Station", "placeType": "StopPoint", "additionalProperties": [], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000062H", "indicator": "Stop H", "stopLetter": "H", "modes": ["bus"], "icsCode": "1000062", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00062H", "hubNaptanCode": "HUBEAL", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000062H", "commonName": "Ealing Broadway Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.514003, "lon": -0.302979}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000062K", "indicator": "Stop K", "stopLetter": "K", "modes": ["bus"], "icsCode": "1000062", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00062H", "hubNaptanCode": "HUBEAL", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000062K", "commonName": "Ealing Broadway Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.513966, "lon": -0.299752}], "lat": 51.513966, "lon": -0.299752}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "4900EALINGB1", "indicator": "Entrance 1", "stopLetter": "1", "modes": [], "icsCode": "1000062", "stopType": "NaptanRailEntrance", "stationNaptan": "910GEALINGB", "hubNaptanCode": "HUBEAL", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "4900EALINGB1", "commonName": "Ealing Broadway Rail Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.515008, "lon": -0.302221}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9100EALINGB1", "modes": [], "icsCode": "1000062", "stopType": "NaptanRailAccessArea", "stationNaptan": "910GEALINGB", "hubNaptanCode": "HUBEAL", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "9100EALINGB1", "commonName": "Ealing Broadway", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 0.0, "lon": 0.0}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9100EALINGB0", "modes": [], "icsCode": "1000062", "stopType": "NaptanRailAccessArea", "stationNaptan": "910GEALINGB", "hubNaptanCode": "HUBEAL", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "9100EALINGB0", "commonName": "Ealing Broadway", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 0.0, "lon": 0.0}], "lat": 51.514841, "lon": -0.301752}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "940GZZLUEBY", "modes": ["tube"], "icsCode": "1000062", "stopType": "NaptanMetroStation", "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"}, {"$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": ["central"]}, {"$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": ["central", "district"]}], "status": true, "id": "940GZZLUEBY", "commonName": "Ealing Broadway 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": "Opening Time", "key": "MonFriFrom", "sourceSystemKey": "StaticObjects", "value": "05:35"}, {"$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": "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": "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": "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": "Ealing Broadway Station,The Broadway,London,W5 2NU"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.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": "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": "Help Points", "sourceSystemKey": "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": "Opening Time", "key": "MonFriTo", "sourceSystemKey": "StaticObjects", "value": "23:25"}, {"$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": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5543"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5741"}], "children": [{"$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}], "lat": 51.515017, "lon": -0.301457}], "lat": 51.514993, "lon": -0.302131}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "HUBEPH", "modes": ["tube", "bus", "national-rail"], "icsCode": "1000073", "stopType": "TransportInterchange", "hubNaptanCode": "HUBEPH", "lines": [{"$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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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", "naptanIdReference": "490000073V", "stationAtcoCode": "490G00073G", "lineIdentifier": ["171", "468", "n155", "176", "12", "68", "n171", "n68", "148", "n89"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490000073R", "stationAtcoCode": "490G00073G", "lineIdentifier": ["171", "468", "n343", "136", "343", "176", "45", "12", "35", "p5", "68", "n171", "n68", "148", "n89", "40"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490000073S", "stationAtcoCode": "490G00073G", "lineIdentifier": ["n133", "n343", "136", "343", "133", "35", "333", "415"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490000073P", "stationAtcoCode": "490G00073G", "lineIdentifier": ["n133", "n155", "155", "196", "133", "333", "415"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490000073N", "stationAtcoCode": "490G000645", "lineIdentifier": ["n63", "1", "415", "188", "172", "363", "n1", "63"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490000073J", "stationAtcoCode": "490G000645", "lineIdentifier": ["n63", "453", "n53", "415", "172", "363", "53", "63"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490000073M", "stationAtcoCode": "490G000645", "lineIdentifier": ["453", "n53", "53"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "940GZZLUEAC", "lineIdentifier": ["bakerloo"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "910GELPHNAC", "lineIdentifier": ["thameslink", "southeastern"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490000073T", "stationAtcoCode": "490G00073G", "lineIdentifier": ["155", "45", "196", "p5", "40"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490000073K", "stationAtcoCode": "490G000645", "lineIdentifier": ["1", "188", "n1"]}, {"$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": "bus", "lineIdentifier": ["171", "468", "n343", "n133", "n63", "453", "136", "n155", "343", "155", "176", "45", "1", "12", "196", "133", "35", "n53", "p5", "333", "415", "188", "172", "68", "363", "n1", "53", "63", "n171", "n68", "148", "n89", "40"]}, {"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["bakerloo", "northern"]}, {"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "national-rail", "lineIdentifier": ["thameslink", "southeastern"]}], "status": true, "id": "HUBEPH", "commonName": "Elephant & Castle", "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": "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": "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": "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": "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": "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": "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": "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": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_92"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_152"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_156"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_317"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_324"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_409"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_549"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_725"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5558"}], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490G000645", "modes": ["bus"], "icsCode": "1009298", "stopType": "NaptanOnstreetBusCoachStopCluster", "stationNaptan": "490G000645", "hubNaptanCode": "HUBEPH", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490G000645", "commonName": "Elephant & Castle / New Kent Road", "placeType": "StopPoint", "additionalProperties": [], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000073J", "indicator": "Stop J", "stopLetter": "J", "modes": ["bus"], "icsCode": "1009298", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G000645", "hubNaptanCode": "HUBEPH", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000073J", "commonName": "Elephant & Castle / New Kent Road", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.494858, "lon": -0.097812}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000073K", "indicator": "Stop K", "stopLetter": "K", "modes": ["bus"], "icsCode": "1009298", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G000645", "hubNaptanCode": "HUBEPH", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000073K", "commonName": "Elephant & Castle / New Kent Road", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.495076, "lon": -0.099071}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000073M", "indicator": "Stop M", "stopLetter": "M", "modes": ["bus"], "icsCode": "1009298", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G000645", "hubNaptanCode": "HUBEPH", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000073M", "commonName": "Elephant & Castle / New Kent Road", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.494799, "lon": -0.09806}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000073N", "indicator": "Stop N", "stopLetter": "N", "modes": ["bus"], "icsCode": "1009298", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G000645", "hubNaptanCode": "HUBEPH", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000073N", "commonName": "Elephant & Castle / New Kent Road", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.49498, "lon": -0.099233}], "lat": 51.49498, "lon": -0.099233}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "910GELPHNAC", "modes": ["national-rail"], "icsCode": "1000326", "stopType": "NaptanRailStation", "stationNaptan": "910GELPHNAC", "hubNaptanCode": "HUBEPH", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "910GELPHNAC", "commonName": "Elephant & Castle Rail Station", "placeType": "StopPoint", "additionalProperties": [], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "4900ELPHNAC0", "indicator": "Entrance 1", "stopLetter": "1", "modes": [], "icsCode": "1000326", "stopType": "NaptanRailEntrance", "stationNaptan": "910GELPHNAC", "hubNaptanCode": "HUBEPH", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "4900ELPHNAC0", "commonName": "Elephant & Castle Rail Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.493985, "lon": -0.098367}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9100ELPHNAC0", "modes": [], "icsCode": "1000326", "stopType": "NaptanRailAccessArea", "stationNaptan": "910GELPHNAC", "hubNaptanCode": "HUBEPH", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "9100ELPHNAC0", "commonName": "Elephant & Castle Rail Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 0.0, "lon": 0.0}], "lat": 51.494029, "lon": -0.098725}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "940GZZLUEAC", "modes": ["tube"], "icsCode": "1000073", "stopType": "NaptanMetroStation", "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"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "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": ["bakerloo"]}, {"$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": ["bakerloo", "northern"]}], "status": true, "id": "940GZZLUEAC", "commonName": "Elephant & Castle Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_297"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_324"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_409"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_549"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_725"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5558"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.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+2"}, {"$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": "Lifts", "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": "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": "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": "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"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_92"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_152"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_262"}, {"$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."}], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490G00073G", "modes": ["bus"], "icsCode": "1000073", "stopType": "NaptanOnstreetBusCoachStopCluster", "stationNaptan": "490G00073G", "hubNaptanCode": "HUBEPH", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490G00073G", "commonName": "Elephant & Castle Station", "placeType": "StopPoint", "additionalProperties": [], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000073P", "indicator": "Stop P", "stopLetter": "P", "modes": ["bus"], "icsCode": "1000073", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00073G", "hubNaptanCode": "HUBEPH", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000073P", "commonName": "Elephant & Castle Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.494236, "lon": -0.100489}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000073R", "indicator": "Stop R", "stopLetter": "R", "modes": ["bus"], "icsCode": "1000073", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00073G", "hubNaptanCode": "HUBEPH", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000073R", "commonName": "Elephant & Castle Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.492237, "lon": -0.098137}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000073S", "indicator": "Stop S", "stopLetter": "S", "modes": ["bus"], "icsCode": "1000073", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00073G", "hubNaptanCode": "HUBEPH", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000073S", "commonName": "Elephant & Castle Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.49396, "lon": -0.100716}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000073T", "indicator": "Stop T", "stopLetter": "T", "modes": ["bus"], "icsCode": "1000073", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00073G", "hubNaptanCode": "HUBEPH", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000073T", "commonName": "Elephant & Castle Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.494213, "lon": -0.100749}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000073V", "indicator": "Stop V", "stopLetter": "V", "modes": ["bus"], "icsCode": "1000073", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00073G", "hubNaptanCode": "HUBEPH", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000073V", "commonName": "Elephant & Castle Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.494466, "lon": -0.100854}], "lat": 51.494236, "lon": -0.100489}, {"$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": "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}], "lat": 51.494536, "lon": -0.100606}], "lat": 51.494505, "lon": -0.099185}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "HUBEUS", "modes": ["national-rail", "tube", "bus", "overground"], "icsCode": "1000077", "stopType": "TransportInterchange", "hubNaptanCode": "HUBEUS", "lines": [{"$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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "london-overground", "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": "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": "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": "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": "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", "naptanIdReference": "490012867L", "stationAtcoCode": "490G00012867", "lineIdentifier": ["68", "91", "1", "n91"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490000077E", "stationAtcoCode": "490G00077G", "lineIdentifier": ["68", "18"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490012867M", "stationAtcoCode": "490G00012867", "lineIdentifier": ["68", "91", "1", "n91"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490000077AP", "stationAtcoCode": "490G000652", "lineIdentifier": ["68", "253", "n253"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490000077C", "stationAtcoCode": "490G00077G", "lineIdentifier": ["91", "n20", "390", "n91", "n5"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "910GEUSTON", "lineIdentifier": ["west-midlands-trains", "london-overground", "avanti-west-coast"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490000077A", "stationAtcoCode": "490G000651", "lineIdentifier": ["n20", "253", "1", "n253", "n5"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490000077F", "stationAtcoCode": "490G000652", "lineIdentifier": ["n20", "n5"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490000077B", "stationAtcoCode": "490G00077B", "lineIdentifier": ["n20", "253", "1", "n253", "n5"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490000077H", "stationAtcoCode": "490G00077H", "lineIdentifier": ["n73", "73", "30", "390", "18", "n205", "205"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490000077D", "stationAtcoCode": "490G00077G", "lineIdentifier": ["n73", "73", "30", "n205", "205"]}, {"$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": "490000077G", "stationAtcoCode": "490G000652", "lineIdentifier": ["253", "n253"]}, {"$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", "stationAtcoCode": "940GZZLUEUS", "lineIdentifier": ["victoria"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "bus", "lineIdentifier": ["68", "91", "n20", "n73", "73", "253", "30", "390", "18", "1", "n205", "n253", "205", "n91", "n5"]}, {"$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": ["northern", "victoria"]}, {"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "overground", "lineIdentifier": ["london-overground"]}], "status": true, "id": "HUBEUS", "commonName": "Euston", "placeType": "StopPoint", "additionalProperties": [{"$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"}, {"$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"}], "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": "910GEUSTON", "modes": ["overground", "national-rail"], "icsCode": "1000077", "stopType": "NaptanRailStation", "stationNaptan": "910GEUSTON", "hubNaptanCode": "HUBEUS", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "910GEUSTON", "commonName": "London Euston Rail Station", "placeType": "StopPoint", "additionalProperties": [], "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": [], "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": [], "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": [], "children": [], "lat": 51.527639, "lon": -0.132185}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9100EUSTON0", "modes": [], "icsCode": "1000077", "stopType": "NaptanRailAccessArea", "stationNaptan": "910GEUSTON", "hubNaptanCode": "HUBEUS", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "9100EUSTON0", "commonName": "Euston Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 0.0, "lon": 0.0}], "lat": 51.528136, "lon": -0.133924}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "940GZZLUEUS", "modes": ["tube"], "icsCode": "1000077", "stopType": "NaptanMetroStation", "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"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "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": ["victoria"]}, {"$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": ["victoria", "northern"]}], "status": true, "id": "940GZZLUEUS", "commonName": "Euston 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": "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": "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": "2"}, {"$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": "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": "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": "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": "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": "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": "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_214"}, {"$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_5896"}], "children": [{"$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}], "lat": 51.528344, "lon": -0.1323}], "lat": 51.527365, "lon": -0.132754}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "HUBFPK", "modes": ["tube", "bus", "national-rail"], "icsCode": "1000083", "stopType": "TransportInterchange", "hubNaptanCode": "HUBFPK", "lines": [{"$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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "w3", "name": "W3", "uri": "/Line/w3", "type": "Line", "crowding": {"$type": "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": "490000083R", "stationAtcoCode": "490G00083R", "lineIdentifier": ["4", "29", "n29", "n253", "n279", "153", "253", "259", "254"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490000083S", "stationAtcoCode": "490G00083S", "lineIdentifier": ["4", "29", "n29", "n253", "n279", "153", "253", "259", "254"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490000083G", "stationAtcoCode": "490G000516", "lineIdentifier": ["4", "n19", "153", "19"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "940GZZLUFPK", "lineIdentifier": ["victoria"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "910GFNPK", "lineIdentifier": ["thameslink", "great-northern"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490000083AP", "stationAtcoCode": "490G000516", "lineIdentifier": ["236", "n19", "153", "106", "19"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490000083H", "stationAtcoCode": "490G000516", "lineIdentifier": ["236", "106"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490015078L", "stationAtcoCode": "490G000858", "lineIdentifier": ["29", "n29", "n253", "n279", "253", "259", "254"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490015078M", "stationAtcoCode": "490G000858", "lineIdentifier": ["29", "n29", "n253", "n279", "253", "259", "254"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "940GZZLUFPK", "lineIdentifier": ["piccadilly"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490000083SB", "stationAtcoCode": "490G00083SB", "lineIdentifier": ["w7", "210", "w3"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490000083A", "stationAtcoCode": "490G00083W", "lineIdentifier": ["w7"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490000083C", "stationAtcoCode": "490G00083W", "lineIdentifier": ["210"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490000083B", "stationAtcoCode": "490G00083W", "lineIdentifier": ["w3"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "bus", "lineIdentifier": ["4", "29", "236", "n29", "w7", "n19", "n253", "n279", "153", "210", "253", "259", "106", "19", "254", "w3"]}, {"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["victoria", "piccadilly"]}, {"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "national-rail", "lineIdentifier": ["thameslink", "great-northern"]}], "status": true, "id": "HUBFPK", "commonName": "Finsbury Park", "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": "Opening Time", "key": "MonFriTo", "sourceSystemKey": "StaticObjects", "value": "21: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": "Opening Time", "key": "SunFrom", "sourceSystemKey": "StaticObjects", "value": "08:15"}, {"$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": "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": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5870"}, {"$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": "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": "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": "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": "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": "Opening Time", "key": "SatTo", "sourceSystemKey": "StaticObjects", "value": "22: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"}], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490G000516", "modes": ["bus"], "icsCode": "1006849", "stopType": "NaptanOnstreetBusCoachStopCluster", "stationNaptan": "490G000516", "hubNaptanCode": "HUBFPK", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490G000516", "commonName": "Finsbury Park Interchange", "placeType": "StopPoint", "additionalProperties": [], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000083AP", "indicator": "Stop AP", "stopLetter": "AP", "modes": ["bus"], "icsCode": "1006849", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G000516", "hubNaptanCode": "HUBFPK", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000083AP", "commonName": "Finsbury Park Interchange", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.564246, "lon": -0.10571}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000083G", "indicator": "Stop G", "stopLetter": "G", "modes": ["bus"], "icsCode": "1006849", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G000516", "hubNaptanCode": "HUBFPK", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000083G", "commonName": "Finsbury Park Interchange", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.564686, "lon": -0.105692}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000083H", "indicator": "Stop H", "stopLetter": "H", "modes": ["bus"], "icsCode": "1006849", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G000516", "hubNaptanCode": "HUBFPK", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000083H", "commonName": "Finsbury Park Interchange", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.564838, "lon": -0.105613}], "lat": 51.564246, "lon": -0.10571}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490G000858", "modes": ["bus"], "icsCode": "1015078", "stopType": "NaptanOnstreetBusCoachStopPair", "stationNaptan": "490G000858", "hubNaptanCode": "HUBFPK", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490G000858", "commonName": "Finsbury Park / Blackstock Road", "placeType": "StopPoint", "additionalProperties": [], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490015078L", "indicator": "Stop L", "stopLetter": "L", "modes": ["bus"], "icsCode": "1015078", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G000858", "hubNaptanCode": "HUBFPK", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490015078L", "commonName": "Finsbury Park / Blackstock Road", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.565469, "lon": -0.103481}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490015078M", "indicator": "Stop M", "stopLetter": "M", "modes": ["bus"], "icsCode": "1015078", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G000858", "hubNaptanCode": "HUBFPK", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490015078M", "commonName": "Finsbury Park / Blackstock Road", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.565249, "lon": -0.103244}], "lat": 51.565249, "lon": -0.103244}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "910GFNPK", "modes": ["national-rail"], "icsCode": "1000334", "stopType": "NaptanRailStation", "stationNaptan": "910GFNPK", "hubNaptanCode": "HUBFPK", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "910GFNPK", "commonName": "Finsbury Park Rail Station", "placeType": "StopPoint", "additionalProperties": [], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "4900FNPK", "indicator": "Entrance 1", "stopLetter": "1", "modes": [], "icsCode": "1000334", "stopType": "NaptanRailEntrance", "stationNaptan": "910GFNPK", "hubNaptanCode": "HUBFPK", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "4900FNPK", "commonName": "Finsbury Park Rail Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.564669, "lon": -0.105736}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9100FNPK0", "modes": [], "icsCode": "1000334", "stopType": "NaptanRailAccessArea", "stationNaptan": "910GFNPK", "hubNaptanCode": "HUBFPK", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "9100FNPK0", "commonName": "Finsbury Park Rail Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 0.0, "lon": 0.0}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9100FNPK1", "modes": [], "icsCode": "1000334", "stopType": "NaptanRailAccessArea", "stationNaptan": "910GFNPK", "hubNaptanCode": "HUBFPK", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "9100FNPK1", "commonName": "Finsbury Park Rail Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 0.0, "lon": 0.0}], "lat": 51.564302, "lon": -0.106285}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "940GZZLUFPK", "modes": ["tube"], "icsCode": "1000083", "stopType": "NaptanMetroStation", "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"}, {"$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": ["piccadilly"]}, {"$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": ["piccadilly", "victoria"]}], "status": true, "id": "940GZZLUFPK", "commonName": "Finsbury Park 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": "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": "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": "Opening Time", "key": "MonFriTo", "sourceSystemKey": "StaticObjects", "value": "21: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": "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": "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": "MonFriFrom", "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": "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": "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": "SunTo", "sourceSystemKey": "StaticObjects", "value": "22: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": "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": "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": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5870"}], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490G00083R", "modes": ["bus"], "icsCode": "1000083", "stopType": "NaptanOnstreetBusCoachStopCluster", "stationNaptan": "490G00083R", "hubNaptanCode": "HUBFPK", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490G00083R", "commonName": "Finsbury Park Station", "placeType": "StopPoint", "additionalProperties": [], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000083R", "indicator": "Stop R", "stopLetter": "R", "modes": ["bus"], "icsCode": "1000083", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00083R", "hubNaptanCode": "HUBFPK", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000083R", "commonName": "Finsbury Park Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.564003, "lon": -0.10624}], "lat": 51.564003, "lon": -0.10624}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490G00083S", "modes": ["bus"], "icsCode": "1000083", "stopType": "NaptanOnstreetBusCoachStopCluster", "stationNaptan": "490G00083S", "hubNaptanCode": "HUBFPK", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490G00083S", "commonName": "Finsbury Park Station", "placeType": "StopPoint", "additionalProperties": [], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000083S", "indicator": "Stop S", "stopLetter": "S", "modes": ["bus"], "icsCode": "1000083", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00083S", "hubNaptanCode": "HUBFPK", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000083S", "commonName": "Finsbury Park Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.563744, "lon": -0.10638}], "lat": 51.563744, "lon": -0.10638}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490G00083SB", "modes": ["bus"], "icsCode": "1000083", "stopType": "NaptanOnstreetBusCoachStopCluster", "stationNaptan": "490G00083SB", "hubNaptanCode": "HUBFPK", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490G00083SB", "commonName": "Finsbury Park Station", "placeType": "StopPoint", "additionalProperties": [], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000083E", "indicator": "Stop D", "stopLetter": "D", "modes": ["bus"], "icsCode": "1000083", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00083SB", "hubNaptanCode": "HUBFPK", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000083E", "commonName": "Finsbury Park Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.566033, "lon": -0.107771}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000083SB", "indicator": "Stop", "modes": ["bus"], "icsCode": "1000083", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00083SB", "hubNaptanCode": "HUBFPK", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000083SB", "commonName": "Finsbury Park Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.56556, "lon": -0.107993}], "lat": 51.56556, "lon": -0.107993}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490G00083W", "modes": ["bus"], "icsCode": "1000083", "stopType": "NaptanOnstreetBusCoachStopCluster", "stationNaptan": "490G00083W", "hubNaptanCode": "HUBFPK", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490G00083W", "commonName": "Finsbury Park Station", "placeType": "StopPoint", "additionalProperties": [], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000083A", "indicator": "Stop A", "stopLetter": "A", "modes": ["bus"], "icsCode": "1000083", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00083W", "hubNaptanCode": "HUBFPK", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000083A", "commonName": "Finsbury Park Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.565643, "lon": -0.107008}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000083B", "indicator": "Stop B", "stopLetter": "B", "modes": ["bus"], "icsCode": "1000083", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00083W", "hubNaptanCode": "HUBFPK", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000083B", "commonName": "Finsbury Park Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.565706, "lon": -0.107049}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000083C", "indicator": "Stop C", "stopLetter": "C", "modes": ["bus"], "icsCode": "1000083", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00083W", "hubNaptanCode": "HUBFPK", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000083C", "commonName": "Finsbury Park Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.565661, "lon": -0.107022}], "lat": 51.565706, "lon": -0.107049}, {"$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": "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}], "lat": 51.564158, "lon": -0.106825}], "lat": 51.564778, "lon": -0.105876}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "HUBGFD", "modes": ["national-rail", "tube", "bus"], "icsCode": "1000092", "stopType": "TransportInterchange", "hubNaptanCode": "HUBGFD", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "great-western-railway", "name": "Great Western Railway", "uri": "/Line/great-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": "105", "name": "105", "uri": "/Line/105", "type": "Line", "crowding": {"$type": "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": "395", "name": "395", "uri": "/Line/395", "type": "Line", "crowding": {"$type": "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"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "910GGFORD", "lineIdentifier": ["great-western-railway"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490000092W1", "stationAtcoCode": "490G00092D", "lineIdentifier": ["105"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490015198B", "stationAtcoCode": "490G00092D", "lineIdentifier": ["105", "92"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "940GZZLUGFD", "lineIdentifier": ["central"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490013515KK", "stationAtcoCode": "490G000790", "lineIdentifier": ["395"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "national-rail", "lineIdentifier": ["great-western-railway"]}, {"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "bus", "lineIdentifier": ["105", "395", "92"]}, {"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["central"]}], "status": true, "id": "HUBGFD", "commonName": "Greenford", "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": "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": "Help 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": "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"}, {"$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": "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": "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"}, {"$type": "Tfl.Api.Presentation.Entities.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": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "CarParks_800444"}], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490G000790", "modes": ["bus"], "icsCode": "1013515", "stopType": "NaptanOnstreetBusCoachStopPair", "stationNaptan": "490G000790", "hubNaptanCode": "HUBGFD", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490G000790", "commonName": "Greenford Station / Rockware Avenue", "placeType": "StopPoint", "additionalProperties": [], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490013515KK", "indicator": "Stop KK", "stopLetter": "KK", "modes": ["bus"], "icsCode": "1013515", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G000790", "hubNaptanCode": "HUBGFD", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490013515KK", "commonName": "Greenford Station / Rockware Avenue", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.543197, "lon": -0.345474}], "lat": 51.543197, "lon": -0.345474}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "910GGFORD", "modes": ["national-rail"], "icsCode": "1000092", "stopType": "NaptanRailStation", "stationNaptan": "910GGFORD", "hubNaptanCode": "HUBGFD", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "910GGFORD", "commonName": "Greenford Rail Station", "placeType": "StopPoint", "additionalProperties": [], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490G00092D", "modes": ["bus"], "icsCode": "1000092", "stopType": "NaptanOnstreetBusCoachStopCluster", "stationNaptan": "490G00092D", "hubNaptanCode": "HUBGFD", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490G00092D", "commonName": "Greenford Station", "placeType": "StopPoint", "additionalProperties": [], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000092W1", "indicator": "Stop Z1", "stopLetter": "Z1", "modes": ["bus"], "icsCode": "1000092", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00092D", "hubNaptanCode": "HUBGFD", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000092W1", "commonName": "Greenford Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.542675, "lon": -0.344844}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490015198B", "indicator": "Stop MM", "stopLetter": "MM", "modes": ["bus"], "icsCode": "1000092", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00092D", "hubNaptanCode": "HUBGFD", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490015198B", "commonName": "Greenford Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.542011, "lon": -0.346166}], "lat": 51.542675, "lon": -0.344844}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "4900GFORD1", "indicator": "Entrance 1", "stopLetter": "1", "modes": [], "icsCode": "1000092", "stopType": "NaptanRailEntrance", "stationNaptan": "910GGFORD", "hubNaptanCode": "HUBGFD", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "4900GFORD1", "commonName": "Greenford Rail Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.542378, "lon": -0.346066}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9100GFORD0", "modes": [], "icsCode": "1000092", "stopType": "NaptanRailAccessArea", "stationNaptan": "910GGFORD", "hubNaptanCode": "HUBGFD", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "9100GFORD0", "commonName": "Greenford", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 0.0, "lon": 0.0}], "lat": 51.542331, "lon": -0.345837}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "940GZZLUGFD", "modes": ["tube"], "icsCode": "1000092", "stopType": "NaptanMetroStation", "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": "940GZZLUGFD", "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": "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": "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": "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": "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": "4"}, {"$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": "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": "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": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "CarParks_800444"}], "children": [{"$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}], "lat": 51.542424, "lon": -0.34605}], "lat": 51.542657, "lon": -0.345789}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "HUBGUN", "modes": ["bus", "tube", "overground"], "icsCode": "1000094", "stopType": "TransportInterchange", "hubNaptanCode": "HUBGUN", "lines": [{"$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": "london-overground", "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": "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": "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": "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": "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": "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": "237", "name": "237", "uri": "/Line/237", "type": "Line", "crowding": {"$type": "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": "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", "naptanIdReference": "490000094B", "stationAtcoCode": "490G00094B", "lineIdentifier": ["440", "n9", "267", "110", "h91", "237"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "910GGNRSBRY", "lineIdentifier": ["london-overground"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490000094A", "stationAtcoCode": "490G00094B", "lineIdentifier": ["n9", "267", "110", "h91", "237"]}, {"$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": "bus", "lineIdentifier": ["440", "n9", "267", "110", "h91", "237"]}, {"$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"]}], "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": "910GGNRSBRY", "modes": ["overground"], "icsCode": "1000094", "stopType": "NaptanRailStation", "stationNaptan": "910GGNRSBRY", "hubNaptanCode": "HUBGUN", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "910GGNRSBRY", "commonName": "Gunnersbury Rail Station", "placeType": "StopPoint", "additionalProperties": [], "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": [], "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": [], "children": [], "lat": 51.49157, "lon": -0.274801}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9100GNRSBRY0", "modes": [], "icsCode": "1000094", "stopType": "NaptanRailAccessArea", "stationNaptan": "910GGNRSBRY", "hubNaptanCode": "HUBGUN", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "9100GNRSBRY0", "commonName": "Gunnersbury Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 0.0, "lon": 0.0}], "lat": 51.491678, "lon": -0.275286}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "940GZZLUGBY", "modes": ["tube"], "icsCode": "1000094", "stopType": "NaptanMetroStation", "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": "940GZZLUGBY", "commonName": "Gunnersbury 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 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": "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": "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": "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": "Waiting Room", "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": "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": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5551"}], "children": [{"$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}], "lat": 51.491803, "lon": -0.275267}], "lat": 51.491745, "lon": -0.275276}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "HUBH13", "modes": ["national-rail", "elizabeth-line", "plane", "tube", "bus"], "icsCode": "1000105", "stopType": "TransportInterchange", "hubNaptanCode": "HUBH13", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "sl9", "name": "SL9", "uri": "/Line/sl9", "type": "Line", "crowding": {"$type": "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": "heathrow-express", "name": "Heathrow Express", "uri": "/Line/heathrow-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": "105", "name": "105", "uri": "/Line/105", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "u3", "name": "U3", "uri": "/Line/u3", "type": "Line", "crowding": {"$type": "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": "285", "name": "285", "uri": "/Line/285", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "111", "name": "111", "uri": "/Line/111", "type": "Line", "crowding": {"$type": "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": "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": "278", "name": "278", "uri": "/Line/278", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "a10", "name": "A10", "uri": "/Line/a10", "type": "Line", "crowding": {"$type": "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"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490008016S", "stationAtcoCode": "910GHTRWCBS", "lineIdentifier": ["sl9", "sl7", "105", "u3", "285", "111", "n140", "278", "a10"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "4900801619", "stationAtcoCode": "910GHTRWCBS", "lineIdentifier": ["sl9", "sl7", "105", "n9", "285", "111", "n140", "278"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "910GHTRWAPT", "lineIdentifier": ["heathrow-express", "elizabeth"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "4900801618", "stationAtcoCode": "910GHTRWCBS", "lineIdentifier": ["u3", "n9", "a10"]}, {"$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": "bus", "lineIdentifier": ["sl9", "sl7", "105", "u3", "n9", "285", "111", "n140", "278", "a10"]}, {"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "national-rail", "lineIdentifier": ["heathrow-express"]}, {"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["piccadilly"]}, {"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "elizabeth-line", "lineIdentifier": ["elizabeth"]}], "status": true, "id": "HUBH13", "commonName": "Heathrow Terminals 2 & 3", "placeType": "StopPoint", "additionalProperties": [{"$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": "Help Points", "sourceSystemKey": "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": "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": "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": "Payphones", "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": "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": "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": "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": "none"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5934"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5932"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5933"}], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "910GHTRWAPT", "modes": ["national-rail", "elizabeth-line"], "icsCode": "1001147", "stopType": "NaptanRailStation", "stationNaptan": "910GHTRWAPT", "hubNaptanCode": "HUBH13", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "910GHTRWAPT", "commonName": "Heathrow Terminals 2 & 3 Rail Station", "placeType": "StopPoint", "additionalProperties": [], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "4900HTRWAPT1", "indicator": "Entrance 1", "stopLetter": "1", "modes": [], "icsCode": "1001147", "stopType": "NaptanRailEntrance", "stationNaptan": "910GHTRWAPT", "hubNaptanCode": "HUBH13", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "4900HTRWAPT1", "commonName": "Heathrow Airport Terminals 2 & 3 Rail Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.470976, "lon": -0.458033}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "4900HTRWAPT2", "indicator": "Entrance 2", "stopLetter": "2", "modes": [], "icsCode": "1001147", "stopType": "NaptanRailEntrance", "stationNaptan": "910GHTRWAPT", "hubNaptanCode": "HUBH13", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "4900HTRWAPT2", "commonName": "Heathrow Airport Terminals 2 & 3 Rail Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.473393, "lon": -0.45176}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9100HTRWAPT0", "modes": [], "icsCode": "1001147", "stopType": "NaptanRailAccessArea", "stationNaptan": "910GHTRWAPT", "hubNaptanCode": "HUBH13", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "9100HTRWAPT0", "commonName": "Heathrow Terminals 2 & 3 Rail Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 0.0, "lon": 0.0}], "lat": 51.470976, "lon": -0.458033}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "910GHTRWCBS", "modes": ["bus"], "icsCode": "1008016", "stopType": "NaptanRailStation", "stationNaptan": "910GHTRWCBS", "hubNaptanCode": "HUBH13", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "910GHTRWCBS", "commonName": "Heathrow Central Bus Stn (Rail-Air)", "placeType": "StopPoint", "additionalProperties": [], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "4900080161", "indicator": "Stand 1", "stopLetter": "1", "modes": ["bus"], "icsCode": "1008016", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "910GHTRWCBS", "hubNaptanCode": "HUBH13", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "4900080161", "commonName": "Heathrow Central Bus Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.47093, "lon": -0.452448}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "49000801611", "indicator": "Stand 11", "stopLetter": "11", "modes": ["bus"], "icsCode": "1008016", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "910GHTRWCBS", "hubNaptanCode": "HUBH13", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "49000801611", "commonName": ".Heathrow Central", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.471089, "lon": -0.453638}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "49000801613", "indicator": "Stand 13", "stopLetter": "13", "modes": ["bus"], "icsCode": "1008016", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "910GHTRWCBS", "hubNaptanCode": "HUBH13", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "49000801613", "commonName": "Heathrow Central Bus Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.471092, "lon": -0.453825}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "49000801614", "indicator": "Stand 14", "stopLetter": "14", "modes": ["bus"], "icsCode": "1008016", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "910GHTRWCBS", "hubNaptanCode": "HUBH13", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "49000801614", "commonName": ".Heathrow Central", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.471102, "lon": -0.45394}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "49000801615", "indicator": "Stand 15", "stopLetter": "15", "modes": ["bus"], "icsCode": "1008016", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "910GHTRWCBS", "hubNaptanCode": "HUBH13", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "49000801615", "commonName": "Heathrow Central Bus Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.471104, "lon": -0.454055}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "49000801616", "indicator": "Stand 16", "stopLetter": "16", "modes": ["bus"], "icsCode": "1008016", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "910GHTRWCBS", "hubNaptanCode": "HUBH13", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "49000801616", "commonName": ".Heathrow Central", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.471677, "lon": -0.452552}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "4900080162", "indicator": "Stand 2", "stopLetter": "2", "modes": ["bus"], "icsCode": "1008016", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "910GHTRWCBS", "hubNaptanCode": "HUBH13", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "4900080162", "commonName": "Heathrow Central Bus Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.470953, "lon": -0.452836}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "4900080164", "indicator": "Stand 4", "stopLetter": "4", "modes": ["bus"], "icsCode": "1008016", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "910GHTRWCBS", "hubNaptanCode": "HUBH13", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "4900080164", "commonName": ".Heathrow Central", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.470969, "lon": -0.453426}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "4900080165", "indicator": "Stand 5", "stopLetter": "5", "modes": ["bus"], "icsCode": "1008016", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "910GHTRWCBS", "hubNaptanCode": "HUBH13", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "4900080165", "commonName": "Heathrow Central Bus Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.470957, "lon": -0.453844}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "4900080166", "indicator": "Stand 6", "stopLetter": "6", "modes": ["bus"], "icsCode": "1008016", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "910GHTRWCBS", "hubNaptanCode": "HUBH13", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "4900080166", "commonName": ".Heathrow Central", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.471082, "lon": -0.453105}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "4900080168", "indicator": "Stand 8", "stopLetter": "8", "modes": ["bus"], "icsCode": "1008016", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "910GHTRWCBS", "hubNaptanCode": "HUBH13", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "4900080168", "commonName": "Heathrow Central Bus Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.471085, "lon": -0.453292}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "4900080169", "indicator": "Stand 9", "stopLetter": "9", "modes": ["bus"], "icsCode": "1008016", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "910GHTRWCBS", "hubNaptanCode": "HUBH13", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "4900080169", "commonName": ".Heathrow Central", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.471087, "lon": -0.453494}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490008016N2", "indicator": "Stand", "modes": ["bus"], "icsCode": "1008016", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "910GHTRWCBS", "hubNaptanCode": "HUBH13", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490008016N2", "commonName": ".Heathrow Central", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.470838, "lon": -0.452307}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490008016N3", "indicator": "Stand", "modes": ["bus"], "icsCode": "1008016", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "910GHTRWCBS", "hubNaptanCode": "HUBH13", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490008016N3", "commonName": "Heathrow Central", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.470885, "lon": -0.453832}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490008016S", "indicator": "Stand", "modes": ["bus"], "icsCode": "1008016", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "910GHTRWCBS", "hubNaptanCode": "HUBH13", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490008016S", "commonName": "Heathrow Central Bus Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.471543, "lon": -0.452586}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "4900801618", "indicator": "Stand 18", "stopLetter": "18", "modes": ["bus"], "icsCode": "1008016", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "910GHTRWCBS", "hubNaptanCode": "HUBH13", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "4900801618", "commonName": "Heathrow Central Bus Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.471353, "lon": -0.453197}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "4900801619", "indicator": "Stand 19", "stopLetter": "19", "modes": ["bus"], "icsCode": "1008016", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "910GHTRWCBS", "hubNaptanCode": "HUBH13", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "4900801619", "commonName": "Heathrow Central Bus Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.471365, "lon": -0.453456}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "4900801620", "indicator": "Stand 20", "stopLetter": "20", "modes": ["bus"], "icsCode": "1008016", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "910GHTRWCBS", "hubNaptanCode": "HUBH13", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "4900801620", "commonName": "Heathrow Central Bus Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.471369, "lon": -0.4537}], "lat": 51.471095, "lon": -0.453306}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "940GZZLUHRC", "modes": ["tube"], "icsCode": "1000105", "stopType": "NaptanMetroStation", "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": "940GZZLUHRC", "commonName": "Heathrow Terminals 2 & 3 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": "Bridge", "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": "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": "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"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5934"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5932"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5933"}, {"$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": "Euro Cash Machines", "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"}, {"$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": "WiFi", "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": "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": "Help Points", "sourceSystemKey": "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": "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": "Car park", "sourceSystemKey": "StaticObjects", "value": "no"}], "children": [{"$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": "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}], "lat": 51.471235, "lon": -0.452265}], "lat": 51.471618, "lon": -0.454037}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "HUBHDN", "modes": ["bus", "tube", "overground"], "icsCode": "1000100", "stopType": "TransportInterchange", "hubNaptanCode": "HUBHDN", "lines": [{"$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": "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": "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"}, {"$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"}, {"$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": "487", "name": "487", "uri": "/Line/487", "type": "Line", "crowding": {"$type": "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": "490000100S", "stationAtcoCode": "490G00100N", "lineIdentifier": ["226", "224", "187", "260", "228", "487"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490000100N", "stationAtcoCode": "490G00100N", "lineIdentifier": ["226", "224", "187", "260", "228", "487"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "940GZZLUHSN", "lineIdentifier": ["bakerloo"]}, {"$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": "bus", "lineIdentifier": ["226", "224", "187", "260", "228", "487"]}, {"$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": "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": "910GHARLSDN", "modes": ["overground"], "icsCode": "1000100", "stopType": "NaptanRailStation", "stationNaptan": "910GHARLSDN", "hubNaptanCode": "HUBHDN", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "910GHARLSDN", "commonName": "Harlesden Rail Station", "placeType": "StopPoint", "additionalProperties": [], "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": [], "children": [], "lat": 51.536128, "lon": -0.257212}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9100HARLSDN1", "modes": [], "icsCode": "1000100", "stopType": "NaptanRailAccessArea", "stationNaptan": "910GHARLSDN", "hubNaptanCode": "HUBHDN", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "9100HARLSDN1", "commonName": "Harlesden Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.536297, "lon": -0.257581}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9100HARLSDN0", "modes": [], "icsCode": "1000100", "stopType": "NaptanRailAccessArea", "stationNaptan": "910GHARLSDN", "hubNaptanCode": "HUBHDN", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "9100HARLSDN0", "commonName": "Harlesden Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 0.0, "lon": 0.0}], "lat": 51.536289, "lon": -0.257667}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "940GZZLUHSN", "modes": ["tube"], "icsCode": "1000100", "stopType": "NaptanMetroStation", "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": "940GZZLUHSN", "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": "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": "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": "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": "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": "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": [{"$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}], "lat": 51.53631, "lon": -0.257883}], "lat": 51.536305, "lon": -0.257774}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "HUBHHY", "modes": ["national-rail", "tube", "bus", "overground"], "icsCode": "1000108", "stopType": "TransportInterchange", "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": "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": "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": "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": "london-overground", "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": "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"}], "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", "naptanIdReference": "490000108B", "stationAtcoCode": "490G00108B", "lineIdentifier": ["21", "263", "n271", "393", "43", "n41"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490000108A", "stationAtcoCode": "490G00108B", "lineIdentifier": ["263", "21", "n271", "393", "43", "n41"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "910GHGHI", "lineIdentifier": ["london-overground"]}, {"$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": "national-rail", "lineIdentifier": ["great-northern"]}, {"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "bus", "lineIdentifier": ["21", "263", "n271", "393", "43", "n41"]}, {"$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"]}], "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": "910GHGHI", "modes": ["overground", "national-rail"], "icsCode": "1000108", "stopType": "NaptanRailStation", "stationNaptan": "910GHGHI", "hubNaptanCode": "HUBHHY", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "910GHGHI", "commonName": "Highbury & Islington Rail Station", "placeType": "StopPoint", "additionalProperties": [], "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": [], "children": [], "lat": 51.546216, "lon": -0.103502}, {"$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}, {"$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": "9100HIGHBYA1", "modes": [], "icsCode": "1000108", "stopType": "NaptanRailAccessArea", "stationNaptan": "910GHGHI", "hubNaptanCode": "HUBHHY", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "9100HIGHBYA1", "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": "9100HIGBYA3", "modes": [], "icsCode": "1000108", "stopType": "NaptanRailAccessArea", "stationNaptan": "910GHGHI", "hubNaptanCode": "HUBHHY", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "9100HIGBYA3", "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": "9100HIGHBYA2", "modes": [], "icsCode": "1000108", "stopType": "NaptanRailAccessArea", "stationNaptan": "910GHGHI", "hubNaptanCode": "HUBHHY", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "9100HIGHBYA2", "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": "940GZZLUHAI", "modes": ["tube"], "icsCode": "1000108", "stopType": "NaptanMetroStation", "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": "940GZZLUHAI", "commonName": "Highbury & Islington 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": "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": "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": "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": "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": "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": "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": "Help Points", "sourceSystemKey": "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"}], "children": [{"$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}], "lat": 51.54635, "lon": -0.103324}], "lat": 51.546269, "lon": -0.103538}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "HUBHMS", "modes": ["bus", "tube"], "icsCode": "1000096", "stopType": "TransportInterchange", "hubNaptanCode": "HUBHMS", "lines": [{"$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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "533", "name": "533", "uri": "/Line/533", "type": "Line", "crowding": {"$type": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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", "naptanIdReference": "490007705B", "stationAtcoCode": "490G000565", "lineIdentifier": ["220", "n72", "295", "72", "283"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490007705D", "stationAtcoCode": "490G000565", "lineIdentifier": ["220", "211", "295", "190", "n97", "n11"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490007705K", "stationAtcoCode": "490G000565", "lineIdentifier": ["n72", "72", "533", "n33"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490007705F", "stationAtcoCode": "490G000565", "lineIdentifier": ["211", "9", "n27", "n97", "n266", "267", "218"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490000097T", "stationAtcoCode": "490G00097T", "lineIdentifier": ["h91", "190", "110", "n9", "n266", "n11", "27", "267", "218", "306"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490007705C", "stationAtcoCode": "490G000565", "lineIdentifier": ["h91", "190", "110", "n9", "n266", "n11", "27", "267", "218", "306"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490007705A", "stationAtcoCode": "490G000565", "lineIdentifier": ["h91"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490007705G", "stationAtcoCode": "490G000565", "lineIdentifier": ["9", "n27", "n9", "27", "306"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490007705J", "stationAtcoCode": "490G000565", "lineIdentifier": ["110"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490007705Z3", "stationAtcoCode": "490G000565", "lineIdentifier": ["283"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490007705Z2", "stationAtcoCode": "490G000565", "lineIdentifier": ["533", "n33"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "940GZZLUHSD", "lineIdentifier": ["piccadilly"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "940GZZLUHSC", "lineIdentifier": ["circle", "hammersmith-city"]}, {"$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": "bus", "lineIdentifier": ["220", "n72", "211", "295", "h91", "9", "190", "72", "110", "283", "533", "n33", "n27", "n97", "n9", "n266", "n11", "27", "267", "218", "306"]}, {"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["piccadilly", "circle", "district", "hammersmith-city"]}], "status": true, "id": "HUBHMS", "commonName": "Hammersmith", "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": "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": "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": "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": "Gates", "sourceSystemKey": "StaticObjects", "value": "24"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.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": "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": "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": "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": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_595"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_598"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_686"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_730"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_775"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_4595"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5396"}], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490G000565", "modes": ["bus"], "icsCode": "1007705", "stopType": "NaptanBusCoachStation", "stationNaptan": "490G000565", "hubNaptanCode": "HUBHMS", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490G000565", "commonName": "Hammersmith Bus Station", "placeType": "StopPoint", "additionalProperties": [], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490007705A", "indicator": "Stop Z1", "stopLetter": "Z1", "modes": ["bus"], "icsCode": "1007705", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G000565", "hubNaptanCode": "HUBHMS", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490007705A", "commonName": "Hammersmith Bus Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.492591, "lon": -0.224502}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490007705B", "indicator": "Stop A", "stopLetter": "A", "modes": ["bus"], "icsCode": "1007705", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G000565", "hubNaptanCode": "HUBHMS", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490007705B", "commonName": "Hammersmith Bus Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.492462, "lon": -0.224348}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490007705C", "indicator": "Stop B", "stopLetter": "B", "modes": ["bus"], "icsCode": "1007705", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G000565", "hubNaptanCode": "HUBHMS", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490007705C", "commonName": "Hammersmith Bus Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.492276, "lon": -0.22388}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490007705D", "indicator": "Stop C", "stopLetter": "C", "modes": ["bus"], "icsCode": "1007705", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G000565", "hubNaptanCode": "HUBHMS", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490007705D", "commonName": "Hammersmith Bus Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.491959, "lon": -0.223749}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490007705E", "indicator": "Stop D", "stopLetter": "D", "modes": ["bus"], "icsCode": "1007705", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G000565", "hubNaptanCode": "HUBHMS", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490007705E", "commonName": "Hammersmith Bus Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.491837, "lon": -0.223393}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490007705F", "indicator": "Stop E", "stopLetter": "E", "modes": ["bus"], "icsCode": "1007705", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G000565", "hubNaptanCode": "HUBHMS", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490007705F", "commonName": "Hammersmith Bus Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.492162, "lon": -0.223525}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490007705G", "indicator": "Stop F", "stopLetter": "F", "modes": ["bus"], "icsCode": "1007705", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G000565", "hubNaptanCode": "HUBHMS", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490007705G", "commonName": "Hammersmith Bus Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.492358, "lon": -0.223978}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490007705H1", "indicator": "Stop H", "stopLetter": "H", "modes": ["bus"], "icsCode": "1007705", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G000565", "hubNaptanCode": "HUBHMS", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490007705H1", "commonName": "Hammersmith Bus Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.492546, "lon": -0.222732}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490007705J", "indicator": "Stop J", "stopLetter": "J", "modes": ["bus"], "icsCode": "1007705", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G000565", "hubNaptanCode": "HUBHMS", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490007705J", "commonName": "Hammersmith Bus Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.492828, "lon": -0.222937}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490007705K", "indicator": "Stop K", "stopLetter": "K", "modes": ["bus"], "icsCode": "1007705", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G000565", "hubNaptanCode": "HUBHMS", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490007705K", "commonName": "Hammersmith Bus Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.492423, "lon": -0.222909}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490007705L", "indicator": "Stop L", "stopLetter": "L", "modes": ["bus"], "icsCode": "1007705", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G000565", "hubNaptanCode": "HUBHMS", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490007705L", "commonName": "Hammersmith Bus Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.492388, "lon": -0.223012}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490007705Z2", "indicator": "Stop Z2", "stopLetter": "Z2", "modes": ["bus"], "icsCode": "1007705", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G000565", "hubNaptanCode": "HUBHMS", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490007705Z2", "commonName": "Hammersmith Bus Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.492669, "lon": -0.223145}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490007705Z3", "indicator": "Stop Z3", "stopLetter": "Z3", "modes": ["bus"], "icsCode": "1007705", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G000565", "hubNaptanCode": "HUBHMS", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490007705Z3", "commonName": "Hammersmith Bus Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.492634, "lon": -0.223218}], "lat": 51.492462, "lon": -0.224348}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "940GZZLUHSC", "modes": ["tube"], "icsCode": "1000097", "stopType": "NaptanMetroStation", "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": "940GZZLUHSC", "commonName": "Hammersmith (H&C 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": "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": "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": "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": "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": "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": "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": "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": "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"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_595"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_598"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_730"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_775"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_4595"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5396"}], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490G00097T", "modes": ["bus"], "icsCode": "1000097", "stopType": "NaptanOnstreetBusCoachStopCluster", "stationNaptan": "490G00097T", "hubNaptanCode": "HUBHMS", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490G00097T", "commonName": "Hammersmith Stn / H&c and Circle Lines", "placeType": "StopPoint", "additionalProperties": [], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000097T", "indicator": "Stop W", "stopLetter": "W", "modes": ["bus"], "icsCode": "1000097", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00097T", "hubNaptanCode": "HUBHMS", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000097T", "commonName": "Hammersmith Stn / H&c and Circle Lines", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.493339, "lon": -0.225208}], "lat": 51.493339, "lon": -0.225208}, {"$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": "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}], "lat": 51.493307, "lon": -0.224301}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "940GZZLUHSD", "modes": ["tube"], "icsCode": "1000096", "stopType": "NaptanMetroStation", "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"}, {"$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": ["piccadilly"]}, {"$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": ["piccadilly", "district"]}], "status": true, "id": "940GZZLUHSD", "commonName": "Hammersmith (Dist&Picc Line) 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": "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": "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": "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": "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": "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": "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": "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"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_595"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_598"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_686"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_730"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_775"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_4595"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5396"}], "children": [{"$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": "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}], "lat": 51.4923, "lon": -0.22362}], "lat": 51.492304, "lon": -0.223619}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "HUBHOH", "modes": ["bus", "tube", "national-rail"], "icsCode": "1000102", "stopType": "TransportInterchange", "hubNaptanCode": "HUBHOH", "lines": [{"$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": "h11", "name": "H11", "uri": "/Line/h11", "type": "Line", "crowding": {"$type": "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": "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": "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": "395", "name": "395", "uri": "/Line/395", "type": "Line", "crowding": {"$type": "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": "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": "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": "sl9", "name": "SL9", "uri": "/Line/sl9", "type": "Line", "crowding": {"$type": "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": "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": "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": "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": "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": "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": "h14", "name": "H14", "uri": "/Line/h14", "type": "Line", "crowding": {"$type": "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": "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": "chiltern-railways", "name": "Chiltern Railways", "uri": "/Line/chiltern-railways", "type": "Line", "crowding": {"$type": "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": "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": "490007845C", "stationAtcoCode": "490G000574", "lineIdentifier": ["n18", "h19", "182", "483", "h9", "258", "h17", "186", "h14"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490007845A", "stationAtcoCode": "490G000574", "lineIdentifier": ["n18", "140", "340", "258", "186", "640", "n140"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490007845E", "stationAtcoCode": "490G000574", "lineIdentifier": ["h11", "223", "395", "340", "sl9", "h18", "sl10", "h17", "183", "114"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490007845D", "stationAtcoCode": "490G000574", "lineIdentifier": ["h11", "223", "182", "h18", "h14", "183"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490007845Z", "stationAtcoCode": "490G000574", "lineIdentifier": ["h19"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490007845B", "stationAtcoCode": "490G000574", "lineIdentifier": ["140", "395", "483", "sl9", "sl10", "114", "640", "n140", "h10"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "940GZZLUHOH", "lineIdentifier": ["metropolitan"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "910GHAROOTH", "lineIdentifier": ["chiltern-railways"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "bus", "lineIdentifier": ["n18", "h11", "h19", "223", "140", "182", "395", "483", "340", "sl9", "h9", "258", "h18", "sl10", "h17", "186", "h14", "183", "114", "640", "n140", "h10"]}, {"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["metropolitan"]}, {"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "national-rail", "lineIdentifier": ["chiltern-railways"]}], "status": true, "id": "HUBHOH", "commonName": "Harrow-on-the-Hill", "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": "Bridge", "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": "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": "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": "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": "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": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_4903"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5530"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "CarParks_800445"}], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490G000574", "modes": ["bus"], "icsCode": "1007845", "stopType": "NaptanBusCoachStation", "stationNaptan": "490G000574", "hubNaptanCode": "HUBHOH", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490G000574", "commonName": "Harrow Bus Station", "placeType": "StopPoint", "additionalProperties": [], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490007845A", "indicator": "Stop A", "stopLetter": "A", "modes": ["bus"], "icsCode": "1007845", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G000574", "hubNaptanCode": "HUBHOH", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490007845A", "commonName": "Harrow Bus Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.57996, "lon": -0.337414}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490007845B", "indicator": "Stop B", "stopLetter": "B", "modes": ["bus"], "icsCode": "1007845", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G000574", "hubNaptanCode": "HUBHOH", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490007845B", "commonName": "Harrow Bus Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.580043, "lon": -0.337584}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490007845C", "indicator": "Stop C", "stopLetter": "C", "modes": ["bus"], "icsCode": "1007845", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G000574", "hubNaptanCode": "HUBHOH", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490007845C", "commonName": "Harrow Bus Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.579971, "lon": -0.337586}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490007845D", "indicator": "Stop D", "stopLetter": "D", "modes": ["bus"], "icsCode": "1007845", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G000574", "hubNaptanCode": "HUBHOH", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490007845D", "commonName": "Harrow Bus Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.580067, "lon": -0.337958}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490007845E", "indicator": "Stop E", "stopLetter": "E", "modes": ["bus"], "icsCode": "1007845", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G000574", "hubNaptanCode": "HUBHOH", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490007845E", "commonName": "Harrow Bus Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.579984, "lon": -0.337875}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490007845Z", "indicator": "Stop Z", "stopLetter": "Z", "modes": ["bus"], "icsCode": "1007845", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G000574", "hubNaptanCode": "HUBHOH", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490007845Z", "commonName": "Harrow Bus Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.579966, "lon": -0.339131}], "lat": 51.57996, "lon": -0.337414}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "910GHAROOTH", "modes": ["national-rail"], "icsCode": "1000102", "stopType": "NaptanRailStation", "stationNaptan": "910GHAROOTH", "hubNaptanCode": "HUBHOH", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "910GHAROOTH", "commonName": "Harrow-on-the-Hill Rail Station", "placeType": "StopPoint", "additionalProperties": [], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490G00102E", "modes": ["bus"], "icsCode": "1000102", "stopType": "NaptanOnstreetBusCoachStopCluster", "stationNaptan": "910GHAROOTH", "hubNaptanCode": "HUBHOH", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490G00102E", "commonName": "Harrow-On-The-Hill Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.579186, "lon": -0.337225}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490G00102N", "modes": ["bus"], "icsCode": "1000102", "stopType": "NaptanOnstreetBusCoachStopCluster", "stationNaptan": "490G00102N", "hubNaptanCode": "HUBHOH", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490G00102N", "commonName": "Harrow-On-The-Hill Station", "placeType": "StopPoint", "additionalProperties": [], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000102N", "indicator": "N-bound", "modes": ["bus"], "icsCode": "1000102", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00102N", "hubNaptanCode": "HUBHOH", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000102N", "commonName": "Harrow-On-The-Hill Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.577976, "lon": -0.337616}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000102S", "indicator": "->SE", "modes": ["bus"], "icsCode": "1000102", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00102N", "hubNaptanCode": "HUBHOH", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000102S", "commonName": "Harrow-On-The-Hill Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.57818, "lon": -0.337479}], "lat": 51.577976, "lon": -0.337616}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "4900HAROOTH1", "indicator": "Entrance 1", "stopLetter": "1", "modes": [], "icsCode": "1000102", "stopType": "NaptanRailEntrance", "stationNaptan": "910GHAROOTH", "hubNaptanCode": "HUBHOH", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "4900HAROOTH1", "commonName": "Harrow-on-the-Hill Rail Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.578986, "lon": -0.337189}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "4900HAROOTH2", "indicator": "Entrance 2", "stopLetter": "2", "modes": [], "icsCode": "1000102", "stopType": "NaptanRailEntrance", "stationNaptan": "910GHAROOTH", "hubNaptanCode": "HUBHOH", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "4900HAROOTH2", "commonName": "Harrow-on-the-Hill Rail Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.580034, "lon": -0.3363}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9100HAROOTH0", "modes": [], "icsCode": "1000102", "stopType": "NaptanRailAccessArea", "stationNaptan": "910GHAROOTH", "hubNaptanCode": "HUBHOH", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "9100HAROOTH0", "commonName": "Harrow-on-the-Hill", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 0.0, "lon": 0.0}], "lat": 51.579186, "lon": -0.337225}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "940GZZLUHOH", "modes": ["tube"], "icsCode": "1000102", "stopType": "NaptanMetroStation", "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": "940GZZLUHOH", "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": "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": "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": "WiFi", "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": "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": "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": "Euro Cash Machines", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_4903"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5530"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "CarParks_800445"}], "children": [{"$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}], "lat": 51.579195, "lon": -0.337225}], "lat": 51.579197, "lon": -0.337226}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "HUBHRW", "modes": ["tube", "overground", "bus", "national-rail"], "icsCode": "1000101", "stopType": "TransportInterchange", "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"}, {"$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": "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": "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": "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": "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": "london-overground", "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": "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": "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"}], "lineGroup": [{"$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": "490015249M", "stationAtcoCode": "490G15249M", "lineIdentifier": ["340", "140", "182", "n18", "n140", "640", "186", "258"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490015249N", "stationAtcoCode": "490G15249M", "lineIdentifier": ["340", "140", "182", "n18", "n140", "640", "186", "258"]}, {"$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", "naptanIdReference": "490000101K", "stationAtcoCode": "490G00101J", "lineIdentifier": ["h10"]}, {"$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": "940GZZLUHAW", "lineIdentifier": ["bakerloo"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "bus", "lineIdentifier": ["h9", "340", "140", "182", "n18", "h10", "n140", "640", "186", "258"]}, {"$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": "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": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "910GHROW", "commonName": "Harrow & Wealdstone Rail Station", "placeType": "StopPoint", "additionalProperties": [], "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": [], "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": [], "children": [], "lat": 51.591801, "lon": -0.334729}, {"$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}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9100HROWDC1", "modes": [], "icsCode": "1000101", "stopType": "NaptanRailAccessArea", "stationNaptan": "910GHROW", "hubNaptanCode": "HUBHRW", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "9100HROWDC1", "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": "9100HROWDC2", "modes": [], "icsCode": "1000101", "stopType": "NaptanRailAccessArea", "stationNaptan": "910GHROW", "hubNaptanCode": "HUBHRW", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "9100HROWDC2", "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": "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": "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}], "lat": 51.592268, "lon": -0.335217}], "lat": 51.592216, "lon": -0.334896}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "HUBHX4", "modes": ["bus", "tube", "national-rail", "elizabeth-line", "plane"], "icsCode": "1000104", "stopType": "TransportInterchange", "hubNaptanCode": "HUBHX4", "lines": [{"$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": "482", "name": "482", "uri": "/Line/482", "type": "Line", "crowding": {"$type": "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": "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", "naptanIdReference": "490000104E", "stationAtcoCode": "490G00104A", "lineIdentifier": ["490", "482"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490000104N", "stationAtcoCode": "490G00104A", "lineIdentifier": ["490", "482"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "910GHTRWTM4", "lineIdentifier": ["elizabeth"]}, {"$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": "bus", "lineIdentifier": ["490", "482"]}, {"$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": "tube", "lineIdentifier": ["piccadilly"]}], "status": true, "id": "HUBHX4", "commonName": "Heathrow Airport Terminal 4", "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, 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": "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": "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": "Gates", "sourceSystemKey": "StaticObjects", "value": "3"}, {"$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": "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": "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": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5935"}], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "910GHTRWTE4", "modes": [], "stopType": "NaptanRailStation", "hubNaptanCode": "HUBHX4", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "910GHTRWTE4", "commonName": "Heathrow Terminal 4 (Rail-Air)", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.459331, "lon": -0.446967}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "910GHTRWTM4", "modes": ["elizabeth-line"], "icsCode": "1000104", "stopType": "NaptanRailStation", "stationNaptan": "910GHTRWTM4", "hubNaptanCode": "HUBHX4", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "910GHTRWTM4", "commonName": "Heathrow Terminal 4 Rail Station", "placeType": "StopPoint", "additionalProperties": [], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490G00104A", "modes": ["bus"], "icsCode": "1000104", "stopType": "NaptanOnstreetBusCoachStopCluster", "stationNaptan": "490G00104A", "hubNaptanCode": "HUBHX4", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490G00104A", "commonName": "Heathrow Terminal 4", "placeType": "StopPoint", "additionalProperties": [], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "49000010410", "indicator": "---", "modes": ["bus"], "icsCode": "1000104", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00104A", "hubNaptanCode": "HUBHX4", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "49000010410", "commonName": "Heathrow Terminal 4", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.458718, "lon": -0.446974}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "49000010413", "indicator": "Stand 13", "stopLetter": "13", "modes": ["bus"], "icsCode": "1000104", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00104A", "hubNaptanCode": "HUBHX4", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "49000010413", "commonName": "Heathrow Terminal 4", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.459176, "lon": -0.446267}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "49000010414", "indicator": "Stand 14", "stopLetter": "14", "modes": ["bus"], "icsCode": "1000104", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00104A", "hubNaptanCode": "HUBHX4", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "49000010414", "commonName": "Heathrow Terminal 4", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.459291, "lon": -0.446105}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "49000010415", "indicator": "Stand 15", "stopLetter": "15", "modes": ["bus"], "icsCode": "1000104", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00104A", "hubNaptanCode": "HUBHX4", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "49000010415", "commonName": "Heathrow Terminal 4", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.459379, "lon": -0.445958}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "49000010418", "indicator": "Stand 18", "stopLetter": "18", "modes": ["bus"], "icsCode": "1000104", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00104A", "hubNaptanCode": "HUBHX4", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "49000010418", "commonName": "Heathrow Terminal 4", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.458475, "lon": -0.446953}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "49000010420", "indicator": "Stand 20", "stopLetter": "20", "modes": ["bus"], "icsCode": "1000104", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00104A", "hubNaptanCode": "HUBHX4", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "49000010420", "commonName": "Heathrow Terminal 4", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.458767, "lon": -0.446598}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "4900001048", "indicator": "Stand 8", "stopLetter": "8", "modes": ["bus"], "icsCode": "1000104", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00104A", "hubNaptanCode": "HUBHX4", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "4900001048", "commonName": "Heathrow Terminal 4", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.458488, "lon": -0.447298}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "4900001049", "indicator": "Stand 9", "stopLetter": "9", "modes": ["bus"], "icsCode": "1000104", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00104A", "hubNaptanCode": "HUBHX4", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "4900001049", "commonName": "Heathrow Terminal 4", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.458603, "lon": -0.447107}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000104E", "indicator": "Stop 10", "stopLetter": "10", "modes": ["bus"], "icsCode": "1000104", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00104A", "hubNaptanCode": "HUBHX4", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000104E", "commonName": "Heathrow Terminal 4", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.459037, "lon": -0.446646}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000104N", "indicator": "Stop 11", "stopLetter": "11", "modes": ["bus"], "icsCode": "1000104", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00104A", "hubNaptanCode": "HUBHX4", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000104N", "commonName": "Heathrow Terminal 4", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.458993, "lon": -0.446705}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000104W", "indicator": "Stand 12", "stopLetter": "12", "modes": ["bus"], "icsCode": "1000104", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00104A", "hubNaptanCode": "HUBHX4", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000104W", "commonName": "Heathrow Terminal 4", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.458767, "lon": -0.446598}], "lat": 51.459176, "lon": -0.446267}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "4900HTRWTM41", "indicator": "Entrance 1", "stopLetter": "1", "modes": [], "icsCode": "1000104", "stopType": "NaptanRailEntrance", "stationNaptan": "910GHTRWTM4", "hubNaptanCode": "HUBHX4", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "4900HTRWTM41", "commonName": "Heathrow Terminal 4 Rail Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.459055, "lon": -0.446646}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9100HTRWTM40", "modes": [], "icsCode": "1000104", "stopType": "NaptanRailAccessArea", "stationNaptan": "910GHTRWTM4", "hubNaptanCode": "HUBHX4", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "9100HTRWTM40", "commonName": "Heathrow Terminal 4", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 0.0, "lon": 0.0}], "lat": 51.458268, "lon": -0.445463}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "940GZZLUHR4", "modes": ["tube"], "icsCode": "1000104", "stopType": "NaptanMetroStation", "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": "940GZZLUHR4", "commonName": "Heathrow Terminal 4 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": "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"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "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": "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": "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": "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": "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": "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_5935"}], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "4900HTRWTM49", "indicator": "Entrance 2", "stopLetter": "2", "modes": [], "icsCode": "1000104", "stopType": "NaptanMetroEntrance", "stationNaptan": "940GZZLUHR4", "hubNaptanCode": "HUBHX4", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "4900HTRWTM49", "commonName": "Heathrow Terminal 4 Underground Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.459273, "lon": -0.44481}, {"$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}], "lat": 51.458524, "lon": -0.445771}], "lat": 51.458837, "lon": -0.446419}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "HUBHX5", "modes": ["bus", "tube", "plane", "national-rail", "elizabeth-line"], "icsCode": "1016430", "stopType": "TransportInterchange", "hubNaptanCode": "HUBHX5", "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": "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": "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": "423", "name": "423", "uri": "/Line/423", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "482", "name": "482", "uri": "/Line/482", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "350", "name": "350", "uri": "/Line/350", "type": "Line", "crowding": {"$type": "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": "heathrow-express", "name": "Heathrow Express", "uri": "/Line/heathrow-express", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "910GHTRWTM5", "lineIdentifier": ["elizabeth", "heathrow-express"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "940GZZLUHR5", "lineIdentifier": ["piccadilly"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "4900164306", "stationAtcoCode": "910GHTRBUS5", "lineIdentifier": ["n9", "423", "350"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "4900164301", "stationAtcoCode": "910GHTRBUS5", "lineIdentifier": ["n9", "423", "482", "350", "490"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "4900164307", "stationAtcoCode": "910GHTRBUS5", "lineIdentifier": ["482", "490"]}], "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": "tube", "lineIdentifier": ["piccadilly"]}, {"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "bus", "lineIdentifier": ["n9", "423", "482", "350", "490"]}, {"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "national-rail", "lineIdentifier": ["heathrow-express"]}], "status": true, "id": "HUBHX5", "commonName": "Heathrow Airport Terminal 5", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5936"}, {"$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": "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": "Help 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": "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": "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": "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": "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": "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": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "910GHTRWTM5", "modes": ["national-rail", "elizabeth-line"], "icsCode": "1016430", "stopType": "NaptanRailStation", "stationNaptan": "910GHTRWTM5", "hubNaptanCode": "HUBHX5", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "910GHTRWTM5", "commonName": "Heathrow Terminal 5 Rail Station", "placeType": "StopPoint", "additionalProperties": [], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "4900HTRWTM51", "indicator": "Entrance 1", "stopLetter": "1", "modes": [], "icsCode": "1016430", "stopType": "NaptanRailEntrance", "stationNaptan": "910GHTRWTM5", "hubNaptanCode": "HUBHX5", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "4900HTRWTM51", "commonName": "Heathrow Terminal 5 Rail Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.471927, "lon": -0.488209}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9100HTRWTM50", "modes": [], "icsCode": "1016430", "stopType": "NaptanRailAccessArea", "stationNaptan": "910GHTRWTM5", "hubNaptanCode": "HUBHX5", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "9100HTRWTM50", "commonName": "Heathrow Terminal 5", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 0.0, "lon": 0.0}], "lat": 51.470053, "lon": -0.490589}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "940GZZLUHR5", "modes": ["tube"], "icsCode": "1016430", "stopType": "NaptanMetroStation", "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": "940GZZLUHR5", "commonName": "Heathrow Terminal 5 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": "Help Points", "sourceSystemKey": "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": "Facility", "key": "Escalators", "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": "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"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo 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": "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": "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": "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": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5936"}], "children": [{"$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}], "lat": 51.470052, "lon": -0.49056}], "lat": 51.471569, "lon": -0.489556}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "HUBKGX", "modes": ["bus", "tube", "international-rail", "national-rail"], "icsCode": "1000129", "stopType": "TransportInterchange", "hubNaptanCode": "HUBKGX", "lines": [{"$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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "490004722A", "stationAtcoCode": "490G01276S", "lineIdentifier": ["30", "73", "390", "91", "n73", "n205", "205", "n91"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490001172X", "stationAtcoCode": "490G00005909", "lineIdentifier": ["30", "73", "214", "n73", "476", "n205", "205"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490000129E", "stationAtcoCode": "490G00129R", "lineIdentifier": ["30", "73", "214", "n73", "n205", "205"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490000129R", "stationAtcoCode": "490G00129R", "lineIdentifier": ["30", "73", "390", "91", "n73", "n205", "205", "n91"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "910GSTPXBOX", "lineIdentifier": ["first-hull-trains", "thameslink"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "910GKNGX", "lineIdentifier": ["first-hull-trains", "great-northern", "grand-central", "london-north-eastern-railway", "thameslink", "lumo"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "940GZZLUKSX", "lineIdentifier": ["northern"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490001171H", "stationAtcoCode": "490G000480", "lineIdentifier": ["17", "390", "91", "259", "476", "n91"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490001171G", "stationAtcoCode": "490G000479", "lineIdentifier": ["17", "390", "63", "91", "259", "476", "n63", "n91"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490004722M", "stationAtcoCode": "490G01276S", "lineIdentifier": ["390", "91", "n91"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490001276S", "stationAtcoCode": "490G01276S", "lineIdentifier": ["46", "63", "214", "n63"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490000129D", "stationAtcoCode": "490G00129R", "lineIdentifier": ["46", "63", "n63"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490012553B", "stationAtcoCode": "490G000760", "lineIdentifier": ["46", "214"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "910GSTPX", "lineIdentifier": ["east-midlands-railway", "thameslink"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "940GZZLUKSX", "lineIdentifier": ["metropolitan", "circle", "hammersmith-city"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "940GZZLUKSX", "lineIdentifier": ["piccadilly"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "940GZZLUKSX", "lineIdentifier": ["victoria"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "910GSTPADOM", "lineIdentifier": ["southeastern"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "bus", "lineIdentifier": ["30", "73", "17", "390", "46", "63", "91", "214", "259", "n73", "476", "n205", "n63", "205", "n91"]}, {"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "national-rail", "lineIdentifier": ["first-hull-trains", "great-northern", "east-midlands-railway", "grand-central", "london-north-eastern-railway", "thameslink", "lumo", "southeastern"]}, {"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["northern", "metropolitan", "circle", "hammersmith-city", "piccadilly", "victoria"]}], "status": true, "id": "HUBKGX", "commonName": "King's Cross & St Pancras International", "placeType": "StopPoint", "additionalProperties": [{"$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": "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": "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": "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": "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": "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": "Facility", "key": "Help Points", "sourceSystemKey": "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": "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": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_4"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_14"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_34"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_70"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_431"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_439"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_593"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_793"}, {"$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": "BikePoints_798"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_804"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5237"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5896"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5708"}], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490G00005909", "modes": ["bus"], "icsCode": "1005909", "stopType": "NaptanOnstreetBusCoachStopPair", "stationNaptan": "490G00005909", "hubNaptanCode": "HUBKGX", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490G00005909", "commonName": "King's Cross / Caledonian Road", "placeType": "StopPoint", "additionalProperties": [], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490001172X", "indicator": "Stop X", "stopLetter": "X", "modes": ["bus"], "icsCode": "1005909", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00005909", "hubNaptanCode": "HUBKGX", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490001172X", "commonName": "King's Cross / Caledonian Road", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.530843, "lon": -0.12052}], "lat": 51.530843, "lon": -0.12052}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490G000479", "modes": ["bus"], "icsCode": "1005916", "stopType": "NaptanOnstreetBusCoachStopPair", "stationNaptan": "490G000479", "hubNaptanCode": "HUBKGX", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490G000479", "commonName": "King's Cross Station / York Way", "placeType": "StopPoint", "additionalProperties": [], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490001171G", "indicator": "Stop G", "stopLetter": "G", "modes": ["bus"], "icsCode": "1005916", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G000479", "hubNaptanCode": "HUBKGX", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490001171G", "commonName": "King's Cross Station / York Way", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.531282, "lon": -0.122679}], "lat": 51.531282, "lon": -0.122679}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490G000480", "modes": ["bus"], "icsCode": "1005924", "stopType": "NaptanOnstreetBusCoachStopPair", "stationNaptan": "490G000480", "hubNaptanCode": "HUBKGX", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490G000480", "commonName": "King's Cross Stn / Pentonville Rd", "placeType": "StopPoint", "additionalProperties": [], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490001171H", "indicator": "Stop H", "stopLetter": "H", "modes": ["bus"], "icsCode": "1005924", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G000480", "hubNaptanCode": "HUBKGX", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490001171H", "commonName": "King's Cross Stn / Pentonville Rd", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.531478, "lon": -0.120869}], "lat": 51.531478, "lon": -0.120869}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490G000760", "modes": ["bus"], "icsCode": "1012553", "stopType": "NaptanOnstreetBusCoachStopPair", "stationNaptan": "490G000760", "hubNaptanCode": "HUBKGX", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490G000760", "commonName": "St Pancras Intern'l & King's X Stns", "placeType": "StopPoint", "additionalProperties": [], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490012553B", "indicator": "Stop T", "stopLetter": "T", "modes": ["bus"], "icsCode": "1012553", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G000760", "hubNaptanCode": "HUBKGX", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490012553B", "commonName": "St Pancras Intern'l & King's X Stns", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.530551, "lon": -0.124713}], "lat": 51.530551, "lon": -0.124713}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "910GKNGX", "modes": ["national-rail"], "icsCode": "1001171", "stopType": "NaptanRailStation", "stationNaptan": "910GKNGX", "hubNaptanCode": "HUBKGX", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "910GKNGX", "commonName": "London King's Cross Rail Station", "placeType": "StopPoint", "additionalProperties": [], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "4900KNGX1", "indicator": "Entrance 1", "stopLetter": "1", "modes": [], "icsCode": "1001171", "stopType": "NaptanRailEntrance", "stationNaptan": "910GKNGX", "hubNaptanCode": "HUBKGX", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "4900KNGX1", "commonName": "London King's Cross Rail Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.530875, "lon": -0.122494}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "4900KNGX2", "indicator": "Entrance 2", "stopLetter": "2", "modes": [], "icsCode": "1001171", "stopType": "NaptanRailEntrance", "stationNaptan": "910GKNGX", "hubNaptanCode": "HUBKGX", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "4900KNGX2", "commonName": "London King's Cross Rail Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.530721, "lon": -0.123019}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "4900KNGX3", "indicator": "Entrance 3", "stopLetter": "3", "modes": [], "icsCode": "1001171", "stopType": "NaptanRailEntrance", "stationNaptan": "910GKNGX", "hubNaptanCode": "HUBKGX", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "4900KNGX3", "commonName": "London King's Cross Rail Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.532148, "lon": -0.124532}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "4900KNGX4", "indicator": "Entrance 4", "stopLetter": "4", "modes": [], "icsCode": "1001171", "stopType": "NaptanRailEntrance", "stationNaptan": "910GKNGX", "hubNaptanCode": "HUBKGX", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "4900KNGX4", "commonName": "London King's Cross Rail Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.53092, "lon": -0.124741}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9100KNGX1", "modes": [], "icsCode": "1001171", "stopType": "NaptanRailAccessArea", "stationNaptan": "910GKNGX", "hubNaptanCode": "HUBKGX", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "9100KNGX1", "commonName": "King's Cross Rail Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 0.0, "lon": 0.0}], "lat": 51.530883, "lon": -0.122926}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "910GSTPADOM", "modes": ["national-rail"], "icsCode": "1001276", "stopType": "NaptanRailStation", "stationNaptan": "910GSTPADOM", "hubNaptanCode": "HUBKGX", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "910GSTPADOM", "commonName": "London St Pancras International Rail Station", "placeType": "StopPoint", "additionalProperties": [], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490G01276S", "modes": ["bus"], "icsCode": "1001276", "stopType": "NaptanOnstreetBusCoachStopCluster", "stationNaptan": "490G01276S", "hubNaptanCode": "HUBKGX", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490G01276S", "commonName": "St Pancras International Station", "placeType": "StopPoint", "additionalProperties": [], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490001276S", "indicator": "Stop S", "stopLetter": "S", "modes": ["bus"], "icsCode": "1001276", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G01276S", "hubNaptanCode": "HUBKGX", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490001276S", "commonName": "St Pancras International Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.531597, "lon": -0.127179}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490001276Z", "indicator": "Stop Z", "stopLetter": "Z", "modes": ["bus"], "icsCode": "1001276", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G01276S", "hubNaptanCode": "HUBKGX", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490001276Z", "commonName": "St Pancras International Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.531879, "lon": -0.127369}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490004722A", "indicator": "Stop A", "stopLetter": "A", "modes": ["bus"], "icsCode": "1001276", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G01276S", "hubNaptanCode": "HUBKGX", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490004722A", "commonName": "St Pancras International Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.529423, "lon": -0.125062}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490004722M", "indicator": "Stop M", "stopLetter": "M", "modes": ["bus"], "icsCode": "1001276", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G01276S", "hubNaptanCode": "HUBKGX", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490004722M", "commonName": "St Pancras International Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.529761, "lon": -0.124846}], "lat": 51.531879, "lon": -0.127369}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "4900STPXBOX0", "indicator": "Entrance 1", "stopLetter": "1", "modes": [], "icsCode": "1001276", "stopType": "NaptanRailEntrance", "stationNaptan": "910GSTPADOM", "hubNaptanCode": "HUBKGX", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "4900STPXBOX0", "commonName": "London St Pancras International Rail Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.531231, "lon": -0.125103}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "4900STPXBOX1", "indicator": "Entrance 4", "stopLetter": "4", "modes": [], "icsCode": "1001276", "stopType": "NaptanRailEntrance", "stationNaptan": "910GSTPADOM", "hubNaptanCode": "HUBKGX", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "4900STPXBOX1", "commonName": "London St Pancras International Rail Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.530537, "lon": -0.126098}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "4900STPXBOX2", "indicator": "Entrance 2", "stopLetter": "2", "modes": [], "icsCode": "1001276", "stopType": "NaptanRailEntrance", "stationNaptan": "910GSTPADOM", "hubNaptanCode": "HUBKGX", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "4900STPXBOX2", "commonName": "London St Pancras International Rail Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.532249, "lon": -0.125753}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "4900STPXBOX3", "indicator": "Entrance 3", "stopLetter": "3", "modes": [], "icsCode": "1001276", "stopType": "NaptanRailEntrance", "stationNaptan": "910GSTPADOM", "hubNaptanCode": "HUBKGX", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "4900STPXBOX3", "commonName": "London St Pancras International Rail Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.531781, "lon": -0.127416}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9100STPADOM1", "modes": [], "icsCode": "1001276", "stopType": "NaptanRailAccessArea", "stationNaptan": "910GSTPADOM", "hubNaptanCode": "HUBKGX", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "9100STPADOM1", "commonName": "St Pancras International", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 0.0, "lon": 0.0}], "lat": 51.532514, "lon": -0.126463}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "910GSTPX", "modes": ["national-rail"], "icsCode": "1001276", "stopType": "NaptanRailStation", "stationNaptan": "910GSTPX", "hubNaptanCode": "HUBKGX", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "910GSTPX", "commonName": "London St Pancras International Rail Station", "placeType": "StopPoint", "additionalProperties": [], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9100STPXBOX1", "modes": [], "icsCode": "1001276", "stopType": "NaptanRailAccessArea", "stationNaptan": "910GSTPX", "hubNaptanCode": "HUBKGX", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "9100STPXBOX1", "commonName": "St Pancras International", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 0.0, "lon": 0.0}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9100STPX1", "modes": [], "icsCode": "1001276", "stopType": "NaptanRailAccessArea", "stationNaptan": "910GSTPX", "hubNaptanCode": "HUBKGX", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "9100STPX1", "commonName": "St Pancras International", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 0.0, "lon": 0.0}], "lat": 51.53239, "lon": -0.127189}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "910GSTPXBOX", "modes": ["national-rail"], "icsCode": "1001276", "stopType": "NaptanRailStation", "stationNaptan": "910GSTPXBOX", "hubNaptanCode": "HUBKGX", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "910GSTPXBOX", "commonName": "London St Pancras International LL Rail Station", "placeType": "StopPoint", "additionalProperties": [], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9100STPXBOX2", "modes": [], "icsCode": "1001276", "stopType": "NaptanRailAccessArea", "stationNaptan": "910GSTPXBOX", "hubNaptanCode": "HUBKGX", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "9100STPXBOX2", "commonName": "St Pancras International", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 0.0, "lon": 0.0}], "lat": 51.532168, "lon": -0.127343}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "940GZZLUKSX", "modes": ["tube"], "icsCode": "1000129", "stopType": "NaptanMetroStation", "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"}, {"$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": "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": "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": "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": ["victoria"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "940GZZLUKSX", "lineIdentifier": ["piccadilly"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "940GZZLUKSX", "lineIdentifier": ["hammersmith-city", "circle", "metropolitan"]}, {"$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": ["victoria", "piccadilly", "hammersmith-city", "circle", "northern", "metropolitan"]}], "status": true, "id": "940GZZLUKSX", "commonName": "King's Cross St. Pancras 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": "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": "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": "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": "Help Points", "sourceSystemKey": "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": "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": "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": "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)"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_4"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_14"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_70"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_89"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_431"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_439"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_593"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_793"}, {"$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": "BikePoints_798"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_804"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5237"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5896"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5708"}], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490G00129R", "modes": ["bus"], "icsCode": "1000129", "stopType": "NaptanOnstreetBusCoachStopCluster", "stationNaptan": "490G00129R", "hubNaptanCode": "HUBKGX", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490G00129R", "commonName": "King's Cross Station", "placeType": "StopPoint", "additionalProperties": [], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000129D", "indicator": "Stop D", "stopLetter": "D", "modes": ["bus"], "icsCode": "1000129", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00129R", "hubNaptanCode": "HUBKGX", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000129D", "commonName": "King's Cross Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.530398, "lon": -0.123076}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000129E", "indicator": "Stop E", "stopLetter": "E", "modes": ["bus"], "icsCode": "1000129", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00129R", "hubNaptanCode": "HUBKGX", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000129E", "commonName": "King's Cross Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.530497, "lon": -0.123072}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000129R", "indicator": "Stop R", "stopLetter": "R", "modes": ["bus"], "icsCode": "1000129", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00129R", "hubNaptanCode": "HUBKGX", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000129R", "commonName": "King's Cross Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.530466, "lon": -0.121689}], "lat": 51.530466, "lon": -0.121689}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "4900KNSXMCL0", "indicator": "Entrance 13", "stopLetter": "13", "modes": [], "icsCode": "1000129", "stopType": "NaptanRailEntrance", "stationNaptan": "940GZZLUKSX", "hubNaptanCode": "HUBKGX", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "4900KNSXMCL0", "commonName": "King's Cross Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.530913, "lon": -0.120358}, {"$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": "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}], "lat": 51.530663, "lon": -0.123194}], "lat": 51.531683, "lon": -0.123538}, {"$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": "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": "london-overground", "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": "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", "naptanIdReference": "490000122W", "stationAtcoCode": "490G00122W", "lineIdentifier": ["n18", "18"]}, {"$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", "stationAtcoCode": "910GKENSLG", "lineIdentifier": ["london-overground"]}, {"$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": "bus", "lineIdentifier": ["n18", "18"]}, {"$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": "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": "910GKENSLG", "modes": ["overground"], "icsCode": "1000122", "stopType": "NaptanRailStation", "stationNaptan": "910GKENSLG", "hubNaptanCode": "HUBKNL", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "910GKENSLG", "commonName": "Kensal Green Rail Station", "placeType": "StopPoint", "additionalProperties": [], "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": [], "children": [], "lat": 51.530174, "lon": -0.224799}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9100KENSLG1", "modes": [], "icsCode": "1000122", "stopType": "NaptanRailAccessArea", "stationNaptan": "910GKENSLG", "hubNaptanCode": "HUBKNL", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "9100KENSLG1", "commonName": "Kensal Green Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.530519, "lon": -0.224887}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9100KENSLG0", "modes": [], "icsCode": "1000122", "stopType": "NaptanRailAccessArea", "stationNaptan": "910GKENSLG", "hubNaptanCode": "HUBKNL", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "9100KENSLG0", "commonName": "Kensal Green Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 0.0, "lon": 0.0}], "lat": 51.53054, "lon": -0.225088}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "940GZZLUKSL", "modes": ["tube"], "icsCode": "1000122", "stopType": "NaptanMetroStation", "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": "940GZZLUKSL", "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": "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": "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": "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": "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": "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": "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": "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": "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}], "lat": 51.530539, "lon": -0.225016}], "lat": 51.530545, "lon": -0.22505}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "HUBKNT", "modes": ["tube", "overground", "bus"], "icsCode": "1000124", "stopType": "TransportInterchange", "hubNaptanCode": "HUBKNT", "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"}, {"$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": "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": "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": "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": "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": "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": "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"}, {"$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": "490000124HH", "stationAtcoCode": "490G00124II", "lineIdentifier": ["h9", "223", "h19", "sl10", "183", "114"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490000124II", "stationAtcoCode": "490G00124II", "lineIdentifier": ["223", "sl10", "h18", "183", "114", "h10"]}, {"$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": ["h9", "223", "h19", "sl10", "h18", "183", "114", "h10"]}, {"$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": "910GKTON", "modes": ["overground"], "icsCode": "1000124", "stopType": "NaptanRailStation", "stationNaptan": "910GKTON", "hubNaptanCode": "HUBKNT", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "910GKTON", "commonName": "Kenton Rail Station", "placeType": "StopPoint", "additionalProperties": [], "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": [], "children": [], "lat": 51.582017, "lon": -0.317074}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9100KTON1", "modes": [], "icsCode": "1000124", "stopType": "NaptanRailAccessArea", "stationNaptan": "910GKTON", "hubNaptanCode": "HUBKNT", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "9100KTON1", "commonName": "Kenton Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 0.0, "lon": 0.0}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9100KTON0", "modes": [], "icsCode": "1000124", "stopType": "NaptanRailAccessArea", "stationNaptan": "910GKTON", "hubNaptanCode": "HUBKNT", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "9100KTON0", "commonName": "Kenton Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 0.0, "lon": 0.0}], "lat": 51.581802, "lon": -0.316981}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "940GZZLUKEN", "modes": ["tube"], "icsCode": "1000124", "stopType": "NaptanMetroStation", "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": "940GZZLUKEN", "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": "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": "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": "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": "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": "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"}], "children": [{"$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}], "lat": 51.581756, "lon": -0.31691}], "lat": 51.581786, "lon": -0.316946}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "HUBKPA", "modes": ["national-rail", "tube", "bus", "overground"], "icsCode": "1000170", "stopType": "TransportInterchange", "hubNaptanCode": "HUBKPA", "lines": [{"$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": "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": "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": "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": "london-overground", "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": "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": "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": "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": "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", "naptanIdReference": "490008652C", "stationAtcoCode": "490G08652C", "lineIdentifier": ["28", "n27", "9", "n28", "n9", "27"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490007709S", "stationAtcoCode": "490G00007709", "lineIdentifier": ["28", "n28", "306"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490007709H", "stationAtcoCode": "490G00019922", "lineIdentifier": ["28", "n28", "306"]}, {"$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"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "bus", "lineIdentifier": ["28", "n27", "9", "n28", "n9", "27", "306"]}, {"$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"]}], "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": "910GKENOLYM", "modes": ["overground"], "icsCode": "1000170", "stopType": "NaptanRailStation", "stationNaptan": "910GKENOLYM", "hubNaptanCode": "HUBKPA", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "910GKENOLYM", "commonName": "Kensington (Olympia) Rail Station", "placeType": "StopPoint", "additionalProperties": [], "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": [], "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": [], "children": [], "lat": 51.498199, "lon": -0.209502}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9100KENOLYM1", "modes": [], "icsCode": "1000170", "stopType": "NaptanRailAccessArea", "stationNaptan": "910GKENOLYM", "hubNaptanCode": "HUBKPA", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "9100KENOLYM1", "commonName": "Kensington (Olympia) Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 0.0, "lon": 0.0}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9100KENOLYM0", "modes": [], "icsCode": "1000170", "stopType": "NaptanRailAccessArea", "stationNaptan": "910GKENOLYM", "hubNaptanCode": "HUBKPA", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "9100KENOLYM0", "commonName": "Kensington (Olympia) Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 0.0, "lon": 0.0}], "lat": 51.497899, "lon": -0.210364}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "940GZZLUKOY", "modes": ["tube"], "icsCode": "1000170", "stopType": "NaptanMetroStation", "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": "940GZZLUKOY", "commonName": "Kensington (Olympia) 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": "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": "Help Points", "sourceSystemKey": "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": "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": "Kensington Olympia,Kensington Olympia Station,Olympia Way,LONDON,W14 0NE"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, 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": "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": "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": "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": "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": "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": "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": "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}], "lat": 51.497624, "lon": -0.210015}], "lat": 51.496156, "lon": -0.210502}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "HUBKTN", "modes": ["national-rail", "tube", "bus"], "icsCode": "1000123", "stopType": "TransportInterchange", "hubNaptanCode": "HUBKTN", "lines": [{"$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": "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": "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": "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": "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": "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": "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": "n20", "name": "N20", "uri": "/Line/n20", "type": "Line", "crowding": {"$type": "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": "490000123A", "stationAtcoCode": "490G00123B", "lineIdentifier": ["88", "134", "393", "214", "n20"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490000123B", "stationAtcoCode": "490G00123B", "lineIdentifier": ["88", "134", "214", "n20"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "910GKNTSHTN", "lineIdentifier": ["thameslink", "east-midlands-railway"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "940GZZLUKSH", "lineIdentifier": ["northern"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490000123E", "stationAtcoCode": "490G00123B", "lineIdentifier": ["393"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "bus", "lineIdentifier": ["88", "134", "393", "214", "n20"]}, {"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "national-rail", "lineIdentifier": ["thameslink", "east-midlands-railway"]}, {"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["northern"]}], "status": true, "id": "HUBKTN", "commonName": "Kentish Town", "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": "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": "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": "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": "Payphones", "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": "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": "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"}], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "910GKNTSHTN", "modes": ["national-rail"], "icsCode": "1000123", "stopType": "NaptanRailStation", "stationNaptan": "910GKNTSHTN", "hubNaptanCode": "HUBKTN", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "910GKNTSHTN", "commonName": "Kentish Town Rail Station", "placeType": "StopPoint", "additionalProperties": [], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490G00123B", "modes": ["bus"], "icsCode": "1000123", "stopType": "NaptanOnstreetBusCoachStopCluster", "stationNaptan": "490G00123B", "hubNaptanCode": "HUBKTN", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490G00123B", "commonName": "Kentish Town Station", "placeType": "StopPoint", "additionalProperties": [], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000123A", "indicator": "Stop KB", "stopLetter": "KB", "modes": ["bus"], "icsCode": "1000123", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00123B", "hubNaptanCode": "HUBKTN", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000123A", "commonName": "Kentish Town Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.550211, "lon": -0.140708}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000123B", "indicator": "Stop KF", "stopLetter": "KF", "modes": ["bus"], "icsCode": "1000123", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00123B", "hubNaptanCode": "HUBKTN", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000123B", "commonName": "Kentish Town Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.551366, "lon": -0.140978}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000123E", "indicator": "Stop LG", "stopLetter": "LG", "modes": ["bus"], "icsCode": "1000123", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00123B", "hubNaptanCode": "HUBKTN", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000123E", "commonName": "Kentish Town Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.550922, "lon": -0.139064}], "lat": 51.550922, "lon": -0.139064}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "4900KNTSHTN1", "indicator": "Entrance 1", "stopLetter": "1", "modes": [], "icsCode": "1000123", "stopType": "NaptanRailEntrance", "stationNaptan": "910GKNTSHTN", "hubNaptanCode": "HUBKTN", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "4900KNTSHTN1", "commonName": "Kentish Town Rail Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.550517, "lon": -0.140739}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "4900KNTSHTN2", "indicator": "Entrance 2", "stopLetter": "2", "modes": [], "icsCode": "1000123", "stopType": "NaptanRailEntrance", "stationNaptan": "910GKNTSHTN", "hubNaptanCode": "HUBKTN", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "4900KNTSHTN2", "commonName": "Kentish Town Rail Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.550192, "lon": -0.140074}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "4900KNTSHTN3", "indicator": "Entrance 3", "stopLetter": "3", "modes": [], "icsCode": "1000123", "stopType": "NaptanRailEntrance", "stationNaptan": "910GKNTSHTN", "hubNaptanCode": "HUBKTN", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "4900KNTSHTN3", "commonName": "Kentish Town Rail Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.550724, "lon": -0.140731}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9100KNTSHTN1", "modes": [], "icsCode": "1000123", "stopType": "NaptanRailAccessArea", "stationNaptan": "910GKNTSHTN", "hubNaptanCode": "HUBKTN", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "9100KNTSHTN1", "commonName": "Kentish Town", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 0.0, "lon": 0.0}], "lat": 51.550495, "lon": -0.140365}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "940GZZLUKSH", "modes": ["tube"], "icsCode": "1000123", "stopType": "NaptanMetroStation", "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": "940GZZLUKSH", "commonName": "Kentish Town 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": "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": "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": "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": "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": "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": "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": "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"}], "children": [{"$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}], "lat": 51.550312, "lon": -0.140733}], "lat": 51.550409, "lon": -0.140545}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "HUBKWG", "modes": ["bus", "tube", "overground"], "icsCode": "1000125", "stopType": "TransportInterchange", "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"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "london-overground", "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": "110", "name": "110", "uri": "/Line/110", "type": "Line", "crowding": {"$type": "Tfl.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"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "910GKEWGRDN", "lineIdentifier": ["london-overground"]}, {"$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"]}], "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": "overground", "lineIdentifier": ["london-overground"]}, {"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "bus", "lineIdentifier": ["110"]}], "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": "910GKEWGRDN", "modes": ["overground"], "icsCode": "1000125", "stopType": "NaptanRailStation", "stationNaptan": "910GKEWGRDN", "hubNaptanCode": "HUBKWG", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "910GKEWGRDN", "commonName": "Kew Gardens Rail Station", "placeType": "StopPoint", "additionalProperties": [], "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": [], "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": [], "children": [], "lat": 51.477014, "lon": -0.284811}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9100KEWGRDN0", "modes": [], "icsCode": "1000125", "stopType": "NaptanRailAccessArea", "stationNaptan": "910GKEWGRDN", "hubNaptanCode": "HUBKWG", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "9100KEWGRDN0", "commonName": "Kew Gardens Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 0.0, "lon": 0.0}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9100KEWGRDN1", "modes": [], "icsCode": "1000125", "stopType": "NaptanRailAccessArea", "stationNaptan": "910GKEWGRDN", "hubNaptanCode": "HUBKWG", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "9100KEWGRDN1", "commonName": "Kew Gardens Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 0.0, "lon": 0.0}], "lat": 51.477073, "lon": -0.285054}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "940GZZLUKWG", "modes": ["tube"], "icsCode": "1000125", "stopType": "NaptanMetroStation", "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": "940GZZLUKWG", "commonName": "Kew Gardens 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": "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": "3+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": "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": "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": "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": "Boarding Ramps", "sourceSystemKey": "StaticObjects", "value": "yes District line 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": "yes (male, female)"}, {"$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"}], "children": [{"$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}], "lat": 51.477058, "lon": -0.285241}], "lat": 51.477069, "lon": -0.285148}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "HUBLBG", "modes": ["tube", "bus", "national-rail"], "icsCode": "1000139", "stopType": "TransportInterchange", "hubNaptanCode": "HUBLBG", "lines": [{"$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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "21", "name": "21", "uri": "/Line/21", "type": "Line", "crowding": {"$type": "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": "490000139A", "stationAtcoCode": "490G000970", "lineIdentifier": ["n21", "n343"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490000139M", "stationAtcoCode": "490G000922", "lineIdentifier": ["n21", "35", "n199", "133", "344", "141", "43", "n133", "17", "149", "388", "21"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490000139Y", "stationAtcoCode": "490G000922", "lineIdentifier": ["n21", "35", "n199", "133", "n133", "21"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490000139R", "stationAtcoCode": "490G00139R", "lineIdentifier": ["n199", "n381", "343", "381"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490000139S", "stationAtcoCode": "490G00139R", "lineIdentifier": ["n199", "n381", "343", "381"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "910GLNDNBDC", "lineIdentifier": ["southeastern", "thameslink"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "910GLNDNBDC", "lineIdentifier": ["southeastern", "thameslink", "southern"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490000139CZ", "stationAtcoCode": "490G000970", "lineIdentifier": ["141", "43"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490019954L", "stationAtcoCode": "490G000970", "lineIdentifier": ["n343", "149", "388"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "940GZZLULNB", "lineIdentifier": ["jubilee"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "940GZZLULNB", "lineIdentifier": ["northern"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490000139B", "stationAtcoCode": "490G000970", "lineIdentifier": ["17"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490019954J", "stationAtcoCode": "490G000970", "lineIdentifier": ["149", "388"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "bus", "lineIdentifier": ["n21", "35", "n199", "133", "344", "n381", "141", "343", "43", "n343", "n133", "381", "17", "149", "388", "21"]}, {"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "national-rail", "lineIdentifier": ["southeastern", "thameslink", "southern"]}, {"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["jubilee", "northern"]}], "status": true, "id": "HUBLBG", "commonName": "London Bridge", "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": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_10"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_194"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_276"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_587"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_706"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_732"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5471"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5578"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5948"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5876"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.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": "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": "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": "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": "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": "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"}], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490G000970", "modes": ["bus"], "icsCode": "1019954", "stopType": "NaptanBusCoachStation", "stationNaptan": "490G000970", "hubNaptanCode": "HUBLBG", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490G000970", "commonName": "London Bridge Station", "placeType": "StopPoint", "additionalProperties": [], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000139A", "indicator": "Stop D", "stopLetter": "D", "modes": ["bus"], "icsCode": "1019954", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G000970", "hubNaptanCode": "HUBLBG", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000139A", "commonName": "London Bridge Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.504977, "lon": -0.087491}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000139B", "indicator": "Stop B", "stopLetter": "B", "modes": ["bus"], "icsCode": "1019954", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G000970", "hubNaptanCode": "HUBLBG", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000139B", "commonName": "London Bridge Bus Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.505169, "lon": -0.086576}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000139CZ", "indicator": "Stop C", "stopLetter": "C", "modes": ["bus"], "icsCode": "1019954", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G000970", "hubNaptanCode": "HUBLBG", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000139CZ", "commonName": "London Bridge Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.505134, "lon": -0.086635}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490019954J", "indicator": "Stop", "modes": ["bus"], "icsCode": "1019954", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G000970", "hubNaptanCode": "HUBLBG", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490019954J", "commonName": "London Bridge Bus Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.50544, "lon": -0.086651}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490019954K", "indicator": "Stop", "modes": ["bus"], "icsCode": "1019954", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G000970", "hubNaptanCode": "HUBLBG", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490019954K", "commonName": "London Bridge Bus Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.505118, "lon": -0.087284}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490019954L", "indicator": "Stop A", "stopLetter": "A", "modes": ["bus"], "icsCode": "1019954", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G000970", "hubNaptanCode": "HUBLBG", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490019954L", "commonName": "London Bridge Bus Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.505303, "lon": -0.086541}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490019954S", "indicator": "Stop", "modes": ["bus"], "icsCode": "1019954", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G000970", "hubNaptanCode": "HUBLBG", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490019954S", "commonName": "London Bridge Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.505562, "lon": -0.086934}], "lat": 51.505303, "lon": -0.086541}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490G000922", "modes": ["bus"], "icsCode": "1018542", "stopType": "NaptanOnstreetBusCoachStopPair", "stationNaptan": "490G000922", "hubNaptanCode": "HUBLBG", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490G000922", "commonName": "London Bridge", "placeType": "StopPoint", "additionalProperties": [], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000139M", "indicator": "Stop M", "stopLetter": "M", "modes": ["bus"], "icsCode": "1018542", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G000922", "hubNaptanCode": "HUBLBG", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000139M", "commonName": "London Bridge", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.506699, "lon": -0.088327}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000139Y", "indicator": "Stop Y", "stopLetter": "Y", "modes": ["bus"], "icsCode": "1018542", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G000922", "hubNaptanCode": "HUBLBG", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000139Y", "commonName": "London Bridge", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.506579, "lon": -0.088116}], "lat": 51.506579, "lon": -0.088116}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "910GLNDNBDC", "modes": ["national-rail"], "icsCode": "1000139", "stopType": "NaptanRailStation", "stationNaptan": "910GLNDNBDC", "hubNaptanCode": "HUBLBG", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "910GLNDNBDC", "commonName": "London Bridge Rail Station", "placeType": "StopPoint", "additionalProperties": [], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490G00139C", "modes": ["bus"], "icsCode": "1000139", "stopType": "NaptanOnstreetBusCoachStopCluster", "stationNaptan": "910GLNDNBDC", "hubNaptanCode": "HUBLBG", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490G00139C", "commonName": "London Bridge Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.505019, "lon": -0.086092}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490G00139M", "modes": ["bus"], "icsCode": "1000139", "stopType": "NaptanOnstreetBusCoachStopCluster", "stationNaptan": "910GLNDNBDC", "hubNaptanCode": "HUBLBG", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490G00139M", "commonName": "London Bridge Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.505019, "lon": -0.086092}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490G00139R", "modes": ["bus"], "icsCode": "1000139", "stopType": "NaptanOnstreetBusCoachStopCluster", "stationNaptan": "490G00139R", "hubNaptanCode": "HUBLBG", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490G00139R", "commonName": "London Bridge Station", "placeType": "StopPoint", "additionalProperties": [], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000139R", "indicator": "Stop R", "stopLetter": "R", "modes": ["bus"], "icsCode": "1000139", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00139R", "hubNaptanCode": "HUBLBG", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000139R", "commonName": "London Bridge Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.505974, "lon": -0.087378}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000139S", "indicator": "Stop S", "stopLetter": "S", "modes": ["bus"], "icsCode": "1000139", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00139R", "hubNaptanCode": "HUBLBG", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000139S", "commonName": "London Bridge Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.505688, "lon": -0.085877}], "lat": 51.505688, "lon": -0.085877}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "910GLNDNBDE", "modes": [], "stopType": "NaptanRailStation", "stationNaptan": "910GLNDNBDE", "hubNaptanCode": "HUBLBG", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "910GLNDNBDE", "commonName": "London Bridge Rail Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.505109, "lon": -0.086088}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "4900LNDNBDC0", "indicator": "Entrance 4", "stopLetter": "4", "modes": [], "icsCode": "1000139", "stopType": "NaptanRailEntrance", "stationNaptan": "910GLNDNBDC", "hubNaptanCode": "HUBLBG", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "4900LNDNBDC0", "commonName": "London Bridge Rail Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.505327, "lon": -0.086886}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9100LNDNBDE1", "modes": [], "icsCode": "1000139", "stopType": "NaptanRailAccessArea", "stationNaptan": "910GLNDNBDC", "hubNaptanCode": "HUBLBG", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "9100LNDNBDE1", "commonName": "London Bridge Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 0.0, "lon": 0.0}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9100LNDNBDC1", "modes": [], "icsCode": "1000139", "stopType": "NaptanRailAccessArea", "stationNaptan": "910GLNDNBDC", "hubNaptanCode": "HUBLBG", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "9100LNDNBDC1", "commonName": "London Bridge Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 0.0, "lon": 0.0}], "lat": 51.505019, "lon": -0.086092}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "940GZZLULNB", "modes": ["tube"], "icsCode": "1000139", "stopType": "NaptanMetroStation", "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"}, {"$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": ["northern"]}, {"$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": ["northern", "jubilee"]}], "status": true, "id": "940GZZLULNB", "commonName": "London Bridge 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": "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": "Help Points", "sourceSystemKey": "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": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$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": "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": "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": "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": "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": "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)"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_10"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_194"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_276"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_732"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5471"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5578"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5502"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5948"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5876"}], "children": [{"$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": "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}], "lat": 51.505721, "lon": -0.088873}], "lat": 51.505881, "lon": -0.086807}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "HUBLST", "modes": ["overground", "bus", "tube", "national-rail", "elizabeth-line"], "icsCode": "1000138", "stopType": "TransportInterchange", "hubNaptanCode": "HUBLST", "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "london-overground", "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": "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": "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": "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", "naptanIdReference": "490000138E", "stationAtcoCode": "490G00138E", "lineIdentifier": ["149", "n242", "42"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490000138K", "stationAtcoCode": "490G00138G", "lineIdentifier": ["149", "388", "35"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490000138F", "stationAtcoCode": "490G00138E", "lineIdentifier": ["388", "78", "n26", "n8", "26", "135", "8", "205", "35", "n205"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490000138L", "stationAtcoCode": "490G00138G", "lineIdentifier": ["78", "n26", "n8", "n242", "26", "135", "8", "42", "205", "n205"]}, {"$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": "490000138N", "stationAtcoCode": "490G00138W", "lineIdentifier": ["153", "n133", "344"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "910GLIVST", "lineIdentifier": ["greater-anglia", "c2c", "elizabeth", "london-overground"]}, {"$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": ["metropolitan", "circle", "hammersmith-city"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "910GLIVSTLL", "lineIdentifier": ["elizabeth"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490000138LS", "stationAtcoCode": "490G00138W", "lineIdentifier": ["344"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "bus", "lineIdentifier": ["149", "388", "78", "n26", "153", "n8", "n242", "26", "135", "8", "n133", "42", "344", "205", "35", "n205"]}, {"$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": "tube", "lineIdentifier": ["central", "metropolitan", "circle", "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": "HUBLST", "commonName": "Liverpool Street", "placeType": "StopPoint", "additionalProperties": [{"$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_5914"}, {"$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_509"}, {"$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_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_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": "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"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.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"}], "children": [{"$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": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "910GLIVST", "commonName": "London Liverpool Street Rail Station", "placeType": "StopPoint", "additionalProperties": [], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9100LIVST0", "modes": [], "icsCode": "1000138", "stopType": "NaptanRailAccessArea", "stationNaptan": "910GLIVST", "hubNaptanCode": "HUBLST", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "9100LIVST0", "commonName": "Liverpool Street Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 0.0, "lon": 0.0}], "lat": 51.517991, "lon": -0.081426}, {"$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": [{"$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"}, {"$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": ["hammersmith-city", "circle", "metropolitan"]}, {"$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": ["hammersmith-city", "circle", "metropolitan", "central"]}], "status": true, "id": "940GZZLULVT", "commonName": "Liverpool Street Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$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": "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_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_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"}, {"$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": "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)"}, {"$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_140"}, {"$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": "ServiceInfo", "key": "Night", "sourceSystemKey": "TransXchangeETL", "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": "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": "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": "Car park", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$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": "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": "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": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "5"}], "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": [{"$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": "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}], "lat": 51.517372, "lon": -0.083182}], "lat": 51.51794, "lon": -0.083162}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "HUBMYB", "modes": ["tube", "bus", "national-rail"], "icsCode": "1000145", "stopType": "TransportInterchange", "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"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "chiltern-railways", "name": "Chiltern Railways", "uri": "/Line/chiltern-railways", "type": "Line", "crowding": {"$type": "Tfl.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"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "910GMARYLBN", "lineIdentifier": ["chiltern-railways"]}], "lineModeGroups": [{"$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": ["chiltern-railways"]}], "status": true, "id": "HUBMYB", "commonName": "Marylebone", "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": "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": "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": "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": "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": "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": "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": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_43"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_45"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_114"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_182"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_201"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_208"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_367"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_396"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_605"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_759"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5742"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_4404"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5823"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5894"}], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "910GMARYLBN", "modes": ["national-rail"], "icsCode": "1000145", "stopType": "NaptanRailStation", "stationNaptan": "910GMARYLBN", "hubNaptanCode": "HUBMYB", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "910GMARYLBN", "commonName": "London Marylebone Rail Station", "placeType": "StopPoint", "additionalProperties": [], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490G00145L", "modes": ["bus"], "icsCode": "1000145", "stopType": "NaptanOnstreetBusCoachStopCluster", "stationNaptan": "910GMARYLBN", "hubNaptanCode": "HUBMYB", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490G00145L", "commonName": "Marylebone", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.522524, "lon": -0.162911}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490G15502N", "modes": ["bus"], "icsCode": "1000145", "stopType": "NaptanOnstreetBusCoachStopCluster", "stationNaptan": "910GMARYLBN", "hubNaptanCode": "HUBMYB", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490G15502N", "commonName": "Marylebone", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.522524, "lon": -0.162911}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "4900MARYLBN", "indicator": "Entrance 1", "stopLetter": "1", "modes": [], "icsCode": "1000145", "stopType": "NaptanRailEntrance", "stationNaptan": "910GMARYLBN", "hubNaptanCode": "HUBMYB", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "4900MARYLBN", "commonName": "London Marylebone Rail Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.522319, "lon": -0.163164}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9100MARYLBN0", "modes": [], "icsCode": "1000145", "stopType": "NaptanRailAccessArea", "stationNaptan": "910GMARYLBN", "hubNaptanCode": "HUBMYB", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "9100MARYLBN0", "commonName": "Marylebone", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 0.0, "lon": 0.0}], "lat": 51.522524, "lon": -0.162911}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "940GZZLUMYB", "modes": ["tube"], "icsCode": "1000145", "stopType": "NaptanMetroStation", "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": "940GZZLUMYB", "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": "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": "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": "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."}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_43"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_45"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_114"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_182"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_201"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_208"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_396"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_605"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_759"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5742"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_4404"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5823"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5894"}], "children": [{"$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}], "lat": 51.522322, "lon": -0.163207}], "lat": 51.521602, "lon": -0.163013}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "HUBNGW", "modes": ["bus", "cable-car", "tube"], "icsCode": "1000160", "stopType": "TransportInterchange", "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"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "472", "name": "472", "uri": "/Line/472", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "132", "name": "132", "uri": "/Line/132", "type": "Line", "crowding": {"$type": "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": "422", "name": "422", "uri": "/Line/422", "type": "Line", "crowding": {"$type": "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": "161", "name": "161", "uri": "/Line/161", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "335", "name": "335", "uri": "/Line/335", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "129", "name": "129", "uri": "/Line/129", "type": "Line", "crowding": {"$type": "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-cable-car", "name": "London Cable Car", "uri": "/Line/london-cable-car", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "180", "name": "180", "uri": "/Line/180", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "486", "name": "486", "uri": "/Line/486", "type": "Line", "crowding": {"$type": "Tfl.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"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490010374E", "stationAtcoCode": "490G000682", "lineIdentifier": ["472", "132", "422", "188", "161", "335", "129", "180", "486"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490010374A", "stationAtcoCode": "490G000682", "lineIdentifier": ["472", "161", "180"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490010374D", "stationAtcoCode": "490G000682", "lineIdentifier": ["132"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490010374B", "stationAtcoCode": "490G000682", "lineIdentifier": ["108", "422", "335", "486"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490010374C", "stationAtcoCode": "490G000682", "lineIdentifier": ["108", "188", "129"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "940GZZALGWP", "lineIdentifier": ["london-cable-car"]}], "lineModeGroups": [{"$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": ["472", "132", "108", "422", "188", "161", "335", "129", "180", "486"]}, {"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "cable-car", "lineIdentifier": ["london-cable-car"]}], "status": true, "id": "HUBNGW", "commonName": "North Greenwich", "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": "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": "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": "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": "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": "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": "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_5930"}], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490G000682", "modes": ["bus"], "icsCode": "1010374", "stopType": "NaptanOnstreetBusCoachStopCluster", "stationNaptan": "490G000682", "hubNaptanCode": "HUBNGW", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490G000682", "commonName": "North Greenwich Station", "placeType": "StopPoint", "additionalProperties": [], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490010374A", "indicator": "Stop A", "stopLetter": "A", "modes": ["bus"], "icsCode": "1010374", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G000682", "hubNaptanCode": "HUBNGW", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490010374A", "commonName": "North Greenwich Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.499716, "lon": 0.004643}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490010374B", "indicator": "Stop B", "stopLetter": "B", "modes": ["bus"], "icsCode": "1010374", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G000682", "hubNaptanCode": "HUBNGW", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490010374B", "commonName": "North Greenwich Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.499666, "lon": 0.004367}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490010374C", "indicator": "Stop C", "stopLetter": "C", "modes": ["bus"], "icsCode": "1010374", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G000682", "hubNaptanCode": "HUBNGW", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490010374C", "commonName": "North Greenwich Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.499654, "lon": 0.00405}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490010374D", "indicator": "Stop D", "stopLetter": "D", "modes": ["bus"], "icsCode": "1010374", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G000682", "hubNaptanCode": "HUBNGW", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490010374D", "commonName": "North Greenwich Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.500267, "lon": 0.00291}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490010374E", "indicator": "Stop E", "stopLetter": "E", "modes": ["bus"], "icsCode": "1010374", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G000682", "hubNaptanCode": "HUBNGW", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490010374E", "commonName": "North Greenwich Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.500609, "lon": 0.002867}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490010374F", "indicator": "Stop F", "stopLetter": "F", "modes": ["bus"], "icsCode": "1010374", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G000682", "hubNaptanCode": "HUBNGW", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490010374F", "commonName": "North Greenwich Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.49978, "lon": 0.002456}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490010374G", "indicator": "Stop G", "stopLetter": "G", "modes": ["bus"], "icsCode": "1010374", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G000682", "hubNaptanCode": "HUBNGW", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490010374G", "commonName": "North Greenwich Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.499528, "lon": 0.002445}], "lat": 51.499528, "lon": 0.002445}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "940GZZALGWP", "modes": ["cable-car"], "icsCode": "1020079", "stopType": "NaptanMetroStation", "stationNaptan": "940GZZALGWP", "hubNaptanCode": "HUBNGW", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "940GZZALGWP", "commonName": "IFS Cloud Greenwich Peninsula", "placeType": "StopPoint", "additionalProperties": [], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "4900ZZALGWP0", "indicator": "Entrance 1", "stopLetter": "1", "modes": ["cable-car"], "icsCode": "1020079", "stopType": "NaptanMetroEntrance", "stationNaptan": "940GZZALGWP", "hubNaptanCode": "HUBNGW", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "4900ZZALGWP0", "commonName": "IFS Cloud Greenwich Peninsula", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.499838, "lon": 0.007977}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZALGWP1", "modes": [], "icsCode": "1020079", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZALGWP", "hubNaptanCode": "HUBNGW", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "9400ZZALGWP1", "commonName": "IFS Cloud Greenwich Peninsula", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 0.0, "lon": 0.0}], "lat": 51.499573, "lon": 0.00834}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "940GZZLUNGW", "modes": ["tube"], "icsCode": "1000160", "stopType": "NaptanMetroStation", "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": "940GZZLUNGW", "commonName": "North Greenwich 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": "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": "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": "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": "Escalators", "sourceSystemKey": "StaticObjects", "value": "9"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, 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": "WiFi", "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 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": "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": "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": "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": "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": "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": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5930"}, {"$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": [{"$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": "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 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": "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": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "3"}, {"$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": "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": "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": "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": "Escalators", "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": "Car park", "sourceSystemKey": "StaticObjects", "value": "yes"}], "children": [], "lat": 51.500382, "lon": 0.005191}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUNGW2", "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": "9400ZZLUNGW2", "commonName": "North Greenwich 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": "Toilets", "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, 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": "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": "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": "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": "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": "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"}], "children": [], "lat": 51.500425, "lon": 0.005308}], "lat": 51.50047, "lon": 0.004287}], "lat": 51.500474, "lon": 0.004295}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "HUBNWB", "modes": ["tube", "bus", "overground"], "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": "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": "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": "london-overground", "name": "London Overground", "uri": "/Line/london-overground", "type": "Line", "crowding": {"$type": "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": "490000163B", "stationAtcoCode": "490G00163B", "lineIdentifier": ["483", "245"]}, {"$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", "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": "910GNWEMBLY", "modes": ["overground"], "icsCode": "1000163", "stopType": "NaptanRailStation", "stationNaptan": "910GNWEMBLY", "hubNaptanCode": "HUBNWB", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "910GNWEMBLY", "commonName": "North Wembley Rail Station", "placeType": "StopPoint", "additionalProperties": [], "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": [], "children": [], "lat": 51.562828, "lon": -0.30399}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9100NWEMBLY2", "modes": [], "icsCode": "1000163", "stopType": "NaptanRailAccessArea", "stationNaptan": "910GNWEMBLY", "hubNaptanCode": "HUBNWB", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "9100NWEMBLY2", "commonName": "North Wembley Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 0.0, "lon": 0.0}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9100NWEMBLY1", "modes": [], "icsCode": "1000163", "stopType": "NaptanRailAccessArea", "stationNaptan": "910GNWEMBLY", "hubNaptanCode": "HUBNWB", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "9100NWEMBLY1", "commonName": "North Wembley Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 0.0, "lon": 0.0}], "lat": 51.562596, "lon": -0.303984}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "940GZZLUNWY", "modes": ["tube"], "icsCode": "1000163", "stopType": "NaptanMetroStation", "stationNaptan": "940GZZLUNWY", "hubNaptanCode": "HUBNWB", "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": "940GZZLUNWY", "lineIdentifier": ["bakerloo"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["bakerloo"]}], "status": true, "id": "940GZZLUNWY", "commonName": "North Wembley 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": "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": "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": "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": "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": "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": "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": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 601 4867"}], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUNWY", "modes": ["tube"], "icsCode": "1000163", "stopType": "NaptanMetroAccessArea", "stationNaptan": "940GZZLUNWY", "hubNaptanCode": "HUBNWB", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "9400ZZLUNWY", "commonName": "North Wembley 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": "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": "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": "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": "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": "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": "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": "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.562551, "lon": -0.304}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUNWY1", "modes": ["tube"], "icsCode": "1000163", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUNWY", "hubNaptanCode": "HUBNWB", "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": "940GZZLUNWY", "lineIdentifier": ["bakerloo"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["bakerloo"]}], "status": true, "id": "9400ZZLUNWY1", "commonName": "North Wembley 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": "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": "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": "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": "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"}], "children": [], "lat": 51.562322, "lon": -0.303691}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUNWY2", "indicator": "southbound", "modes": ["tube"], "icsCode": "1000163", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUNWY", "hubNaptanCode": "HUBNWB", "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": "940GZZLUNWY", "lineIdentifier": ["bakerloo"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["bakerloo"]}], "status": true, "id": "9400ZZLUNWY2", "commonName": "North Wembley 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": "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": "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": "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": "Toilets", "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": "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"}], "children": [], "lat": 51.5628, "lon": -0.303774}], "lat": 51.562551, "lon": -0.304}], "lat": 51.56258, "lon": -0.303992}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "HUBOLD", "modes": ["tube", "bus", "national-rail"], "icsCode": "1000169", "stopType": "TransportInterchange", "hubNaptanCode": "HUBOLD", "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "n205", "name": "N205", "uri": "/Line/n205", "type": "Line", "crowding": {"$type": "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": "490015194F", "stationAtcoCode": "490G15194G", "lineIdentifier": ["243", "55", "n55"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490000169L", "stationAtcoCode": "490G15194G", "lineIdentifier": ["243", "55", "135", "n55", "205", "n205"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "910GOLDST", "lineIdentifier": ["great-northern"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "940GZZLUODS", "lineIdentifier": ["northern"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490000169ZA", "stationAtcoCode": "490G15194G", "lineIdentifier": ["21", "n271", "214", "141", "43"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490015193S", "stationAtcoCode": "490G15194G", "lineIdentifier": ["135"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490010108C", "stationAtcoCode": "490G15194G", "lineIdentifier": ["214", "205", "43", "n205"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "bus", "lineIdentifier": ["243", "55", "21", "n271", "135", "214", "n55", "205", "141", "43", "n205"]}, {"$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": "tube", "lineIdentifier": ["northern"]}], "status": true, "id": "HUBOLD", "commonName": "Old Street", "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": "Toilets", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Old Street Station,London Underground Ltd.,Old St,London,EC1Y 1BE"}, {"$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": "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": "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": "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": "Help 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": "BikePoints_30"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_32"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_73"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_119"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_319"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_323"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5116"}], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "910GOLDST", "modes": ["national-rail"], "icsCode": "1000169", "stopType": "NaptanRailStation", "stationNaptan": "910GOLDST", "hubNaptanCode": "HUBOLD", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "910GOLDST", "commonName": "Old Street Rail Station", "placeType": "StopPoint", "additionalProperties": [], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490G15194G", "modes": ["bus"], "icsCode": "1000169", "stopType": "NaptanOnstreetBusCoachStopCluster", "stationNaptan": "490G15194G", "hubNaptanCode": "HUBOLD", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490G15194G", "commonName": "Old Street Station", "placeType": "StopPoint", "additionalProperties": [], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000169L", "indicator": "Stop L", "stopLetter": "L", "modes": ["bus"], "icsCode": "1000169", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G15194G", "hubNaptanCode": "HUBOLD", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000169L", "commonName": "Old Street Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.526085, "lon": -0.085396}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000169ZA", "indicator": "Stop N", "stopLetter": "N", "modes": ["bus"], "icsCode": "1000169", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G15194G", "hubNaptanCode": "HUBOLD", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000169ZA", "commonName": "Old Street Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.523764, "lon": -0.087569}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490010108C", "indicator": "Stop C", "stopLetter": "C", "modes": ["bus"], "icsCode": "1000169", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G15194G", "hubNaptanCode": "HUBOLD", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490010108C", "commonName": "Old Street Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.527338, "lon": -0.088357}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490015193S", "indicator": "Stand B", "stopLetter": "B", "modes": ["bus"], "icsCode": "1000169", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G15194G", "hubNaptanCode": "HUBOLD", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490015193S", "commonName": "Old Street Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.527186, "lon": -0.087887}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490015194F", "indicator": "Stop F", "stopLetter": "F", "modes": ["bus"], "icsCode": "1000169", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G15194G", "hubNaptanCode": "HUBOLD", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490015194F", "commonName": "Old Street Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.525566, "lon": -0.088863}], "lat": 51.527338, "lon": -0.088357}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "4900OLDST3", "indicator": "Entrance 1", "stopLetter": "1", "modes": [], "icsCode": "1000169", "stopType": "NaptanRailEntrance", "stationNaptan": "910GOLDST", "hubNaptanCode": "HUBOLD", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "4900OLDST3", "commonName": "Old Street Rail Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.525579, "lon": -0.086917}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "4900OLDST5", "indicator": "Entrance 2", "stopLetter": "2", "modes": [], "icsCode": "1000169", "stopType": "NaptanRailEntrance", "stationNaptan": "910GOLDST", "hubNaptanCode": "HUBOLD", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "4900OLDST5", "commonName": "Old Street Rail Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.525278, "lon": -0.087765}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "4900OLDST6", "indicator": "Entrance 3", "stopLetter": "3", "modes": [], "icsCode": "1000169", "stopType": "NaptanRailEntrance", "stationNaptan": "910GOLDST", "hubNaptanCode": "HUBOLD", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "4900OLDST6", "commonName": "Old Street Rail Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.525463, "lon": -0.088075}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "4900OLDST8", "indicator": "Entrance 4", "stopLetter": "4", "modes": [], "icsCode": "1000169", "stopType": "NaptanRailEntrance", "stationNaptan": "910GOLDST", "hubNaptanCode": "HUBOLD", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "4900OLDST8", "commonName": "Old Street Rail Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.525885, "lon": -0.088028}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9100OLDST0", "modes": [], "icsCode": "1000169", "stopType": "NaptanRailAccessArea", "stationNaptan": "910GOLDST", "hubNaptanCode": "HUBOLD", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "9100OLDST0", "commonName": "Old Street", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 0.0, "lon": 0.0}], "lat": 51.525832, "lon": -0.088535}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "940GZZLUODS", "modes": ["tube"], "icsCode": "1000169", "stopType": "NaptanMetroStation", "stationNaptan": "940GZZLUODS", "hubNaptanCode": "HUBOLD", "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": "940GZZLUODS", "lineIdentifier": ["northern"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["northern"]}], "status": true, "id": "940GZZLUODS", "commonName": "Old 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": "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": "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": "Toilets", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Old Street Station,London Underground Ltd.,Old St,London,EC1Y 1BE"}, {"$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": "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": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_119"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_32"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_73"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.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"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_323"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_319"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5116"}], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUODS", "modes": ["tube"], "icsCode": "1000169", "stopType": "NaptanMetroAccessArea", "stationNaptan": "940GZZLUODS", "hubNaptanCode": "HUBOLD", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "9400ZZLUODS", "commonName": "Old Street 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": "Help Points", "sourceSystemKey": "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": "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": "Address", "sourceSystemKey": "StaticObjects", "value": "Old Street Station,London Underground Ltd.,Old St,London,EC1Y 1BE"}, {"$type": "Tfl.Api.Presentation.Entities.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": "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.525864, "lon": -0.08777}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUODS1", "modes": ["tube"], "icsCode": "1000169", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUODS", "hubNaptanCode": "HUBOLD", "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": "940GZZLUODS", "lineIdentifier": ["northern"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["northern"]}], "status": true, "id": "9400ZZLUODS1", "commonName": "Old 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": "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": "Address", "sourceSystemKey": "StaticObjects", "value": "Old Street Station,London Underground Ltd.,Old St,London,EC1Y 1BE"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.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": "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": "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": "Geo", "key": "Zone", "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": "Lifts", "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.524988, "lon": -0.087547}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUODS2", "modes": ["tube"], "icsCode": "1000169", "stopType": "NaptanRailAccessArea", "stationNaptan": "940GZZLUODS", "hubNaptanCode": "HUBOLD", "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": "940GZZLUODS", "lineIdentifier": ["northern"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["northern"]}], "status": true, "id": "9400ZZLUODS2", "commonName": "Old Street 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": "Old Street Station,London Underground Ltd.,Old St,London,EC1Y 1BE"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.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": "Help Points", "sourceSystemKey": "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": "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": "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": "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": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "1"}], "children": [], "lat": 51.524979, "lon": -0.087547}], "lat": 51.525864, "lon": -0.08777}], "lat": 51.526065, "lon": -0.088193}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "HUBPAD", "modes": ["elizabeth-line", "national-rail", "tube", "bus"], "icsCode": "1000174", "stopType": "TransportInterchange", "hubNaptanCode": "HUBPAD", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "7", "name": "7", "uri": "/Line/7", "type": "Line", "crowding": {"$type": "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": "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": "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": "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": "heathrow-express", "name": "Heathrow Express", "uri": "/Line/heathrow-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": "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": "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": "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": "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": "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": "great-western-railway", "name": "Great Western Railway", "uri": "/Line/great-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": "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": "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": "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": "205", "name": "205", "uri": "/Line/205", "type": "Line", "crowding": {"$type": "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": "490005166Z", "stationAtcoCode": "490G000450", "lineIdentifier": ["7", "23", "36", "n205", "n7", "16", "205"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490001221H", "stationAtcoCode": "490G01221H", "lineIdentifier": ["7", "23", "n27", "36", "n205", "n7", "27", "16", "205"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490001221F", "stationAtcoCode": "490G01221H", "lineIdentifier": ["7", "23", "n27", "36", "n205", "n7", "27", "205"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490006321D", "stationAtcoCode": "490G000450", "lineIdentifier": ["7", "46", "23", "n27", "36", "n7", "27"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "910GPADTON", "lineIdentifier": ["heathrow-express", "great-western-railway", "elizabeth"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "940GZZLUPAC", "lineIdentifier": ["district", "circle"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "940GZZLUPAH", "lineIdentifier": ["hammersmith-city", "circle"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "940GZZLUPAH", "lineIdentifier": ["hammersmith-city"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "910GPADTLL", "lineIdentifier": ["elizabeth"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "940GZZLUPAC", "lineIdentifier": ["bakerloo"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "bus", "lineIdentifier": ["7", "46", "23", "n27", "36", "n205", "n7", "27", "16", "205"]}, {"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "national-rail", "lineIdentifier": ["heathrow-express", "great-western-railway"]}, {"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["district", "hammersmith-city", "circle", "bakerloo"]}, {"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "elizabeth-line", "lineIdentifier": ["elizabeth"]}], "status": true, "id": "HUBPAD", "commonName": "Paddington", "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, 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": "4"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.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": "Gates", "sourceSystemKey": "StaticObjects", "value": "24"}, {"$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": "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": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "3"}, {"$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": "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": "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": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_186"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_265"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_279"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_290"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_330"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_370"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_397"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_752"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5967"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5487"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5711"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5434"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5499"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5488"}], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490G000450", "modes": ["bus"], "icsCode": "1005166", "stopType": "NaptanOnstreetBusCoachStopPair", "stationNaptan": "490G000450", "hubNaptanCode": "HUBPAD", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490G000450", "commonName": "Paddington Stn / Eastbourne Terrace", "placeType": "StopPoint", "additionalProperties": [], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490005166Z", "indicator": "Stop E", "stopLetter": "E", "modes": ["bus"], "icsCode": "1005166", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G000450", "hubNaptanCode": "HUBPAD", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490005166Z", "commonName": "Paddington Stn / Eastbourne Terrace", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.516475, "lon": -0.178216}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490006321D", "indicator": "Stop D", "stopLetter": "D", "modes": ["bus"], "icsCode": "1005166", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G000450", "hubNaptanCode": "HUBPAD", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490006321D", "commonName": "Paddington Stn / Eastbourne Terrace", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.516947, "lon": -0.179033}], "lat": 51.516947, "lon": -0.179033}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "910GPADTLL", "modes": ["elizabeth-line"], "icsCode": "1001221", "stopType": "NaptanRailStation", "stationNaptan": "910GPADTLL", "hubNaptanCode": "HUBPAD", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "910GPADTLL", "commonName": "Paddington", "placeType": "StopPoint", "additionalProperties": [], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9100PADTLL0", "modes": [], "icsCode": "1001221", "stopType": "NaptanRailAccessArea", "stationNaptan": "910GPADTLL", "hubNaptanCode": "HUBPAD", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "9100PADTLL0", "commonName": "Paddington Rail Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 0.0, "lon": 0.0}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9100PADTLL1", "modes": [], "icsCode": "1001221", "stopType": "NaptanRailAccessArea", "stationNaptan": "910GPADTLL", "hubNaptanCode": "HUBPAD", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "9100PADTLL1", "commonName": "Paddington Rail Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 0.0, "lon": 0.0}], "lat": 51.516449, "lon": -0.177107}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "910GPADTON", "modes": ["national-rail", "elizabeth-line"], "icsCode": "1001221", "stopType": "NaptanRailStation", "stationNaptan": "910GPADTON", "hubNaptanCode": "HUBPAD", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "910GPADTON", "commonName": "London Paddington Rail Station", "placeType": "StopPoint", "additionalProperties": [], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490G01221H", "modes": ["bus"], "icsCode": "1001221", "stopType": "NaptanOnstreetBusCoachStopCluster", "stationNaptan": "490G01221H", "hubNaptanCode": "HUBPAD", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490G01221H", "commonName": "Paddington Station", "placeType": "StopPoint", "additionalProperties": [], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490001221F", "indicator": "Stop F", "stopLetter": "F", "modes": ["bus"], "icsCode": "1001221", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G01221H", "hubNaptanCode": "HUBPAD", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490001221F", "commonName": "Paddington Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.515492, "lon": -0.175704}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490001221H", "indicator": "Stop H", "stopLetter": "H", "modes": ["bus"], "icsCode": "1001221", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G01221H", "hubNaptanCode": "HUBPAD", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490001221H", "commonName": "Paddington Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.516737, "lon": -0.173665}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490001221S2", "indicator": "Stop", "modes": ["bus"], "icsCode": "1001221", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G01221H", "hubNaptanCode": "HUBPAD", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490001221S2", "commonName": "Paddington", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.515616, "lon": -0.174445}], "lat": 51.515492, "lon": -0.175704}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "4900PADTLL0", "indicator": "Entrance 2", "stopLetter": "2", "modes": [], "icsCode": "1001221", "stopType": "NaptanRailEntrance", "stationNaptan": "910GPADTON", "hubNaptanCode": "HUBPAD", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "4900PADTLL0", "commonName": "London Paddington Rail Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.516247, "lon": -0.177389}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "4900PADTON1", "indicator": "Entrance 1", "stopLetter": "1", "modes": [], "icsCode": "1001221", "stopType": "NaptanRailEntrance", "stationNaptan": "910GPADTON", "hubNaptanCode": "HUBPAD", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "4900PADTON1", "commonName": "London Paddington Rail Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.516419, "lon": -0.175782}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9100PADTON0", "modes": [], "icsCode": "1001221", "stopType": "NaptanRailAccessArea", "stationNaptan": "910GPADTON", "hubNaptanCode": "HUBPAD", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "9100PADTON0", "commonName": "Paddington Rail Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 0.0, "lon": 0.0}], "lat": 51.515996, "lon": -0.176174}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "940GZZLUPAC", "modes": ["tube"], "icsCode": "1000174", "stopType": "NaptanMetroStation", "stationNaptan": "940GZZLUPAC", "hubNaptanCode": "HUBPAD", "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"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "940GZZLUPAC", "lineIdentifier": ["bakerloo"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "940GZZLUPAC", "lineIdentifier": ["circle", "district"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["bakerloo", "circle", "district"]}], "status": true, "id": "940GZZLUPAC", "commonName": "Paddington Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$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": "Payphones", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$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": "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": "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": "24"}, {"$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": "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": "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": "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": "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)"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_186"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_265"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_279"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_290"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_330"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_370"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_397"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_752"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5967"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5487"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5711"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_4479"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5434"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5499"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5488"}], "children": [{"$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": "9400ZZLUPAC", "modes": ["tube"], "icsCode": "1000174", "stopType": "NaptanMetroAccessArea", "stationNaptan": "940GZZLUPAC", "hubNaptanCode": "HUBPAD", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "9400ZZLUPAC", "commonName": "Paddington 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": "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": "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": "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": "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": "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": "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": "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": "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": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}], "children": [], "lat": 51.516581, "lon": -0.175689}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUPAC1", "modes": ["tube"], "icsCode": "1000174", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUPAC", "hubNaptanCode": "HUBPAD", "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": "940GZZLUPAC", "lineIdentifier": ["bakerloo"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["bakerloo"]}], "status": true, "id": "9400ZZLUPAC1", "commonName": "Paddington 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": "24"}, {"$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": "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": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$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": "Payphones", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$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": "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": "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": "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"}], "children": [], "lat": 51.516299, "lon": -0.17547}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUPAC2", "modes": ["tube"], "icsCode": "1000174", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUPAC", "hubNaptanCode": "HUBPAD", "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": "940GZZLUPAC", "lineIdentifier": ["bakerloo"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["bakerloo"]}], "status": true, "id": "9400ZZLUPAC2", "commonName": "Paddington Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$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": "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": "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": "4"}, {"$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": "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": "Ticket Halls", "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": "VisitorCentre", "key": "Location", "sourceSystemKey": "StaticObjects", "value": "Opposite Platform 1 Paddington Rail 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": "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"}], "children": [], "lat": 51.516345, "lon": -0.175526}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUPAC3", "modes": ["tube"], "icsCode": "1000174", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUPAC", "hubNaptanCode": "HUBPAD", "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": "940GZZLUPAC", "lineIdentifier": ["district", "circle"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["district", "circle"]}], "status": true, "id": "9400ZZLUPAC3", "commonName": "Paddington 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": "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": "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": "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": "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": "Gates", "sourceSystemKey": "StaticObjects", "value": "24"}, {"$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": "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": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$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": "Payphones", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "3"}], "children": [], "lat": 51.515383, "lon": -0.175521}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUPAC4", "modes": ["tube"], "icsCode": "1000174", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUPAC", "hubNaptanCode": "HUBPAD", "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": "940GZZLUPAC", "lineIdentifier": ["circle", "district"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["circle", "district"]}], "status": true, "id": "9400ZZLUPAC4", "commonName": "Paddington 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": "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": "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": "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": "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": "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": "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": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$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": "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": "Payphones", "sourceSystemKey": "StaticObjects", "value": "2"}], "children": [], "lat": 51.515436, "lon": -0.175447}], "lat": 51.516581, "lon": -0.175689}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "940GZZLUPAH", "modes": ["tube"], "icsCode": "1000175", "stopType": "NaptanMetroStation", "stationNaptan": "940GZZLUPAH", "hubNaptanCode": "HUBPAD", "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": "940GZZLUPAH", "lineIdentifier": ["hammersmith-city"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "940GZZLUPAH", "lineIdentifier": ["hammersmith-city", "circle"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["hammersmith-city", "circle"]}], "status": true, "id": "940GZZLUPAH", "commonName": "Paddington (H&C Line)-Underground", "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)"}, {"$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_164"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_165"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_186"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_279"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_290"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_330"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_370"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_592"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_752"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5487"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5711"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5434"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5488"}], "children": [{"$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": "9400ZZLUPAH", "modes": ["tube"], "icsCode": "1000175", "stopType": "NaptanMetroAccessArea", "stationNaptan": "940GZZLUPAH", "hubNaptanCode": "HUBPAD", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "9400ZZLUPAH", "commonName": "Paddington (H&C Line)-Underground", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.518187, "lon": -0.178306}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUPAH1", "modes": ["tube"], "icsCode": "1000175", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUPAH", "hubNaptanCode": "HUBPAD", "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": "940GZZLUPAH", "lineIdentifier": ["hammersmith-city", "circle"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["hammersmith-city", "circle"]}], "status": true, "id": "9400ZZLUPAH1", "commonName": "Paddington (H&C Line)-Underground", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.518201, "lon": -0.178623}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUPAH2", "modes": ["tube"], "icsCode": "1000175", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUPAH", "hubNaptanCode": "HUBPAD", "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": "940GZZLUPAH", "lineIdentifier": ["hammersmith-city"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["hammersmith-city"]}], "status": true, "id": "9400ZZLUPAH2", "commonName": "Paddington (H&C Line)-Underground", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.518163, "lon": -0.178523}], "lat": 51.518187, "lon": -0.178306}], "lat": 51.516981, "lon": -0.17616}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "HUBQPW", "modes": ["bus", "overground", "tube", "national-rail"], "icsCode": "1000186", "stopType": "TransportInterchange", "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": "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": "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": "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": "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": "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": "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": "206", "name": "206", "uri": "/Line/206", "type": "Line", "crowding": {"$type": "Tfl.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"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "940GZZLUQPS", "lineIdentifier": ["bakerloo"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490000186A", "stationAtcoCode": "490G00186A", "lineIdentifier": ["6", "187", "36", "316"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490013353E", "stationAtcoCode": "490G00186A", "lineIdentifier": ["6", "187", "36", "316"]}, {"$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": "490004442N", "stationAtcoCode": "490G000429", "lineIdentifier": ["206"]}], "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": ["6", "187", "36", "316", "206"]}, {"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "national-rail", "lineIdentifier": ["west-midlands-trains"]}], "status": true, "id": "HUBQPW", "commonName": "Queen's Park", "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": "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"}, {"$type": "Tfl.Api.Presentation.Entities.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": "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": "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": "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": "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"}], "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": "910GQPRK", "modes": ["overground", "national-rail"], "icsCode": "1000186", "stopType": "NaptanRailStation", "stationNaptan": "910GQPRK", "hubNaptanCode": "HUBQPW", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "910GQPRK", "commonName": "Queens Park (London) Rail Station", "placeType": "StopPoint", "additionalProperties": [], "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": [], "children": [], "lat": 51.534074, "lon": -0.20449}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9100QPRK2", "modes": [], "icsCode": "1000186", "stopType": "NaptanRailAccessArea", "stationNaptan": "910GQPRK", "hubNaptanCode": "HUBQPW", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "9100QPRK2", "commonName": "Queen's Park Station (London)", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 0.0, "lon": 0.0}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9100QPRK1", "modes": [], "icsCode": "1000186", "stopType": "NaptanRailAccessArea", "stationNaptan": "910GQPRK", "hubNaptanCode": "HUBQPW", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "9100QPRK1", "commonName": "Queen's Park Station (London)", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 0.0, "lon": 0.0}], "lat": 51.533966, "lon": -0.204985}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "940GZZLUQPS", "modes": ["tube"], "icsCode": "1000186", "stopType": "NaptanMetroStation", "stationNaptan": "940GZZLUQPS", "hubNaptanCode": "HUBQPW", "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": "940GZZLUQPS", "lineIdentifier": ["bakerloo"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["bakerloo"]}], "status": true, "id": "940GZZLUQPS", "commonName": "Queen's 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": "Lifts", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$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": "Ticket Halls", "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": "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": "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": "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": "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": "8"}, {"$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": "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"}], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUQPS", "modes": ["tube"], "icsCode": "1000186", "stopType": "NaptanMetroAccessArea", "stationNaptan": "940GZZLUQPS", "hubNaptanCode": "HUBQPW", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "9400ZZLUQPS", "commonName": "Queen'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": "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": "Photo 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": "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": "Gates", "sourceSystemKey": "StaticObjects", "value": "8"}, {"$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": "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": "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": "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": "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": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}], "children": [], "lat": 51.534158, "lon": -0.204574}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUQPS1", "modes": ["tube"], "icsCode": "1000186", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUQPS", "hubNaptanCode": "HUBQPW", "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": "940GZZLUQPS", "lineIdentifier": ["bakerloo"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["bakerloo"]}], "status": true, "id": "9400ZZLUQPS1", "commonName": "Queen's Park Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$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": "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": "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": "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": "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": "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": "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": "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": "Toilets", "sourceSystemKey": "StaticObjects", "value": "no"}], "children": [], "lat": 51.53416, "lon": -0.205309}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUQPS2", "modes": ["tube"], "icsCode": "1000186", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUQPS", "hubNaptanCode": "HUBQPW", "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": "940GZZLUQPS", "lineIdentifier": ["bakerloo"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["bakerloo"]}], "status": true, "id": "9400ZZLUQPS2", "commonName": "Queen's Park 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": "Bridge", "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": "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": "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": "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"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.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": "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": "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"}], "children": [], "lat": 51.534177, "lon": -0.205222}], "lat": 51.534158, "lon": -0.204574}], "lat": 51.534443, "lon": -0.204882}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "HUBRIC", "modes": ["bus", "tube", "national-rail"], "icsCode": "1000193", "stopType": "TransportInterchange", "hubNaptanCode": "HUBRIC", "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": "chiltern-railways", "name": "Chiltern Railways", "uri": "/Line/chiltern-railways", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "940GZZLURKW", "lineIdentifier": ["metropolitan"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "910GRCKMNSW", "lineIdentifier": ["chiltern-railways"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["metropolitan"]}, {"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "national-rail", "lineIdentifier": ["chiltern-railways"]}], "status": true, "id": "HUBRIC", "commonName": "Rickmansworth", "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": "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": "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": "Facility", "key": "Help Points", "sourceSystemKey": "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": "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": "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": "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": "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."}], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "910GRCKMNSW", "modes": ["national-rail"], "icsCode": "1000193", "stopType": "NaptanRailStation", "stationNaptan": "910GRCKMNSW", "hubNaptanCode": "HUBRIC", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "910GRCKMNSW", "commonName": "Rickmansworth Rail Station", "placeType": "StopPoint", "additionalProperties": [], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "940GZZLURKW", "modes": ["tube"], "icsCode": "1000193", "stopType": "NaptanMetroStation", "stationNaptan": "940GZZLURKW", "hubNaptanCode": "HUBRIC", "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": "940GZZLURKW", "lineIdentifier": ["metropolitan"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["metropolitan"]}], "status": true, "id": "940GZZLURKW", "commonName": "Rickmansworth 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": "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": "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": "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": "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": "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": "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": "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": [{"$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": "9400ZZLURKW", "modes": ["tube"], "icsCode": "1000193", "stopType": "NaptanMetroAccessArea", "stationNaptan": "940GZZLURKW", "hubNaptanCode": "HUBRIC", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "9400ZZLURKW", "commonName": "Rickmansworth 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": "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": "Help Points", "sourceSystemKey": "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": "Rickmansworth Station,London Underground Ltd.,Station Approach,Rickmansworth,Herts,WD3 1QY"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.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": "Payphones", "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": "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": "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"}], "children": [], "lat": 51.640207, "lon": -0.473703}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLURKW1", "modes": ["tube"], "icsCode": "1000193", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLURKW", "hubNaptanCode": "HUBRIC", "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": "940GZZLURKW", "lineIdentifier": ["metropolitan"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["metropolitan"]}], "status": true, "id": "9400ZZLURKW1", "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": "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": "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": "post office style queuing for tickets."}, {"$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": "Rickmansworth Station,London Underground Ltd.,Station Approach,Rickmansworth,Herts,WD3 1QY"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, 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": "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.640198, "lon": -0.47366}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLURKW2", "modes": ["tube"], "icsCode": "1000193", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLURKW", "hubNaptanCode": "HUBRIC", "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": "940GZZLURKW", "lineIdentifier": ["metropolitan"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["metropolitan"]}], "status": true, "id": "9400ZZLURKW2", "commonName": "Rickmansworth 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": "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": "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": "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": "Geo", "key": "Zone", "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": "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": "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": "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.640179, "lon": -0.473574}], "lat": 51.640207, "lon": -0.473703}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "2100RCKMNSW0", "indicator": "entrance", "modes": [], "icsCode": "1000193", "stopType": "NaptanRailEntrance", "stationNaptan": "910GRCKMNSW", "hubNaptanCode": "HUBRIC", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "2100RCKMNSW0", "commonName": "Rickmansworth Rail Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.640376, "lon": -0.473639}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9100RCKMNSW1", "modes": [], "icsCode": "1000193", "stopType": "NaptanRailAccessArea", "stationNaptan": "910GRCKMNSW", "hubNaptanCode": "HUBRIC", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "9100RCKMNSW1", "commonName": "Rickmansworth Rail Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 0.0, "lon": 0.0}], "lat": 51.640247, "lon": -0.473282}], "lat": 51.640247, "lon": -0.473273}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "HUBRMD", "modes": ["national-rail", "bus", "tube", "overground"], "icsCode": "1000192", "stopType": "TransportInterchange", "hubNaptanCode": "HUBRMD", "lines": [{"$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": "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": "london-overground", "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": "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": "r68", "name": "R68", "uri": "/Line/r68", "type": "Line", "crowding": {"$type": "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": "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": "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": "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": "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": "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": "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": "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": "190", "name": "190", "uri": "/Line/190", "type": "Line", "crowding": {"$type": "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": "49000192S1", "stationAtcoCode": "490G00192M", "lineIdentifier": ["419", "190"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490013511C", "stationAtcoCode": "490G00192M", "lineIdentifier": ["419", "65", "n22", "r68", "490", "371", "n65", "h37", "110", "r70", "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", "stationAtcoCode": "910GRICHMND", "lineIdentifier": ["london-overground"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490000192S", "stationAtcoCode": "490G00192M", "lineIdentifier": ["n22", "r68", "490", "h37", "110", "r70"]}, {"$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"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "bus", "lineIdentifier": ["419", "65", "n22", "r68", "490", "371", "n65", "h37", "110", "r70", "190"]}, {"$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": "national-rail", "lineIdentifier": ["south-western-railway"]}], "status": true, "id": "HUBRMD", "commonName": "Richmond", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5747"}, {"$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": "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": "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": "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"}], "children": [{"$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": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "910GRICHMND", "commonName": "Richmond (London) Rail Station", "placeType": "StopPoint", "additionalProperties": [], "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": [], "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": [], "children": [], "lat": 51.463475, "lon": -0.29983}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9100RICHNLL0", "modes": [], "icsCode": "1000192", "stopType": "NaptanRailAccessArea", "stationNaptan": "910GRICHMND", "hubNaptanCode": "HUBRMD", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "9100RICHNLL0", "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}, {"$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}], "lat": 51.463061, "lon": -0.301558}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "940GZZLURMD", "modes": ["tube"], "icsCode": "1000192", "stopType": "NaptanMetroStation", "stationNaptan": "940GZZLURMD", "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"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "940GZZLURMD", "lineIdentifier": ["district"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["district"]}], "status": true, "id": "940GZZLURMD", "commonName": "Richmond 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": "Opening Time", "key": "MonFriFrom", "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": "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": "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": "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": "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": "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": "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": "Payphones", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$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": "Other Facilities", "sourceSystemKey": "StaticObjects", "value": "none"}, {"$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": "Photo 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": "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": "9400ZZLURMD", "modes": ["tube"], "icsCode": "1000192", "stopType": "NaptanMetroAccessArea", "stationNaptan": "940GZZLURMD", "hubNaptanCode": "HUBRMD", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "9400ZZLURMD", "commonName": "Richmond 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": "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": "Opening Time", "key": "SunTo", "sourceSystemKey": "StaticObjects", "value": "21: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": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "6"}, {"$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": "SatFrom", "sourceSystemKey": "StaticObjects", "value": "06: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": "Help Points", "sourceSystemKey": "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": "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": "Escalators", "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": "Opening Time", "key": "MonFriTo", "sourceSystemKey": "StaticObjects", "value": "21: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": "Opening Time", "key": "SatTo", "sourceSystemKey": "StaticObjects", "value": "21:45"}, {"$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": "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": "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.463237, "lon": -0.301336}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLURMD1", "modes": ["tube"], "icsCode": "1000192", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLURMD", "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"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "940GZZLURMD", "lineIdentifier": ["district"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["district"]}], "status": true, "id": "9400ZZLURMD1", "commonName": "Richmond Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$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": "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": "Opening Time", "key": "SunTo", "sourceSystemKey": "StaticObjects", "value": "21: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": "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": "Opening Time", "key": "SatTo", "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": "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": "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": "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": "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": "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": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "no"}], "children": [], "lat": 51.463254, "lon": -0.301249}], "lat": 51.463237, "lon": -0.301336}], "lat": 51.463152, "lon": -0.301448}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "HUBSBP", "modes": ["tube", "overground", "bus"], "icsCode": "1000224", "stopType": "TransportInterchange", "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"}, {"$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": "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": "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": "112", "name": "112", "uri": "/Line/112", "type": "Line", "crowding": {"$type": "Tfl.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"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490000224A", "stationAtcoCode": "490G00224L", "lineIdentifier": ["79", "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", "naptanIdReference": "490000224B", "stationAtcoCode": "490G00224L", "lineIdentifier": ["440", "112"]}, {"$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": "overground", "lineIdentifier": ["london-overground"]}, {"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "bus", "lineIdentifier": ["79", "440", "112"]}, {"$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": "910GSTNBGPK", "modes": ["overground"], "icsCode": "1000224", "stopType": "NaptanRailStation", "stationNaptan": "910GSTNBGPK", "hubNaptanCode": "HUBSBP", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "910GSTNBGPK", "commonName": "Stonebridge Park Rail Station", "placeType": "StopPoint", "additionalProperties": [], "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": [], "children": [], "lat": 51.54357, "lon": -0.275229}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9100STNBGPK1", "modes": [], "icsCode": "1000224", "stopType": "NaptanRailAccessArea", "stationNaptan": "910GSTNBGPK", "hubNaptanCode": "HUBSBP", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "9100STNBGPK1", "commonName": "Stonebridge Park Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 0.0, "lon": 0.0}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9100STNBGPK0", "modes": [], "icsCode": "1000224", "stopType": "NaptanRailAccessArea", "stationNaptan": "910GSTNBGPK", "hubNaptanCode": "HUBSBP", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "9100STNBGPK0", "commonName": "Stonebridge Park Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 0.0, "lon": 0.0}], "lat": 51.544111, "lon": -0.275828}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "940GZZLUSGP", "modes": ["tube"], "icsCode": "1000224", "stopType": "NaptanMetroStation", "stationNaptan": "940GZZLUSGP", "hubNaptanCode": "HUBSBP", "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": "940GZZLUSGP", "lineIdentifier": ["bakerloo"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["bakerloo"]}], "status": true, "id": "940GZZLUSGP", "commonName": "Stonebridge 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": "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": "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": "Help Points", "sourceSystemKey": "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": "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": "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"}], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUSGP", "modes": ["tube"], "icsCode": "1000224", "stopType": "NaptanMetroAccessArea", "stationNaptan": "940GZZLUSGP", "hubNaptanCode": "HUBSBP", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "9400ZZLUSGP", "commonName": "Stonebridge Park 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": "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": "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": "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": "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": "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"}], "children": [], "lat": 51.543959, "lon": -0.275892}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUSGP1", "modes": ["tube"], "icsCode": "1000224", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUSGP", "hubNaptanCode": "HUBSBP", "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": "940GZZLUSGP", "lineIdentifier": ["bakerloo"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["bakerloo"]}], "status": true, "id": "9400ZZLUSGP1", "commonName": "Stonebridge 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": "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": "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 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": "Stonebridge Park,London Overground Ltd.,North Circular Road,London,NW10 0RL"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "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": "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"}], "children": [], "lat": 51.543976, "lon": -0.275848}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUSGP2", "indicator": "northbound", "modes": ["tube"], "icsCode": "1000224", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUSGP", "hubNaptanCode": "HUBSBP", "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": "940GZZLUSGP", "lineIdentifier": ["bakerloo"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["bakerloo"]}], "status": true, "id": "9400ZZLUSGP2", "commonName": "Stonebridge Park Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$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": "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": "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": "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": "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": "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"}], "children": [], "lat": 51.543913, "lon": -0.275807}], "lat": 51.543959, "lon": -0.275892}], "lat": 51.544041, "lon": -0.275859}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "HUBSOK", "modes": ["bus", "tube", "overground"], "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": "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": "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": "940GZZLUSKT", "lineIdentifier": ["bakerloo"]}, {"$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": "bus", "lineIdentifier": ["223"]}, {"$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": "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": "910GSKENTON", "modes": ["overground"], "icsCode": "1000213", "stopType": "NaptanRailStation", "stationNaptan": "910GSKENTON", "hubNaptanCode": "HUBSOK", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "910GSKENTON", "commonName": "South Kenton Rail Station", "placeType": "StopPoint", "additionalProperties": [], "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": [], "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": [], "children": [], "lat": 51.570684, "lon": -0.308142}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9100SKENTON1", "modes": [], "icsCode": "1000213", "stopType": "NaptanRailAccessArea", "stationNaptan": "910GSKENTON", "hubNaptanCode": "HUBSOK", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "9100SKENTON1", "commonName": "South Kenton Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 0.0, "lon": 0.0}], "lat": 51.570214, "lon": -0.308462}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "940GZZLUSKT", "modes": ["tube"], "icsCode": "1000213", "stopType": "NaptanMetroStation", "stationNaptan": "940GZZLUSKT", "hubNaptanCode": "HUBSOK", "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": "940GZZLUSKT", "lineIdentifier": ["bakerloo"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["bakerloo"]}], "status": true, "id": "940GZZLUSKT", "commonName": "South Kenton 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": "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": "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 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": "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": "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": "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": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUSKT", "modes": ["tube"], "icsCode": "1000213", "stopType": "NaptanMetroAccessArea", "stationNaptan": "940GZZLUSKT", "hubNaptanCode": "HUBSOK", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "9400ZZLUSKT", "commonName": "South Kenton 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": "Escalators", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$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": "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": "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": "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": "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": "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"}], "children": [], "lat": 51.570232, "lon": -0.308433}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUSKT1", "modes": ["tube"], "icsCode": "1000213", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUSKT", "hubNaptanCode": "HUBSOK", "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": "940GZZLUSKT", "lineIdentifier": ["bakerloo"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["bakerloo"]}], "status": true, "id": "9400ZZLUSKT1", "commonName": "South Kenton Underground 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": "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": "Photo 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": "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": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 601 4867"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.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": "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": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}], "children": [], "lat": 51.570341, "lon": -0.308559}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUSKT2", "modes": ["tube"], "icsCode": "1000213", "stopType": "NaptanRailAccessArea", "stationNaptan": "940GZZLUSKT", "hubNaptanCode": "HUBSOK", "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": "940GZZLUSKT", "lineIdentifier": ["bakerloo"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["bakerloo"]}], "status": true, "id": "9400ZZLUSKT2", "commonName": "South Kenton 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": "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": "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": "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": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$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": "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": "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"}], "children": [], "lat": 51.570359, "lon": -0.308572}], "lat": 51.570232, "lon": -0.308433}], "lat": 51.570229, "lon": -0.308448}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "HUBSPB", "modes": ["bus", "overground", "tube", "national-rail"], "icsCode": "1000203", "stopType": "TransportInterchange", "hubNaptanCode": "HUBSPB", "lines": [{"$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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "london-overground", "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": "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": "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": "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": "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": "272", "name": "272", "uri": "/Line/272", "type": "Line", "crowding": {"$type": "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": "490000203D", "stationAtcoCode": "490G00203A", "lineIdentifier": ["31", "c1", "228", "316", "49"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490000203B", "stationAtcoCode": "490G00203A", "lineIdentifier": ["31", "c1", "237", "207", "316", "260", "sl8", "49"]}, {"$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": "490015036L", "stationAtcoCode": "490G00203A", "lineIdentifier": ["148", "94", "n207"]}, {"$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": "490000203C", "stationAtcoCode": "490G00203A", "lineIdentifier": ["237", "207", "260", "sl8"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490015036K", "stationAtcoCode": "490G00203A", "lineIdentifier": ["72", "283", "295", "n72", "220", "95", "272"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490015059H", "stationAtcoCode": "490G00203A", "lineIdentifier": ["295"]}, {"$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"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "bus", "lineIdentifier": ["31", "148", "c1", "228", "237", "72", "283", "295", "207", "n72", "316", "260", "94", "220", "sl8", "95", "49", "n207", "272"]}, {"$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"]}], "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": "910GSHPDSB", "modes": ["overground"], "icsCode": "1001348", "stopType": "NaptanRailStation", "stationNaptan": "910GSHPDSB", "hubNaptanCode": "HUBSPB", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "910GSHPDSB", "commonName": "Shepherds Bush Rail Station", "placeType": "StopPoint", "additionalProperties": [], "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": "9100SHPDSB1", "modes": [], "icsCode": "1001348", "stopType": "NaptanRailAccessArea", "stationNaptan": "910GSHPDSB", "hubNaptanCode": "HUBSPB", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "9100SHPDSB1", "commonName": "Shepherd's Bush Rail Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 0.0, "lon": 0.0}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9100SHPDSB0", "modes": [], "icsCode": "1001348", "stopType": "NaptanRailAccessArea", "stationNaptan": "910GSHPDSB", "hubNaptanCode": "HUBSPB", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "9100SHPDSB0", "commonName": "Shepherd's Bush Rail Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 0.0, "lon": 0.0}], "lat": 51.505285, "lon": -0.217654}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "940GZZLUSBC", "modes": ["tube"], "icsCode": "1000203", "stopType": "NaptanMetroStation", "stationNaptan": "940GZZLUSBC", "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"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "940GZZLUSBC", "lineIdentifier": ["central"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["central"]}], "status": true, "id": "940GZZLUSBC", "commonName": "Shepherd's Bush (Central) 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": "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": "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": "Escalators", "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": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$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": "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": "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": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$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_647"}, {"$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": "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": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.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": "9400ZZLUSBC", "modes": ["tube"], "icsCode": "1000203", "stopType": "NaptanMetroAccessArea", "stationNaptan": "940GZZLUSBC", "hubNaptanCode": "HUBSPB", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "9400ZZLUSBC", "commonName": "Shepherd's Bush (Central) 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": "Toilets", "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": "Facility", "key": "Help Points", "sourceSystemKey": "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": "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": "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": "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": "Other Facilities", "sourceSystemKey": "StaticObjects", "value": "none"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}], "children": [], "lat": 51.504376, "lon": -0.218813}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUSBC1", "modes": ["tube"], "icsCode": "1000203", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUSBC", "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"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "940GZZLUSBC", "lineIdentifier": ["central"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["central"]}], "status": true, "id": "9400ZZLUSBC1", "commonName": "Shepherd's Bush (Central) Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$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": "Photo 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"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.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": "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": "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": "Help Points", "sourceSystemKey": "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": "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.504564, "lon": -0.218129}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUSBC2", "modes": ["tube"], "icsCode": "1000203", "stopType": "NaptanRailAccessArea", "stationNaptan": "940GZZLUSBC", "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"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "940GZZLUSBC", "lineIdentifier": ["central"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["central"]}], "status": true, "id": "9400ZZLUSBC2", "commonName": "Shepherd's Bush (Central Line)", "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": "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": "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": "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"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.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": "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": "Photo 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.504572, "lon": -0.2181}], "lat": 51.504376, "lon": -0.218813}], "lat": 51.504791, "lon": -0.219213}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "HUBSRA", "modes": ["bus", "international-rail", "overground", "dlr", "tube", "national-rail", "elizabeth-line"], "icsCode": "1000226", "stopType": "TransportInterchange", "hubNaptanCode": "HUBSRA", "lines": [{"$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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "london-overground", "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": "elizabeth", "name": "Elizabeth line", "uri": "/Line/elizabeth", "type": "Line", "crowding": {"$type": "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": "490012904D", "stationAtcoCode": "490G000773", "lineIdentifier": ["104", "262", "473", "276", "238"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490012904N", "stationAtcoCode": "490G000773", "lineIdentifier": ["104", "257", "262", "d8", "n86", "473", "678", "238", "25", "158", "86"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490012904A", "stationAtcoCode": "490G000773", "lineIdentifier": ["257", "69", "158"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "940GZZLUSTD", "lineIdentifier": ["central"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490012904C", "stationAtcoCode": "490G000773", "lineIdentifier": ["308", "241", "n8"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490019793W", "stationAtcoCode": "490G00019793", "lineIdentifier": ["308", "241", "388", "n205", "97"]}, {"$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", "stationAtcoCode": "910GSTFD", "lineIdentifier": ["c2c", "greater-anglia"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490012904Q", "stationAtcoCode": "490G000773", "lineIdentifier": ["241", "n8"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490012904B", "stationAtcoCode": "490G000773", "lineIdentifier": ["n25", "n86", "425", "25", "86"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490012904T", "stationAtcoCode": "490G000773", "lineIdentifier": ["n25", "n8", "d8", "425", "276", "25"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490019793S", "stationAtcoCode": "490G00019793", "lineIdentifier": ["339", "388", "n205", "108", "97"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490019793X", "stationAtcoCode": "490G00019793", "lineIdentifier": ["339", "388", "108"]}, {"$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": "940GZZDLSTD", "lineIdentifier": ["dlr"]}, {"$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": "910GSTFD", "lineIdentifier": ["london-overground"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "bus", "lineIdentifier": ["104", "257", "262", "308", "241", "69", "n25", "339", "n8", "388", "d8", "n205", "108", "n86", "97", "473", "678", "425", "276", "238", "25", "158", "86"]}, {"$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": "national-rail", "lineIdentifier": ["c2c", "greater-anglia"]}, {"$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": "elizabeth-line", "lineIdentifier": ["elizabeth"]}], "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": "910GSTFD", "modes": ["national-rail", "overground", "elizabeth-line"], "icsCode": "1000226", "stopType": "NaptanRailStation", "stationNaptan": "910GSTFD", "hubNaptanCode": "HUBSRA", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "910GSTFD", "commonName": "Stratford (London) Rail Station", "placeType": "StopPoint", "additionalProperties": [], "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": [], "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": [], "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": [], "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": [], "children": [], "lat": 51.54104, "lon": -0.003448}, {"$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": "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": "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}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9100STFD4", "modes": [], "icsCode": "1000226", "stopType": "NaptanRailAccessArea", "stationNaptan": "910GSTFD", "hubNaptanCode": "HUBSRA", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "9100STFD4", "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": "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", "stopType": "NaptanMetroPlatform", "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", "stopType": "NaptanMetroPlatform", "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", "stopType": "NaptanMetroPlatform", "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": [{"$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": "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": "940GZZLUSTD", "lineIdentifier": ["jubilee"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "940GZZLUSTD", "lineIdentifier": ["central"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["jubilee", "central"]}], "status": true, "id": "940GZZLUSTD", "commonName": "Stratford 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": "Cash Machines", "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": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$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": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$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": "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": "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": "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": "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": "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": "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": "9400ZZLUSTD", "modes": ["tube"], "icsCode": "1000226", "stopType": "NaptanMetroAccessArea", "stationNaptan": "940GZZLUSTD", "hubNaptanCode": "HUBSRA", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "9400ZZLUSTD", "commonName": "Stratford Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$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": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$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": "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": "Lifts", "sourceSystemKey": "StaticObjects", "value": "5"}, {"$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": "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": "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": "Photo 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"}], "children": [], "lat": 51.541806, "lon": -0.003458}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUSTD1", "indicator": "Platform 3A", "stopLetter": "3A", "modes": ["tube"], "icsCode": "1000226", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUSTD", "hubNaptanCode": "HUBSRA", "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": "940GZZLUSTD", "lineIdentifier": ["central"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["central"]}], "status": true, "id": "9400ZZLUSTD1", "commonName": "Stratford 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"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.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": "Lifts", "sourceSystemKey": "StaticObjects", "value": "5"}, {"$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": "Cash Machines", "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": "Euro Cash Machines", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$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": "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"}, {"$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": "Help 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.542326, "lon": -0.002311}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUSTD2", "indicator": "Platform 3", "stopLetter": "3", "modes": ["tube"], "icsCode": "1000226", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUSTD", "hubNaptanCode": "HUBSRA", "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": "940GZZLUSTD", "lineIdentifier": ["central"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["central"]}], "status": true, "id": "9400ZZLUSTD2", "commonName": "Stratford 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": "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": "Payphones", "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": "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": "Stratford Station BR Station St,London,E15 1DE"}, {"$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": "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": "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"}], "children": [], "lat": 51.542328, "lon": -0.002426}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUSTD3", "indicator": "Platform 6", "stopLetter": "6", "modes": ["tube"], "icsCode": "1000226", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUSTD", "hubNaptanCode": "HUBSRA", "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": "940GZZLUSTD", "lineIdentifier": ["jubilee"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["jubilee"]}], "status": true, "id": "9400ZZLUSTD3", "commonName": "Stratford 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": "Boarding Ramps", "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": "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": "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": "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": "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": "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": "Cash Machines", "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": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Stratford Station BR Station St,London,E15 1DE"}], "children": [], "lat": 51.54233, "lon": -0.002541}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUSTD4", "indicator": "Platform 13", "stopLetter": "13", "modes": ["tube"], "icsCode": "1000226", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUSTD", "hubNaptanCode": "HUBSRA", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "9400ZZLUSTD4", "commonName": "Stratford Underground 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": "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": "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": "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": "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": "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": "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": "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"}, {"$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"}], "children": [], "lat": 51.540512, "lon": -0.0035}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUSTD5", "indicator": "Platform 14", "stopLetter": "14", "modes": ["tube"], "icsCode": "1000226", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUSTD", "hubNaptanCode": "HUBSRA", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "9400ZZLUSTD5", "commonName": "Stratford Underground 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": "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": "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": "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": "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": "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": "Help Points", "sourceSystemKey": "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": "Ticket Halls", "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": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "4"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "5"}], "children": [], "lat": 51.54051, "lon": -0.003356}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUSTD6", "indicator": "Platform 15", "stopLetter": "15", "modes": ["tube"], "icsCode": "1000226", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUSTD", "hubNaptanCode": "HUBSRA", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "9400ZZLUSTD6", "commonName": "Stratford Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$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": "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": "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": "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": "23"}, {"$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": "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": "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": "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.540507, "lon": -0.003212}], "lat": 51.541806, "lon": -0.003458}], "lat": 51.541508, "lon": -0.00241}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "HUBSRU", "modes": ["national-rail", "bus", "tube"], "icsCode": "1000214", "stopType": "TransportInterchange", "hubNaptanCode": "HUBSRU", "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": "chiltern-railways", "name": "Chiltern Railways", "uri": "/Line/chiltern-railways", "type": "Line", "crowding": {"$type": "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"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490000214B", "stationAtcoCode": "490G00241F", "lineIdentifier": ["114"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490000214A", "stationAtcoCode": "490G00241F", "lineIdentifier": ["114"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "910GSRUISLP", "lineIdentifier": ["chiltern-railways"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "940GZZLUSRP", "lineIdentifier": ["central"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "bus", "lineIdentifier": ["114"]}, {"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "national-rail", "lineIdentifier": ["chiltern-railways"]}, {"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["central"]}], "status": true, "id": "HUBSRU", "commonName": "South Ruislip", "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": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "South Ruislip Station,London Underground Ltd.,Station Approach,Ruislip,Middx,HA4 6TP"}, {"$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": "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": "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": "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": "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": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_3569"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "CarParks_800462"}], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "910GSRUISLP", "modes": ["national-rail"], "icsCode": "1000214", "stopType": "NaptanRailStation", "stationNaptan": "910GSRUISLP", "hubNaptanCode": "HUBSRU", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "910GSRUISLP", "commonName": "South Ruislip Rail Station", "placeType": "StopPoint", "additionalProperties": [], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490G00241F", "modes": ["bus"], "icsCode": "1000214", "stopType": "NaptanOnstreetBusCoachStopCluster", "stationNaptan": "490G00241F", "hubNaptanCode": "HUBSRU", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490G00241F", "commonName": "South Ruislip Station", "placeType": "StopPoint", "additionalProperties": [], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000214A", "indicator": "Stop A", "stopLetter": "A", "modes": ["bus"], "icsCode": "1000214", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00241F", "hubNaptanCode": "HUBSRU", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000214A", "commonName": "South Ruislip Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.558337, "lon": -0.397074}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000214B", "indicator": "Stop B", "stopLetter": "B", "modes": ["bus"], "icsCode": "1000214", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00241F", "hubNaptanCode": "HUBSRU", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000214B", "commonName": "South Ruislip Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.557297, "lon": -0.395365}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000214E", "indicator": "Stop EB", "stopLetter": "EB", "modes": ["bus"], "icsCode": "1000214", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00241F", "hubNaptanCode": "HUBSRU", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000214E", "commonName": "South Ruislip Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.556253, "lon": -0.399268}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000241F", "indicator": "Stop WB", "stopLetter": "WB", "modes": ["bus"], "icsCode": "1000214", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00241F", "hubNaptanCode": "HUBSRU", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000241F", "commonName": "South Ruislip Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.555947, "lon": -0.399221}], "lat": 51.558337, "lon": -0.397074}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "4900SRUISLP1", "indicator": "Entrance 1", "stopLetter": "1", "modes": [], "icsCode": "1000214", "stopType": "NaptanRailEntrance", "stationNaptan": "910GSRUISLP", "hubNaptanCode": "HUBSRU", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "4900SRUISLP1", "commonName": "South Ruislip Rail Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.556453, "lon": -0.398727}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "4900SRUISLP2", "indicator": "Entrance 2", "stopLetter": "2", "modes": [], "icsCode": "1000214", "stopType": "NaptanRailEntrance", "stationNaptan": "910GSRUISLP", "hubNaptanCode": "HUBSRU", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "4900SRUISLP2", "commonName": "South Ruislip Rail Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.556549, "lon": -0.398536}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9100SRUISLP0", "modes": [], "icsCode": "1000214", "stopType": "NaptanRailAccessArea", "stationNaptan": "910GSRUISLP", "hubNaptanCode": "HUBSRU", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "9100SRUISLP0", "commonName": "South Ruislip Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 0.0, "lon": 0.0}], "lat": 51.55692, "lon": -0.399259}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "940GZZLUSRP", "modes": ["tube"], "icsCode": "1000214", "stopType": "NaptanMetroStation", "stationNaptan": "940GZZLUSRP", "hubNaptanCode": "HUBSRU", "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": "940GZZLUSRP", "lineIdentifier": ["central"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["central"]}], "status": true, "id": "940GZZLUSRP", "commonName": "South Ruislip 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": "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": "South Ruislip Station,London Underground Ltd.,Station Approach,Ruislip,Middx,HA4 6TP"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, 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": "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, 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": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_3569"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "CarParks_800462"}], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUSRP", "modes": ["tube"], "icsCode": "1000214", "stopType": "NaptanMetroAccessArea", "stationNaptan": "940GZZLUSRP", "hubNaptanCode": "HUBSRU", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "9400ZZLUSRP", "commonName": "South Ruislip 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": "South Ruislip Station,London Underground Ltd.,Station Approach,Ruislip,Middx,HA4 6TP"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "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": "Toilets", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$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": "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": "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": "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"}], "children": [], "lat": 51.556853, "lon": -0.398915}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUSRP1", "modes": ["tube"], "icsCode": "1000214", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUSRP", "hubNaptanCode": "HUBSRU", "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": "940GZZLUSRP", "lineIdentifier": ["central"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["central"]}], "status": true, "id": "9400ZZLUSRP1", "commonName": "South Ruislip 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": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "South Ruislip Station,London Underground Ltd.,Station Approach,Ruislip,Middx,HA4 6TP"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo 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": "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": "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": "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": "Gates", "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.556967, "lon": -0.399373}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUSRP2", "modes": ["tube"], "icsCode": "1000214", "stopType": "NaptanRailAccessArea", "stationNaptan": "940GZZLUSRP", "hubNaptanCode": "HUBSRU", "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": "940GZZLUSRP", "lineIdentifier": ["central"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["central"]}], "status": true, "id": "9400ZZLUSRP2", "commonName": "South Ruislip 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": "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": "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": "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": "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": "South Ruislip Station,London Underground Ltd.,Station Approach,Ruislip,Middx,HA4 6TP"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.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": "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.556958, "lon": -0.399373}], "lat": 51.556853, "lon": -0.398915}], "lat": 51.556893, "lon": -0.399076}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "HUBSVS", "modes": ["tube", "overground", "bus", "national-rail"], "icsCode": "1000201", "stopType": "TransportInterchange", "hubNaptanCode": "HUBSVS", "lines": [{"$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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "41", "name": "41", "uri": "/Line/41", "type": "Line", "crowding": {"$type": "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": "490015081Q", "stationAtcoCode": "490G00201I", "lineIdentifier": ["476", "349", "n73", "318", "149", "243"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490015081O", "stationAtcoCode": "490G000859", "lineIdentifier": ["476", "349", "n73", "318", "149", "243"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490000201J", "stationAtcoCode": "490G00201I", "lineIdentifier": ["476", "n279", "349", "279", "n73", "259", "318", "149", "243"]}, {"$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": ["london-overground", "greater-anglia"]}, {"$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": "490000201C", "stationAtcoCode": "490G00201I", "lineIdentifier": ["n41", "41"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "bus", "lineIdentifier": ["476", "n279", "349", "279", "n41", "n73", "259", "318", "149", "243", "41"]}, {"$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": "national-rail", "lineIdentifier": ["greater-anglia"]}], "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": "910GSEVNSIS", "modes": ["overground", "national-rail"], "icsCode": "1000201", "stopType": "NaptanRailStation", "stationNaptan": "910GSEVNSIS", "hubNaptanCode": "HUBSVS", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "910GSEVNSIS", "commonName": "Seven Sisters Rail Station", "placeType": "StopPoint", "additionalProperties": [], "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": [], "children": [], "lat": 51.582015, "lon": -0.07531}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9100SEVNSIS0", "modes": [], "icsCode": "1000201", "stopType": "NaptanRailAccessArea", "stationNaptan": "910GSEVNSIS", "hubNaptanCode": "HUBSVS", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "9100SEVNSIS0", "commonName": "Seven Sisters Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 0.0, "lon": 0.0}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9100SEVNSIS1", "modes": [], "icsCode": "1000201", "stopType": "NaptanRailAccessArea", "stationNaptan": "910GSEVNSIS", "hubNaptanCode": "HUBSVS", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "9100SEVNSIS1", "commonName": "Seven Sisters Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 0.0, "lon": 0.0}], "lat": 51.582268, "lon": -0.07527}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "940GZZLUSVS", "modes": ["tube"], "icsCode": "1000201", "stopType": "NaptanMetroStation", "stationNaptan": "940GZZLUSVS", "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"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "940GZZLUSVS", "lineIdentifier": ["victoria"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["victoria"]}], "status": true, "id": "940GZZLUSVS", "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": "ServiceInfo", "key": "Night", "sourceSystemKey": "TransXchangeETL", "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": "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": "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": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "13"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.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": "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": "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": "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": [{"$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": "9400ZZLUSVS", "modes": ["tube"], "icsCode": "1000201", "stopType": "NaptanMetroAccessArea", "stationNaptan": "940GZZLUSVS", "hubNaptanCode": "HUBSVS", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "9400ZZLUSVS", "commonName": "Seven Sisters 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": "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": "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": "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": "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": "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": "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"}], "children": [], "lat": 51.58333, "lon": -0.072584}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUSVS1", "modes": ["tube"], "icsCode": "1000201", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUSVS", "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"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "940GZZLUSVS", "lineIdentifier": ["victoria"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["victoria"]}], "status": true, "id": "9400ZZLUSVS1", "commonName": "Seven Sisters 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": "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": "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": "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": "Help 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": "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": "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": "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": "Toilets", "sourceSystemKey": "StaticObjects", "value": "no"}], "children": [], "lat": 51.582433, "lon": -0.073863}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUSVS2", "modes": ["tube"], "icsCode": "1000201", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUSVS", "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"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "940GZZLUSVS", "lineIdentifier": ["victoria"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["victoria"]}], "status": true, "id": "9400ZZLUSVS2", "commonName": "Seven Sisters 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": "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": "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": "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": "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": "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": "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": "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": "13"}], "children": [], "lat": 51.58239, "lon": -0.07398}], "lat": 51.58333, "lon": -0.072584}], "lat": 51.582931, "lon": -0.073306}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "HUBTCR", "modes": ["bus", "tube", "elizabeth-line"], "icsCode": "1000235", "stopType": "TransportInterchange", "hubNaptanCode": "HUBTCR", "lines": [{"$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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "n207", "name": "N207", "uri": "/Line/n207", "type": "Line", "crowding": {"$type": "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": "490000235C", "stationAtcoCode": "490G00235C", "lineIdentifier": ["390", "73", "24", "n73", "n20", "n5", "29", "n29", "n279", "n253"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490000235YB", "stationAtcoCode": "490G00235DS", "lineIdentifier": ["390", "55", "98", "n25", "73", "n8", "n73", "n55", "n98", "n207"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490000235V", "stationAtcoCode": "490G00235V", "lineIdentifier": ["390", "55", "98", "n25", "73", "n8", "n73", "n55", "n98", "n207"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490000235X", "stationAtcoCode": "490G00235Z", "lineIdentifier": ["55", "98", "n25", "38", "n8", "n55", "19", "n41", "n38", "n19", "n98", "n207"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490000235N", "stationAtcoCode": "490G00235Z", "lineIdentifier": ["n171", "n1", "188"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "940GZZLUTCR", "lineIdentifier": ["northern"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "940GZZLUTCR", "lineIdentifier": ["central"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "910GTOTCTRD", "lineIdentifier": ["elizabeth"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490000235W1", "stationAtcoCode": "490G00235E", "lineIdentifier": ["14", "176"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "bus", "lineIdentifier": ["390", "55", "98", "n171", "n25", "73", "38", "n8", "24", "n1", "n73", "n20", "n55", "188", "19", "n5", "n41", "n38", "29", "n19", "14", "n29", "n279", "176", "n253", "n98", "n207"]}, {"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["northern", "central"]}, {"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "elizabeth-line", "lineIdentifier": ["elizabeth"]}], "status": true, "id": "HUBTCR", "commonName": "Tottenham Court Road", "placeType": "StopPoint", "additionalProperties": [{"$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"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.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": "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": "Ticket Halls", "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": "Help Points", "sourceSystemKey": "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": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_15"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_88"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_109"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_192"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_244"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_260"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_306"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_358"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_386"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5358"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5043"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5468"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5379"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5516"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_383"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_364"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5655"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5580"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5074"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5233"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5017"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5141"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5816"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_4139"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5481"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5090"}], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "910GTOTCTRD", "modes": ["elizabeth-line"], "icsCode": "1000235", "stopType": "NaptanRailStation", "stationNaptan": "910GTOTCTRD", "hubNaptanCode": "HUBTCR", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "910GTOTCTRD", "commonName": "Tottenham Court Road", "placeType": "StopPoint", "additionalProperties": [], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9100TOTCTRD1", "modes": [], "icsCode": "1000235", "stopType": "NaptanRailAccessArea", "stationNaptan": "910GTOTCTRD", "hubNaptanCode": "HUBTCR", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "9100TOTCTRD1", "commonName": "Tottenham Court Road Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.515542, "lon": -0.129682}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9100TOTCTRD0", "modes": [], "icsCode": "1000235", "stopType": "NaptanRailAccessArea", "stationNaptan": "910GTOTCTRD", "hubNaptanCode": "HUBTCR", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "9100TOTCTRD0", "commonName": "Tottenham Court Road Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 0.0, "lon": 0.0}], "lat": 51.515542, "lon": -0.129682}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "940GZZLUTCR", "modes": ["tube"], "icsCode": "1000235", "stopType": "NaptanMetroStation", "stationNaptan": "940GZZLUTCR", "hubNaptanCode": "HUBTCR", "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"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "940GZZLUTCR", "lineIdentifier": ["central"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "940GZZLUTCR", "lineIdentifier": ["northern"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["central", "northern"]}], "status": true, "id": "940GZZLUTCR", "commonName": "Tottenham Court Road 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": "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": "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": "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": "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": "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": "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": "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": "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": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_15"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_24"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_88"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_109"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_192"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_244"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_260"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_306"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_358"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_364"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_383"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_386"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5358"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5043"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5468"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5379"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5516"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5655"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5580"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5074"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5090"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5481"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5233"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5141"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5816"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_4139"}], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490G00235C", "modes": ["bus"], "icsCode": "1000235", "stopType": "NaptanOnstreetBusCoachStopCluster", "stationNaptan": "490G00235C", "hubNaptanCode": "HUBTCR", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490G00235C", "commonName": "Tottenham Court Road Station", "placeType": "StopPoint", "additionalProperties": [], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000235C", "indicator": "Stop C", "stopLetter": "C", "modes": ["bus"], "icsCode": "1000235", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00235C", "hubNaptanCode": "HUBTCR", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000235C", "commonName": "Tottenham Court Road Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.517674, "lon": -0.131541}], "lat": 51.517674, "lon": -0.131541}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490G00235DS", "modes": ["bus"], "icsCode": "1000235", "stopType": "NaptanOnstreetBusCoachStopCluster", "stationNaptan": "490G00235DS", "hubNaptanCode": "HUBTCR", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490G00235DS", "commonName": "Tottenham Court Road Station", "placeType": "StopPoint", "additionalProperties": [], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000235YB", "indicator": "Stop YB", "stopLetter": "YB", "modes": ["bus"], "icsCode": "1000235", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00235DS", "hubNaptanCode": "HUBTCR", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000235YB", "commonName": "Tottenham Court Road Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.516096, "lon": -0.13407}], "lat": 51.516096, "lon": -0.13407}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490G00235E", "modes": ["bus"], "icsCode": "1000235", "stopType": "NaptanOnstreetBusCoachStopCluster", "stationNaptan": "490G00235E", "hubNaptanCode": "HUBTCR", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490G00235E", "commonName": "Tottenham Court Road Station", "placeType": "StopPoint", "additionalProperties": [], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000235W1", "indicator": "Stop S", "stopLetter": "S", "modes": ["bus"], "icsCode": "1000235", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00235E", "hubNaptanCode": "HUBTCR", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000235W1", "commonName": "Tottenham Court Road Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.515556, "lon": -0.128428}], "lat": 51.515556, "lon": -0.128428}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490G00235V", "modes": ["bus"], "icsCode": "1000235", "stopType": "NaptanOnstreetBusCoachStopCluster", "stationNaptan": "490G00235V", "hubNaptanCode": "HUBTCR", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490G00235V", "commonName": "Tottenham Court Road Station", "placeType": "StopPoint", "additionalProperties": [], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000235V", "indicator": "Stop V", "stopLetter": "V", "modes": ["bus"], "icsCode": "1000235", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00235V", "hubNaptanCode": "HUBTCR", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000235V", "commonName": "Tottenham Court Road Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.516377, "lon": -0.131954}], "lat": 51.516377, "lon": -0.131954}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490G00235Z", "modes": ["bus"], "icsCode": "1000235", "stopType": "NaptanOnstreetBusCoachStopCluster", "stationNaptan": "490G00235Z", "hubNaptanCode": "HUBTCR", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490G00235Z", "commonName": "Tottenham Court Road Station", "placeType": "StopPoint", "additionalProperties": [], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000235N", "indicator": "Stop T", "stopLetter": "T", "modes": ["bus"], "icsCode": "1000235", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00235Z", "hubNaptanCode": "HUBTCR", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000235N", "commonName": "Tottenham Court Road", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.51602, "lon": -0.12874}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000235X", "indicator": "Stop X", "stopLetter": "X", "modes": ["bus"], "icsCode": "1000235", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00235Z", "hubNaptanCode": "HUBTCR", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000235X", "commonName": "Tottenham Court Road Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.516685, "lon": -0.128122}], "lat": 51.51602, "lon": -0.12874}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "4900TOTCTRD0", "indicator": "Entrance 5", "stopLetter": "5", "modes": [], "icsCode": "1000235", "stopType": "NaptanRailEntrance", "stationNaptan": "940GZZLUTCR", "hubNaptanCode": "HUBTCR", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "4900TOTCTRD0", "commonName": "Tottenham Court Road Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.515846, "lon": -0.134166}, {"$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": "9400ZZLUTCR", "modes": ["tube"], "icsCode": "1000235", "stopType": "NaptanMetroAccessArea", "stationNaptan": "940GZZLUTCR", "hubNaptanCode": "HUBTCR", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "9400ZZLUTCR", "commonName": "Tottenham Court 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": "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": "Tottenham Court Road Station,London Underground Ltd.,Oxford St,London,W1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "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": "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": "Gates", "sourceSystemKey": "StaticObjects", "value": "13"}, {"$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": "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": "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.516426, "lon": -0.13041}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUTCR1", "modes": ["tube"], "icsCode": "1000235", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUTCR", "hubNaptanCode": "HUBTCR", "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": "940GZZLUTCR", "lineIdentifier": ["central"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["central"]}], "status": true, "id": "9400ZZLUTCR1", "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": "Lifts", "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": "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": "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": "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": "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": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}], "children": [], "lat": 51.516408, "lon": -0.131549}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUTCR2", "modes": ["tube"], "icsCode": "1000235", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUTCR", "hubNaptanCode": "HUBTCR", "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": "940GZZLUTCR", "lineIdentifier": ["northern"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["northern"]}], "status": true, "id": "9400ZZLUTCR2", "commonName": "Tottenham Court Road 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": "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": "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": "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": "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": "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": "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": "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": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "1"}], "children": [], "lat": 51.515941, "lon": -0.13043}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUTCR3", "modes": ["tube"], "icsCode": "1000235", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUTCR", "hubNaptanCode": "HUBTCR", "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": "940GZZLUTCR", "lineIdentifier": ["northern"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["northern"]}], "status": true, "id": "9400ZZLUTCR3", "commonName": "Tottenham Court 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": "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": "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": "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": "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": "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": "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": "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"}], "children": [], "lat": 51.515904, "lon": -0.130402}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUTCR4", "modes": ["tube"], "icsCode": "1000235", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUTCR", "hubNaptanCode": "HUBTCR", "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": "940GZZLUTCR", "lineIdentifier": ["central"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["central"]}], "status": true, "id": "9400ZZLUTCR4", "commonName": "Tottenham Court Road 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": "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": "13"}, {"$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": "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": "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": "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": "Photo 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.51594, "lon": -0.130401}], "lat": 51.516426, "lon": -0.13041}], "lat": 51.516018, "lon": -0.130888}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "HUBTOM", "modes": ["national-rail", "tube", "bus"], "icsCode": "1000236", "stopType": "TransportInterchange", "hubNaptanCode": "HUBTOM", "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": "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": "w4", "name": "W4", "uri": "/Line/w4", "type": "Line", "crowding": {"$type": "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": "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": "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": "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": "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": "41", "name": "41", "uri": "/Line/41", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "940GZZLUTMH", "lineIdentifier": ["victoria"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490009917D", "stationAtcoCode": "490G000667", "lineIdentifier": ["n41", "41"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490009917T", "stationAtcoCode": "490G000667", "lineIdentifier": ["n41", "41"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490009917Y", "stationAtcoCode": "490G000667", "lineIdentifier": ["w4", "192"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490009917B", "stationAtcoCode": "490G000667", "lineIdentifier": ["w4", "230", "123", "n73"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "49009917SW", "stationAtcoCode": "490G000667", "lineIdentifier": ["230", "123", "n73"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "49009917N", "stationAtcoCode": "490G000667", "lineIdentifier": ["192"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "910GTTNHMHL", "lineIdentifier": ["greater-anglia"]}], "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": "bus", "lineIdentifier": ["n41", "w4", "230", "123", "n73", "192", "41"]}, {"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "national-rail", "lineIdentifier": ["greater-anglia"]}], "status": true, "id": "HUBTOM", "commonName": "Tottenham Hale", "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": "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": "Tottenham Hale Underground Station,London Underground Ltd.,Station Rd,London,N17 9LR"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.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": "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": "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": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.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": "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, 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": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "CarParks_800494"}], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490G000667", "modes": ["bus"], "icsCode": "1009917", "stopType": "NaptanBusCoachStation", "stationNaptan": "490G000667", "hubNaptanCode": "HUBTOM", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490G000667", "commonName": "Tottenham Hale Bus Station", "placeType": "StopPoint", "additionalProperties": [], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490009917A", "indicator": "->S3", "modes": ["bus"], "icsCode": "1009917", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G000667", "hubNaptanCode": "HUBTOM", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490009917A", "commonName": "Tottenham Hale Bus Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.588857, "lon": -0.061046}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490009917B", "indicator": "Stop A", "stopLetter": "A", "modes": ["bus"], "icsCode": "1009917", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G000667", "hubNaptanCode": "HUBTOM", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490009917B", "commonName": "Tottenham Hale Bus Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.58834, "lon": -0.060765}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490009917D", "indicator": "Stop D", "stopLetter": "D", "modes": ["bus"], "icsCode": "1009917", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G000667", "hubNaptanCode": "HUBTOM", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490009917D", "commonName": "Tottenham Hale Bus Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.588334, "lon": -0.060924}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490009917T", "indicator": "Stop E", "stopLetter": "E", "modes": ["bus"], "icsCode": "1009917", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G000667", "hubNaptanCode": "HUBTOM", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490009917T", "commonName": "Tottenham Hale Bus Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.588337, "lon": -0.061155}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490009917Y", "indicator": "Stop C", "stopLetter": "C", "modes": ["bus"], "icsCode": "1009917", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G000667", "hubNaptanCode": "HUBTOM", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490009917Y", "commonName": "Tottenham Hale Bus Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.588574, "lon": -0.061304}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "49009917N", "indicator": "Stop F", "stopLetter": "F", "modes": ["bus"], "icsCode": "1009917", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G000667", "hubNaptanCode": "HUBTOM", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "49009917N", "commonName": "Tottenham Hale Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.589472, "lon": -0.060183}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "49009917SW", "indicator": "->N", "stopLetter": "->N", "modes": ["bus"], "icsCode": "1009917", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G000667", "hubNaptanCode": "HUBTOM", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "49009917SW", "commonName": "Tottenham Hale Bus Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.588248, "lon": -0.061159}], "lat": 51.588337, "lon": -0.061155}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "910GTTNHMHL", "modes": ["national-rail"], "icsCode": "1000236", "stopType": "NaptanRailStation", "stationNaptan": "910GTTNHMHL", "hubNaptanCode": "HUBTOM", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "910GTTNHMHL", "commonName": "Tottenham Hale Rail Station", "placeType": "StopPoint", "additionalProperties": [], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490G00236U", "modes": ["bus"], "icsCode": "1000236", "stopType": "NaptanOnstreetBusCoachStopCluster", "stationNaptan": "910GTTNHMHL", "hubNaptanCode": "HUBTOM", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490G00236U", "commonName": "Tottenham Hale Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.58831, "lon": -0.059929}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "4900TTNHMHL1", "indicator": "Entrance 1", "stopLetter": "1", "modes": [], "icsCode": "1000236", "stopType": "NaptanRailEntrance", "stationNaptan": "910GTTNHMHL", "hubNaptanCode": "HUBTOM", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "4900TTNHMHL1", "commonName": "Tottenham Hale Rail Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.588121, "lon": -0.060587}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "4900TTNHMHL2", "indicator": "Entrance 2", "stopLetter": "2", "modes": [], "icsCode": "1000236", "stopType": "NaptanRailEntrance", "stationNaptan": "910GTTNHMHL", "hubNaptanCode": "HUBTOM", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "4900TTNHMHL2", "commonName": "Tottenham Hale Rail Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.587963, "lon": -0.060261}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "4900TTNHMHL3", "indicator": "Entrance 3", "stopLetter": "3", "modes": [], "icsCode": "1000236", "stopType": "NaptanRailEntrance", "stationNaptan": "910GTTNHMHL", "hubNaptanCode": "HUBTOM", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "4900TTNHMHL3", "commonName": "Tottenham Hale Rail Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.588505, "lon": -0.06044}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9100TTNHMHL0", "modes": [], "icsCode": "1000236", "stopType": "NaptanRailAccessArea", "stationNaptan": "910GTTNHMHL", "hubNaptanCode": "HUBTOM", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "9100TTNHMHL0", "commonName": "Tottenham Hale", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 0.0, "lon": 0.0}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9100TTNHML1", "modes": [], "icsCode": "1000236", "stopType": "NaptanRailAccessArea", "stationNaptan": "910GTTNHMHL", "hubNaptanCode": "HUBTOM", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "9100TTNHML1", "commonName": "Tottenham Hale", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 0.0, "lon": 0.0}], "lat": 51.58831, "lon": -0.059929}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "940GZZLUTMH", "modes": ["tube"], "icsCode": "1000236", "stopType": "NaptanMetroStation", "stationNaptan": "940GZZLUTMH", "hubNaptanCode": "HUBTOM", "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": "940GZZLUTMH", "lineIdentifier": ["victoria"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["victoria"]}], "status": true, "id": "940GZZLUTMH", "commonName": "Tottenham Hale Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Tottenham Hale Underground Station,London Underground Ltd.,Station Rd,London,N17 9LR"}, {"$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": "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": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "CarParks_800494"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.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": "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": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$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": "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"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "ServiceInfo", "key": "Night", "sourceSystemKey": "TransXchangeETL", "value": "yes"}], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUTMH", "modes": ["tube"], "icsCode": "1000236", "stopType": "NaptanMetroAccessArea", "stationNaptan": "940GZZLUTMH", "hubNaptanCode": "HUBTOM", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "9400ZZLUTMH", "commonName": "Tottenham Hale 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": "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": "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": "Payphones", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Tottenham Hale Underground Station,London Underground Ltd.,Station Rd,London,N17 9LR"}, {"$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": "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": "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"}], "children": [], "lat": 51.588108, "lon": -0.060241}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUTMH1", "modes": ["tube"], "icsCode": "1000236", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUTMH", "hubNaptanCode": "HUBTOM", "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": "940GZZLUTMH", "lineIdentifier": ["victoria"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["victoria"]}], "status": true, "id": "9400ZZLUTMH1", "commonName": "Tottenham Hale 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": "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": "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": "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": "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": "Address", "sourceSystemKey": "StaticObjects", "value": "Tottenham Hale Underground Station,London Underground Ltd.,Station Rd,London,N17 9LR"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.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": "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": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}], "children": [], "lat": 51.588309, "lon": -0.061532}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUTMH2", "modes": ["tube"], "icsCode": "1000236", "stopType": "NaptanRailAccessArea", "stationNaptan": "940GZZLUTMH", "hubNaptanCode": "HUBTOM", "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": "940GZZLUTMH", "lineIdentifier": ["victoria"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["victoria"]}], "status": true, "id": "9400ZZLUTMH2", "commonName": "Tottenham Hale", "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": "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"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.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": "Bridge", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Tottenham Hale Underground Station,London Underground Ltd.,Station Rd,London,N17 9LR"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.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": "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": "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": "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": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}], "children": [], "lat": 51.588318, "lon": -0.061502}], "lat": 51.588108, "lon": -0.060241}], "lat": 51.588315, "lon": -0.06024}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "HUBUPM", "modes": ["national-rail", "overground", "bus", "tube"], "icsCode": "1000242", "stopType": "TransportInterchange", "hubNaptanCode": "HUBUPM", "lines": [{"$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": "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": "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"}, {"$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"}, {"$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"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490000242A", "stationAtcoCode": "910GUPMNSTR", "lineIdentifier": ["347", "646", "652", "248", "346", "370"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490000242U", "stationAtcoCode": "910GUPMNSTR", "lineIdentifier": ["347", "248", "346"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490015474C", "stationAtcoCode": "490G000935", "lineIdentifier": ["347", "652", "646", "248", "346", "370"]}, {"$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": "490019452E", "stationAtcoCode": "490G000936", "lineIdentifier": ["646", "370"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "940GZZLUUPM", "lineIdentifier": ["district"]}, {"$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", "naptanIdReference": "490015474B", "stationAtcoCode": "490G000935", "lineIdentifier": ["370"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "bus", "lineIdentifier": ["347", "652", "646", "248", "346", "370"]}, {"$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": "overground", "lineIdentifier": ["london-overground"]}], "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": "910GUPMNSTR", "modes": ["bus", "national-rail", "overground"], "icsCode": "1000242", "stopType": "NaptanRailStation", "stationNaptan": "910GUPMNSTR", "hubNaptanCode": "HUBUPM", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "910GUPMNSTR", "commonName": "Upminster Rail Station", "placeType": "StopPoint", "additionalProperties": [], "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": [], "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": [], "children": [], "lat": 51.558698, "lon": 0.251556}, {"$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": "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}, {"$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}], "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}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9100UPMNSP61", "modes": [], "icsCode": "1000242", "stopType": "NaptanRailAccessArea", "stationNaptan": "910GUPMNSTR", "hubNaptanCode": "HUBUPM", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "9100UPMNSP61", "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": "940GZZLUUPM", "modes": ["tube"], "icsCode": "1000242", "stopType": "NaptanMetroStation", "stationNaptan": "940GZZLUUPM", "hubNaptanCode": "HUBUPM", "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": "940GZZLUUPM", "lineIdentifier": ["district"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["district"]}], "status": true, "id": "940GZZLUUPM", "commonName": "Upminster 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 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": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "6"}, {"$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": "Opening Time", "key": "MonFriFrom", "sourceSystemKey": "StaticObjects", "value": "05: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": "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": "Refreshment 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": "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": "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": "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": "MonFriTo", "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": "Opening Time", "key": "SunFrom", "sourceSystemKey": "StaticObjects", "value": "06: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": "Opening Time", "key": "SunTo", "sourceSystemKey": "StaticObjects", "value": "22:00"}, {"$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": "9400ZZLUUPM", "modes": ["tube"], "icsCode": "1000242", "stopType": "NaptanMetroAccessArea", "stationNaptan": "940GZZLUUPM", "hubNaptanCode": "HUBUPM", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "9400ZZLUUPM", "commonName": "Upminster 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": "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": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$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": "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": "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": "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": "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": "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"}], "children": [], "lat": 51.559063, "lon": 0.250882}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUUPM1", "modes": ["tube"], "icsCode": "1000242", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUUPM", "hubNaptanCode": "HUBUPM", "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": "940GZZLUUPM", "lineIdentifier": ["district"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["district"]}], "status": true, "id": "9400ZZLUUPM1", "commonName": "Upminster 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": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$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": "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": "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": "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": "Opening Time", "key": "MonFriTo", "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": "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": "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": "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": "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": "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": "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"}], "children": [], "lat": 51.559335, "lon": 0.25127}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUUPM2", "modes": ["tube"], "icsCode": "1000242", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUUPM", "hubNaptanCode": "HUBUPM", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "9400ZZLUUPM2", "commonName": "Upminster Underground 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": "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": "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": "Opening Time", "key": "MonFriTo", "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": "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": "Gates", "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": "Refreshment facilities"}, {"$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": "Facility", "key": "Help 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": "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": "22:00"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Opening Time", "key": "SunFrom", "sourceSystemKey": "StaticObjects", "value": "06:45"}], "children": [], "lat": 51.559333, "lon": 0.251357}], "lat": 51.559063, "lon": 0.250882}], "lat": 51.558659, "lon": 0.250855}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "HUBVIC", "modes": ["national-rail", "bus", "tube"], "icsCode": "1000248", "stopType": "TransportInterchange", "hubNaptanCode": "HUBVIC", "lines": [{"$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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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"}, {"$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": "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": "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": "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": "13", "name": "13", "uri": "/Line/13", "type": "Line", "crowding": {"$type": "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": "490000248ZZ", "stationAtcoCode": "490G00248G", "lineIdentifier": ["2", "36", "n2", "6", "n32", "n136", "13"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490000248YZ", "stationAtcoCode": "490G00248G", "lineIdentifier": ["2", "36", "185", "n2", "n136"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490000248H", "stationAtcoCode": "490G00248G", "lineIdentifier": ["185", "26", "24", "n26"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490000248S", "stationAtcoCode": "490G00248G", "lineIdentifier": ["24"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490014050A", "stationAtcoCode": "490G000812", "lineIdentifier": ["52"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490002139ZZ", "stationAtcoCode": "490G00248G", "lineIdentifier": ["170", "6", "11", "n32", "n11", "c10", "n44", "13"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490000248G", "stationAtcoCode": "490G00248G", "lineIdentifier": ["170", "44", "c10", "n44"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490014050C", "stationAtcoCode": "490G000812", "lineIdentifier": ["390"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490000248N2", "stationAtcoCode": "490G00248G", "lineIdentifier": ["44", "c1"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490014050R", "stationAtcoCode": "490G00248G", "lineIdentifier": ["c1", "11", "n11"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490014050D", "stationAtcoCode": "490G000812", "lineIdentifier": ["38", "n38"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "910GVICTRIC", "lineIdentifier": ["southern", "thameslink", "southeastern", "gatwick-express"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "910GVICTRIC", "lineIdentifier": ["southern"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "4900000248S", "stationAtcoCode": "490G00248G", "lineIdentifier": ["6"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "940GZZLUVIC", "lineIdentifier": ["victoria"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490014050B", "stationAtcoCode": "490G000812", "lineIdentifier": ["3"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "940GZZLUVIC", "lineIdentifier": ["district", "circle"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "bus", "lineIdentifier": ["2", "36", "185", "24", "26", "52", "170", "390", "44", "n2", "c1", "n26", "38", "6", "11", "n32", "n38", "n136", "3", "n11", "c10", "n44", "13"]}, {"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "national-rail", "lineIdentifier": ["southern", "thameslink", "southeastern", "gatwick-express"]}, {"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["victoria", "district", "circle"]}], "status": true, "id": "HUBVIC", "commonName": "Victoria", "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": "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, 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": "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": "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": "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": "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": "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"}, {"$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": "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": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_161"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_167"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_177"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_268"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_288"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_316"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_320"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_360"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_799"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_826"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5970"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5744"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5654"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5773"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5788"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5743"}], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490G000812", "modes": ["bus"], "icsCode": "1014050", "stopType": "NaptanBusCoachStation", "stationNaptan": "490G000812", "hubNaptanCode": "HUBVIC", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490G000812", "commonName": "Victoria Bus Station", "placeType": "StopPoint", "additionalProperties": [], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490014050A", "indicator": "Stop A", "stopLetter": "A", "modes": ["bus"], "icsCode": "1014050", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G000812", "hubNaptanCode": "HUBVIC", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490014050A", "commonName": "Victoria Bus Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.495958, "lon": -0.144012}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490014050B", "indicator": "Stop B", "stopLetter": "B", "modes": ["bus"], "icsCode": "1014050", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G000812", "hubNaptanCode": "HUBVIC", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490014050B", "commonName": "Victoria Bus Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.496009, "lon": -0.143822}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490014050C", "indicator": "Stop C", "stopLetter": "C", "modes": ["bus"], "icsCode": "1014050", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G000812", "hubNaptanCode": "HUBVIC", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490014050C", "commonName": "Victoria Bus Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.496071, "lon": -0.143762}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490014050D", "indicator": "Stop D", "stopLetter": "D", "modes": ["bus"], "icsCode": "1014050", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G000812", "hubNaptanCode": "HUBVIC", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490014050D", "commonName": "Victoria Bus Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.496122, "lon": -0.143602}], "lat": 51.496071, "lon": -0.143762}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "910GVICTRIC", "modes": ["national-rail"], "icsCode": "1000248", "stopType": "NaptanRailStation", "stationNaptan": "910GVICTRIC", "hubNaptanCode": "HUBVIC", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "910GVICTRIC", "commonName": "London Victoria Rail Station", "placeType": "StopPoint", "additionalProperties": [], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "910GVICTRIE", "modes": [], "stopType": "NaptanRailStation", "stationNaptan": "910GVICTRIE", "hubNaptanCode": "HUBVIC", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "910GVICTRIE", "commonName": "London Victoria Rail Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.495257, "lon": -0.144559}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9100VICTRIE0", "modes": [], "icsCode": "1000248", "stopType": "NaptanRailAccessArea", "stationNaptan": "910GVICTRIC", "hubNaptanCode": "HUBVIC", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "9100VICTRIE0", "commonName": "Victoria Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 0.0, "lon": 0.0}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9100VICTRIC0", "modes": [], "icsCode": "1000248", "stopType": "NaptanRailAccessArea", "stationNaptan": "910GVICTRIC", "hubNaptanCode": "HUBVIC", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "9100VICTRIC0", "commonName": "Victoria Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 0.0, "lon": 0.0}], "lat": 51.495257, "lon": -0.144559}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "940GZZLUVIC", "modes": ["tube"], "icsCode": "1000248", "stopType": "NaptanMetroStation", "stationNaptan": "940GZZLUVIC", "hubNaptanCode": "HUBVIC", "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"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "940GZZLUVIC", "lineIdentifier": ["circle", "district"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "940GZZLUVIC", "lineIdentifier": ["victoria"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["circle", "district", "victoria"]}], "status": true, "id": "940GZZLUVIC", "commonName": "Victoria 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": "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": "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": "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": "Boarding Ramps", "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": "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": "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": "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": "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": "Lifts", "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": "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_161"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_167"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_177"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_268"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_316"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_320"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_360"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_646"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_799"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_826"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5970"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5744"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5654"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5773"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5743"}], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490G00248G", "modes": ["bus"], "icsCode": "1000248", "stopType": "NaptanOnstreetBusCoachStopCluster", "stationNaptan": "490G00248G", "hubNaptanCode": "HUBVIC", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490G00248G", "commonName": "Victoria Station", "placeType": "StopPoint", "additionalProperties": [], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "4900000248S", "indicator": "AP", "stopLetter": "AP", "modes": ["bus"], "icsCode": "1000248", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00248G", "hubNaptanCode": "HUBVIC", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "4900000248S", "commonName": "Victoria Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.496253, "lon": -0.143942}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000248G", "indicator": "Stop G", "stopLetter": "G", "modes": ["bus"], "icsCode": "1000248", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00248G", "hubNaptanCode": "HUBVIC", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000248G", "commonName": "Victoria Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.496534, "lon": -0.143498}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000248H", "indicator": "Stop J", "stopLetter": "J", "modes": ["bus"], "icsCode": "1000248", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00248G", "hubNaptanCode": "HUBVIC", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000248H", "commonName": "Victoria Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.495663, "lon": -0.14303}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000248N2", "indicator": "Stop S", "stopLetter": "S", "modes": ["bus"], "icsCode": "1000248", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00248G", "hubNaptanCode": "HUBVIC", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000248N2", "commonName": "Victoria Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.496488, "lon": -0.145114}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000248S", "indicator": "Stop U", "stopLetter": "U", "modes": ["bus"], "icsCode": "1000248", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00248G", "hubNaptanCode": "HUBVIC", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000248S", "commonName": "Victoria Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.496002, "lon": -0.142267}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000248S1", "indicator": "Stop Z5", "stopLetter": "Z5", "modes": ["bus"], "icsCode": "1000248", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00248G", "hubNaptanCode": "HUBVIC", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000248S1", "commonName": "Victoria", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.495364, "lon": -0.145692}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000248S2", "indicator": "Stop Z12", "stopLetter": "Z12", "modes": ["bus"], "icsCode": "1000248", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00248G", "hubNaptanCode": "HUBVIC", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000248S2", "commonName": "Victoria", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.494776, "lon": -0.146091}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000248UA", "indicator": "Stop 11", "stopLetter": "11", "modes": ["bus"], "icsCode": "1000248", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00248G", "hubNaptanCode": "HUBVIC", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000248UA", "commonName": "Victoria Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.49527, "lon": -0.145999}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000248Y", "indicator": "Z14", "stopLetter": "Z14", "modes": ["bus"], "icsCode": "1000248", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00248G", "hubNaptanCode": "HUBVIC", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000248Y", "commonName": "Victoria", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.497886, "lon": -0.14255}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000248YZ", "indicator": "Stop F", "stopLetter": "F", "modes": ["bus"], "icsCode": "1000248", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00248G", "hubNaptanCode": "HUBVIC", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000248YZ", "commonName": "Victoria Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.49622, "lon": -0.143526}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000248Z", "indicator": "16", "stopLetter": "16", "modes": ["bus"], "icsCode": "1000248", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00248G", "hubNaptanCode": "HUBVIC", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000248Z", "commonName": "Victoria", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.496084, "lon": -0.144612}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000248Z7", "indicator": "Stop Z7", "stopLetter": "Z7", "modes": ["bus"], "icsCode": "1000248", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00248G", "hubNaptanCode": "HUBVIC", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000248Z7", "commonName": "Victoria", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.496474, "lon": -0.145979}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000248ZY", "indicator": "Stop JA", "stopLetter": "JA", "modes": ["bus"], "icsCode": "1000248", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00248G", "hubNaptanCode": "HUBVIC", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000248ZY", "commonName": "Victoria Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.496563, "lon": -0.144203}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000248ZZ", "indicator": "Stop H", "stopLetter": "H", "modes": ["bus"], "icsCode": "1000248", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00248G", "hubNaptanCode": "HUBVIC", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000248ZZ", "commonName": "Victoria Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.495846, "lon": -0.143238}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490002139ZZ", "indicator": "Stop E", "stopLetter": "E", "modes": ["bus"], "icsCode": "1000248", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00248G", "hubNaptanCode": "HUBVIC", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490002139ZZ", "commonName": "Victoria Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.496283, "lon": -0.144128}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490007544N2", "indicator": "Stop Z6", "stopLetter": "Z6", "modes": ["bus"], "icsCode": "1000248", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00248G", "hubNaptanCode": "HUBVIC", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490007544N2", "commonName": "Victoria Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.496283, "lon": -0.145842}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490014050R", "indicator": "Stop R", "stopLetter": "R", "modes": ["bus"], "icsCode": "1000248", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00248G", "hubNaptanCode": "HUBVIC", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490014050R", "commonName": "Victoria Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.495773, "lon": -0.145388}], "lat": 51.495773, "lon": -0.145388}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490G00248J", "modes": ["bus"], "icsCode": "1000248", "stopType": "NaptanOnstreetBusCoachStopCluster", "stationNaptan": "490G00248J", "hubNaptanCode": "HUBVIC", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490G00248J", "commonName": "Victoria Station", "placeType": "StopPoint", "additionalProperties": [], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000248J", "indicator": "Stop Z1", "stopLetter": "Z1", "modes": ["bus"], "icsCode": "1000248", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00248J", "hubNaptanCode": "HUBVIC", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000248J", "commonName": "Victoria Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.494767, "lon": -0.142619}], "lat": 51.494767, "lon": -0.142619}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "4900VICTRIC0", "indicator": "Entrance 4", "stopLetter": "4", "modes": [], "icsCode": "1000248", "stopType": "NaptanRailEntrance", "stationNaptan": "940GZZLUVIC", "hubNaptanCode": "HUBVIC", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "4900VICTRIC0", "commonName": "London Victoria Rail Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.495971, "lon": -0.143723}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "4900VICTRIC4", "indicator": "Entrance 3", "stopLetter": "3", "modes": [], "icsCode": "1000248", "stopType": "NaptanRailEntrance", "stationNaptan": "940GZZLUVIC", "hubNaptanCode": "HUBVIC", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "4900VICTRIC4", "commonName": "London Victoria Rail Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.496004, "lon": -0.14352}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "4900VICTRIC1", "indicator": "Entrance 1", "stopLetter": "1", "modes": [], "icsCode": "1000248", "stopType": "NaptanMetroEntrance", "stationNaptan": "940GZZLUVIC", "hubNaptanCode": "HUBVIC", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "4900VICTRIC1", "commonName": "Victoria Underground Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.496596, "lon": -0.143986}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "4900VICTRIC2", "indicator": "Entrance 2", "stopLetter": "2", "modes": [], "icsCode": "1000248", "stopType": "NaptanMetroEntrance", "stationNaptan": "940GZZLUVIC", "hubNaptanCode": "HUBVIC", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "4900VICTRIC2", "commonName": "Victoria Underground Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.496318, "lon": -0.144026}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "4900VICTRIC5", "indicator": "Entrance 7", "stopLetter": "7", "modes": [], "icsCode": "1000248", "stopType": "NaptanMetroEntrance", "stationNaptan": "940GZZLUVIC", "hubNaptanCode": "HUBVIC", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "4900VICTRIC5", "commonName": "Victoria Underground Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.494064, "lon": -0.146538}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "4900VICTRIC7", "indicator": "Entrance 6", "stopLetter": "6", "modes": [], "icsCode": "1000248", "stopType": "NaptanMetroEntrance", "stationNaptan": "940GZZLUVIC", "hubNaptanCode": "HUBVIC", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "4900VICTRIC7", "commonName": "Victoria Underground Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.494308, "lon": -0.143171}, {"$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": "9400ZZLUVIC", "modes": ["tube"], "icsCode": "1000248", "stopType": "NaptanMetroAccessArea", "stationNaptan": "940GZZLUVIC", "hubNaptanCode": "HUBVIC", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "9400ZZLUVIC", "commonName": "Victoria 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": "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": "Boarding Ramps", "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": "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": "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": "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": "Help Points", "sourceSystemKey": "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, taxi ranks outside station, 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": "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"}], "children": [], "lat": 51.496359, "lon": -0.143102}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUVIC1", "modes": ["tube"], "icsCode": "1000248", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUVIC", "hubNaptanCode": "HUBVIC", "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": "940GZZLUVIC", "lineIdentifier": ["circle", "district"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["circle", "district"]}], "status": true, "id": "9400ZZLUVIC1", "commonName": "Victoria 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": "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": "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": "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"}, {"$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": "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": "Help 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": "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": "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": "Payphones", "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"}], "children": [], "lat": 51.49645, "lon": -0.144899}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUVIC2", "modes": ["tube"], "icsCode": "1000248", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUVIC", "hubNaptanCode": "HUBVIC", "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": "940GZZLUVIC", "lineIdentifier": ["victoria"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["victoria"]}], "status": true, "id": "9400ZZLUVIC2", "commonName": "Victoria 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": "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": "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": "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": "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": "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": "Toilets", "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": "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"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}], "children": [], "lat": 51.49712, "lon": -0.14346}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUVIC3", "modes": ["tube"], "icsCode": "1000248", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUVIC", "hubNaptanCode": "HUBVIC", "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": "940GZZLUVIC", "lineIdentifier": ["victoria"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["victoria"]}], "status": true, "id": "9400ZZLUVIC3", "commonName": "Victoria 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": "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": "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": "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": "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": "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": "Boarding Ramps", "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": "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": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Victoria Underground Station,London Underground Ltd.,Victoria St,London,SW1E 5ND"}], "children": [], "lat": 51.497031, "lon": -0.143536}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUVIC4", "modes": ["tube"], "icsCode": "1000248", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUVIC", "hubNaptanCode": "HUBVIC", "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": "940GZZLUVIC", "lineIdentifier": ["district", "circle"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["district", "circle"]}], "status": true, "id": "9400ZZLUVIC4", "commonName": "Victoria 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": "Facility", "key": "Help Points", "sourceSystemKey": "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": "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"}, {"$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": "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, 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": "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": "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": "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"}], "children": [], "lat": 51.496969, "lon": -0.143596}], "lat": 51.496359, "lon": -0.143102}], "lat": 51.495812, "lon": -0.143826}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "HUBVXH", "modes": ["tube", "bus", "national-rail"], "icsCode": "1000247", "stopType": "TransportInterchange", "hubNaptanCode": "HUBVXH", "lines": [{"$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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "452", "name": "452", "uri": "/Line/452", "type": "Line", "crowding": {"$type": "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": "490000247A", "stationAtcoCode": "490G00020252", "lineIdentifier": ["2", "36", "185", "n2", "n136"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490000247D", "stationAtcoCode": "490G00020252", "lineIdentifier": ["2", "n2", "88"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490000247C", "stationAtcoCode": "490G00020252", "lineIdentifier": ["36", "436", "185", "n136"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490000247E", "stationAtcoCode": "490G00020252", "lineIdentifier": ["436", "156", "344"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490000247G1", "stationAtcoCode": "490G00020252", "lineIdentifier": ["87", "77", "196", "n87", "452"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490000247B", "stationAtcoCode": "490G00020252", "lineIdentifier": ["87", "360", "88", "n87"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "910GVAUXHLM", "lineIdentifier": ["south-western-railway"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490000247J", "stationAtcoCode": "490G00020252", "lineIdentifier": ["360", "77", "344"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490000247H", "stationAtcoCode": "490G00020252", "lineIdentifier": ["156", "452"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490000247F", "stationAtcoCode": "490G00020252", "lineIdentifier": ["196"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "940GZZLUVXL", "lineIdentifier": ["victoria"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "bus", "lineIdentifier": ["2", "36", "436", "185", "87", "360", "156", "n2", "88", "77", "196", "n87", "n136", "344", "452"]}, {"$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": "tube", "lineIdentifier": ["victoria"]}], "status": true, "id": "HUBVXH", "commonName": "Vauxhall", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_270"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.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": "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": "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": "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": "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": "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": "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": "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": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_74"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_352"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_600"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_813"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5533"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5490"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_437"}], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490G00020252", "modes": ["bus"], "icsCode": "1020252", "stopType": "NaptanBusCoachStation", "stationNaptan": "490G00020252", "hubNaptanCode": "HUBVXH", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490G00020252", "commonName": "Vauxhall Bus Station", "placeType": "StopPoint", "additionalProperties": [], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000247A", "indicator": "Stop A", "stopLetter": "A", "modes": ["bus"], "icsCode": "1020252", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00020252", "hubNaptanCode": "HUBVXH", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000247A", "commonName": "Vauxhall Bus Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.486213, "lon": -0.123868}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000247B", "indicator": "Stop B", "stopLetter": "B", "modes": ["bus"], "icsCode": "1020252", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00020252", "hubNaptanCode": "HUBVXH", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000247B", "commonName": "Vauxhall Bus Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.485749, "lon": -0.124089}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000247C", "indicator": "Stop C", "stopLetter": "C", "modes": ["bus"], "icsCode": "1020252", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00020252", "hubNaptanCode": "HUBVXH", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000247C", "commonName": "Vauxhall Bus Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.485545, "lon": -0.124284}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000247D", "indicator": "Stop D", "stopLetter": "D", "modes": ["bus"], "icsCode": "1020252", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00020252", "hubNaptanCode": "HUBVXH", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000247D", "commonName": "Vauxhall Bus Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.485499, "lon": -0.124214}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000247E", "indicator": "Stop E", "stopLetter": "E", "modes": ["bus"], "icsCode": "1020252", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00020252", "hubNaptanCode": "HUBVXH", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000247E", "commonName": "Vauxhall Bus Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.485305, "lon": -0.124453}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000247F", "indicator": "Stop F", "stopLetter": "F", "modes": ["bus"], "icsCode": "1020252", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00020252", "hubNaptanCode": "HUBVXH", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000247F", "commonName": "Vauxhall Bus Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.485107, "lon": -0.124446}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000247G1", "indicator": "Stop G", "stopLetter": "G", "modes": ["bus"], "icsCode": "1020252", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00020252", "hubNaptanCode": "HUBVXH", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000247G1", "commonName": "Vauxhall Bus Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.484949, "lon": -0.124683}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000247H", "indicator": "Stop H", "stopLetter": "H", "modes": ["bus"], "icsCode": "1020252", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00020252", "hubNaptanCode": "HUBVXH", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000247H", "commonName": "Vauxhall Bus Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.484859, "lon": -0.124658}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000247J", "indicator": "Stop J", "stopLetter": "J", "modes": ["bus"], "icsCode": "1020252", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00020252", "hubNaptanCode": "HUBVXH", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000247J", "commonName": "Vauxhall Bus Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.484682, "lon": -0.124853}], "lat": 51.484949, "lon": -0.124683}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "910GVAUXHLM", "modes": ["national-rail"], "icsCode": "1000344", "stopType": "NaptanRailStation", "stationNaptan": "910GVAUXHLM", "hubNaptanCode": "HUBVXH", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "910GVAUXHLM", "commonName": "Vauxhall Rail Station", "placeType": "StopPoint", "additionalProperties": [], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "910GVAUXHLW", "modes": [], "stopType": "NaptanRailStation", "stationNaptan": "910GVAUXHLW", "hubNaptanCode": "HUBVXH", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "910GVAUXHLW", "commonName": "Vauxhall Rail Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.48619, "lon": -0.122889}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "4900VAUXHLM", "indicator": "Entrance 2", "stopLetter": "2", "modes": [], "icsCode": "1000344", "stopType": "NaptanRailEntrance", "stationNaptan": "910GVAUXHLM", "hubNaptanCode": "HUBVXH", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "4900VAUXHLM", "commonName": "Vauxhall Rail Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.486094, "lon": -0.123196}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "4900VAUXHLM1", "indicator": "Entrance 1", "stopLetter": "1", "modes": [], "icsCode": "1000344", "stopType": "NaptanRailEntrance", "stationNaptan": "910GVAUXHLM", "hubNaptanCode": "HUBVXH", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "4900VAUXHLM1", "commonName": "Vauxhall Rail Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.485379, "lon": -0.122318}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9100VAUXHLM4", "modes": [], "icsCode": "1000344", "stopType": "NaptanRailAccessArea", "stationNaptan": "910GVAUXHLM", "hubNaptanCode": "HUBVXH", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "9100VAUXHLM4", "commonName": "Vauxhall Rail Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 0.0, "lon": 0.0}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9100VAUXHLM1", "modes": [], "icsCode": "1000344", "stopType": "NaptanRailAccessArea", "stationNaptan": "910GVAUXHLM", "hubNaptanCode": "HUBVXH", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "9100VAUXHLM1", "commonName": "Vauxhall Rail Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 0.0, "lon": 0.0}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9100VAUXHLM2", "modes": [], "icsCode": "1000344", "stopType": "NaptanRailAccessArea", "stationNaptan": "910GVAUXHLM", "hubNaptanCode": "HUBVXH", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "9100VAUXHLM2", "commonName": "Vauxhall Rail Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 0.0, "lon": 0.0}], "lat": 51.48619, "lon": -0.122889}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "940GZZLUVXL", "modes": ["tube"], "icsCode": "1000247", "stopType": "NaptanMetroStation", "stationNaptan": "940GZZLUVXL", "hubNaptanCode": "HUBVXH", "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": "940GZZLUVXL", "lineIdentifier": ["victoria"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["victoria"]}], "status": true, "id": "940GZZLUVXL", "commonName": "Vauxhall 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": "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": "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": "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": "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": "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": "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": "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": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_74"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_146"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_270"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_437"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_600"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_813"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5533"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5490"}], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490G00247N", "modes": ["bus"], "icsCode": "1000247", "stopType": "NaptanOnstreetBusCoachStopCluster", "stationNaptan": "940GZZLUVXL", "hubNaptanCode": "HUBVXH", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490G00247N", "commonName": "Vauxhall", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.485743, "lon": -0.124204}, {"$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": "9400ZZLUVXL", "modes": ["tube"], "icsCode": "1000247", "stopType": "NaptanMetroAccessArea", "stationNaptan": "940GZZLUVXL", "hubNaptanCode": "HUBVXH", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "9400ZZLUVXL", "commonName": "Vauxhall 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": "Escalators", "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": "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": "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": "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": "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": "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": "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": "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"}], "children": [], "lat": 51.485743, "lon": -0.124204}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUVXL1", "modes": ["tube"], "icsCode": "1000247", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUVXL", "hubNaptanCode": "HUBVXH", "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": "940GZZLUVXL", "lineIdentifier": ["victoria"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["victoria"]}], "status": true, "id": "9400ZZLUVXL1", "commonName": "Vauxhall Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$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": "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": "Bridge", "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": "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": "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": "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": "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": "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": "Help Points", "sourceSystemKey": "StaticObjects", "value": "4 on platforms, 0 in ticket halls, 1 elsewhere"}], "children": [], "lat": 51.486216, "lon": -0.12453}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUVXL2", "modes": ["tube"], "icsCode": "1000247", "stopType": "NaptanRailAccessArea", "stationNaptan": "940GZZLUVXL", "hubNaptanCode": "HUBVXH", "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": "940GZZLUVXL", "lineIdentifier": ["victoria"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["victoria"]}], "status": true, "id": "9400ZZLUVXL2", "commonName": "Vauxhall", "placeType": "StopPoint", "additionalProperties": [{"$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": "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": "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, 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": "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": "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": "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": "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": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}], "children": [], "lat": 51.486216, "lon": -0.124516}], "lat": 51.485743, "lon": -0.124204}], "lat": 51.485739, "lon": -0.123303}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "HUBWAT", "modes": ["tube", "bus", "national-rail"], "icsCode": "1000254", "stopType": "TransportInterchange", "hubNaptanCode": "HUBWAT", "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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"}, {"$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": "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": "188", "name": "188", "uri": "/Line/188", "type": "Line", "crowding": {"$type": "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": "490000254C", "stationAtcoCode": "490G000404", "lineIdentifier": ["11", "77"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490000254A", "stationAtcoCode": "490G000404", "lineIdentifier": ["11", "77"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490000254W", "stationAtcoCode": "490G000275", "lineIdentifier": ["11", "381", "n381", "77", "c10"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490000254Z", "stationAtcoCode": "490G00254J", "lineIdentifier": ["381", "n381", "c10"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "940GZZLUWLO", "lineIdentifier": ["jubilee"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "940GZZLUWLO", "lineIdentifier": ["bakerloo"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490000254K", "stationAtcoCode": "490G000402", "lineIdentifier": ["1", "n171", "n68", "n1", "sl6", "68", "188"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490000254E", "stationAtcoCode": "490G000401", "lineIdentifier": ["1", "341", "c10", "139", "n1", "188"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490000254F", "stationAtcoCode": "490G000401", "lineIdentifier": ["341", "c10", "172"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490000254D", "stationAtcoCode": "490G000401", "lineIdentifier": ["176", "n171", "n68", "sl6", "59", "68", "172"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490000254H", "stationAtcoCode": "490G000402", "lineIdentifier": ["176", "139"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490000254J", "stationAtcoCode": "490G000402", "lineIdentifier": ["243", "59"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490000254EB", "stationAtcoCode": "490G000405", "lineIdentifier": ["243"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "910GWATRLMN", "lineIdentifier": ["south-western-railway"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "940GZZLUWLO", "lineIdentifier": ["northern"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "940GZZLUWLO", "lineIdentifier": ["waterloo-city"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "bus", "lineIdentifier": ["11", "381", "n381", "77", "1", "341", "c10", "176", "243", "139", "n171", "n68", "n1", "sl6", "59", "68", "172", "188"]}, {"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["jubilee", "bakerloo", "northern", "waterloo-city"]}, {"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "national-rail", "lineIdentifier": ["south-western-railway"]}], "status": true, "id": "HUBWAT", "commonName": "Waterloo", "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": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "3"}, {"$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": "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": "Help 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": "Escalators", "sourceSystemKey": "StaticObjects", "value": "23"}, {"$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": "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": "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": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_154"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_173"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_197"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_272"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_273"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_334"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_336"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_347"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_361"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_374"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_377"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_672"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_819"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5940"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5974"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5279"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5973"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5563"}], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490G000401", "modes": ["bus"], "icsCode": "1003705", "stopType": "NaptanOnstreetBusCoachStopCluster", "stationNaptan": "490G000401", "hubNaptanCode": "HUBWAT", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490G000401", "commonName": "Waterloo Station / Waterloo Road", "placeType": "StopPoint", "additionalProperties": [], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000254D", "indicator": "Stop D", "stopLetter": "D", "modes": ["bus"], "icsCode": "1003705", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G000401", "hubNaptanCode": "HUBWAT", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000254D", "commonName": "Waterloo Station / Waterloo Road", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.502732, "lon": -0.110438}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000254E", "indicator": "Stop E", "stopLetter": "E", "modes": ["bus"], "icsCode": "1003705", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G000401", "hubNaptanCode": "HUBWAT", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000254E", "commonName": "Waterloo Station / Waterloo Road", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.503512, "lon": -0.111414}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000254F", "indicator": "Stop F", "stopLetter": "F", "modes": ["bus"], "icsCode": "1003705", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G000401", "hubNaptanCode": "HUBWAT", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000254F", "commonName": "Waterloo Station / Waterloo Road", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.503635, "lon": -0.111755}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000254QA", "indicator": "Stop C", "stopLetter": "C", "modes": ["bus"], "icsCode": "1003705", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G000401", "hubNaptanCode": "HUBWAT", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000254QA", "commonName": "Waterloo Station / Waterloo Road", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.503011, "lon": -0.111003}], "lat": 51.502732, "lon": -0.110438}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490G000402", "modes": ["bus"], "icsCode": "1003713", "stopType": "NaptanOnstreetBusCoachStopCluster", "stationNaptan": "490G000402", "hubNaptanCode": "HUBWAT", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490G000402", "commonName": "Waterloo Station / Tenison Way", "placeType": "StopPoint", "additionalProperties": [], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000254H", "indicator": "Stop H", "stopLetter": "H", "modes": ["bus"], "icsCode": "1003713", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G000402", "hubNaptanCode": "HUBWAT", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000254H", "commonName": "Waterloo Station / Tenison Way", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.50405, "lon": -0.112401}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000254J", "indicator": "Stop J", "stopLetter": "J", "modes": ["bus"], "icsCode": "1003713", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G000402", "hubNaptanCode": "HUBWAT", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000254J", "commonName": "Waterloo Station / Tenison Way", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.504265, "lon": -0.113458}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000254K", "indicator": "Stop K", "stopLetter": "K", "modes": ["bus"], "icsCode": "1003713", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G000402", "hubNaptanCode": "HUBWAT", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000254K", "commonName": "Waterloo Station / Tenison Way", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.504359, "lon": -0.113742}], "lat": 51.504359, "lon": -0.113742}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490G000404", "modes": ["bus"], "icsCode": "1003722", "stopType": "NaptanOnstreetBusCoachStopCluster", "stationNaptan": "490G000404", "hubNaptanCode": "HUBWAT", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490G000404", "commonName": "Waterloo Station / Upper Taxi Road", "placeType": "StopPoint", "additionalProperties": [], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000254A", "indicator": "Stop A", "stopLetter": "A", "modes": ["bus"], "icsCode": "1003722", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G000404", "hubNaptanCode": "HUBWAT", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000254A", "commonName": "Waterloo Station / Upper Taxi Road", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.503807, "lon": -0.113506}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000254B", "indicator": "Stop B", "stopLetter": "B", "modes": ["bus"], "icsCode": "1003722", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G000404", "hubNaptanCode": "HUBWAT", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000254B", "commonName": "Waterloo Station / Upper Taxi Road", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.503719, "lon": -0.113063}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000254C", "indicator": "->W", "stopLetter": "->W", "modes": ["bus"], "icsCode": "1003722", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G000404", "hubNaptanCode": "HUBWAT", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000254C", "commonName": "Waterloo Station / Upper Taxi Road", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.503597, "lon": -0.112174}], "lat": 51.503719, "lon": -0.113063}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490G000275", "modes": ["bus"], "icsCode": "1001551", "stopType": "NaptanOnstreetBusCoachStopPair", "stationNaptan": "490G000275", "hubNaptanCode": "HUBWAT", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490G000275", "commonName": "Waterloo Station / York Road", "placeType": "StopPoint", "additionalProperties": [], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000254W", "indicator": "Stop W", "stopLetter": "W", "modes": ["bus"], "icsCode": "1001551", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G000275", "hubNaptanCode": "HUBWAT", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000254W", "commonName": "Waterloo Station / York Road", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.503529, "lon": -0.115261}], "lat": 51.503529, "lon": -0.115261}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490G000405", "modes": ["bus"], "icsCode": "1003727", "stopType": "NaptanOnstreetBusCoachStopPair", "stationNaptan": "490G000405", "hubNaptanCode": "HUBWAT", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490G000405", "commonName": "Waterloo Station / Mepham Street", "placeType": "StopPoint", "additionalProperties": [], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000254EB", "indicator": "Stop", "modes": ["bus"], "icsCode": "1003727", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G000405", "hubNaptanCode": "HUBWAT", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000254EB", "commonName": "Waterloo Station / Mepham Street", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.503919, "lon": -0.113198}], "lat": 51.503919, "lon": -0.113198}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490G000736", "modes": ["bus"], "icsCode": "1011890", "stopType": "NaptanOnstreetBusCoachStopPair", "stationNaptan": "490G000736", "hubNaptanCode": "HUBWAT", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490G000736", "commonName": "Sandell Street / Waterloo Station", "placeType": "StopPoint", "additionalProperties": [], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490011890E", "indicator": "Stop", "modes": ["bus"], "icsCode": "1011890", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G000736", "hubNaptanCode": "HUBWAT", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490011890E", "commonName": "Sandell Street / Waterloo Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.503735, "lon": -0.110728}], "lat": 51.503735, "lon": -0.110728}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "910GWATRLMN", "modes": ["national-rail"], "icsCode": "1000254", "stopType": "NaptanRailStation", "stationNaptan": "910GWATRLMN", "hubNaptanCode": "HUBWAT", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "910GWATRLMN", "commonName": "London Waterloo Rail Station", "placeType": "StopPoint", "additionalProperties": [], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490G00254J", "modes": ["bus"], "stopType": "NaptanOnstreetBusCoachStopCluster", "stationNaptan": "490G00254J", "hubNaptanCode": "HUBWAT", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490G00254J", "commonName": "Waterloo Station", "placeType": "StopPoint", "additionalProperties": [], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000254S", "indicator": "Stop", "modes": ["bus"], "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00254J", "hubNaptanCode": "HUBWAT", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000254S", "commonName": "Waterloo Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.502837, "lon": -0.115794}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000254Z", "indicator": "Stop V", "stopLetter": "V", "modes": ["bus"], "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00254J", "hubNaptanCode": "HUBWAT", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000254Z", "commonName": "Waterloo Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.503649, "lon": -0.115429}], "lat": 51.503649, "lon": -0.115429}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490G00254T", "modes": ["bus"], "icsCode": "1000254", "stopType": "NaptanOnstreetBusCoachStopCluster", "stationNaptan": "910GWATRLMN", "hubNaptanCode": "HUBWAT", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490G00254T", "commonName": "Waterloo Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.503299, "lon": -0.113109}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "4900WATRLMN2", "indicator": "Entrance 2", "stopLetter": "2", "modes": [], "icsCode": "1000254", "stopType": "NaptanRailEntrance", "stationNaptan": "910GWATRLMN", "hubNaptanCode": "HUBWAT", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "4900WATRLMN2", "commonName": "London Waterloo Rail Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.503898, "lon": -0.115231}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "4900WATRLMN3", "indicator": "Entrance 3", "stopLetter": "3", "modes": [], "icsCode": "1000254", "stopType": "NaptanRailEntrance", "stationNaptan": "910GWATRLMN", "hubNaptanCode": "HUBWAT", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "4900WATRLMN3", "commonName": "London Waterloo Rail Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.50336, "lon": -0.111464}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9100WATRLMN1", "modes": [], "icsCode": "1000254", "stopType": "NaptanRailAccessArea", "stationNaptan": "910GWATRLMN", "hubNaptanCode": "HUBWAT", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "9100WATRLMN1", "commonName": "Waterloo Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 0.0, "lon": 0.0}], "lat": 51.503299, "lon": -0.113109}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "940GZZLUWLO", "modes": ["tube"], "icsCode": "1000254", "stopType": "NaptanMetroStation", "stationNaptan": "940GZZLUWLO", "hubNaptanCode": "HUBWAT", "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"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "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": "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": "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": "940GZZLUWLO", "lineIdentifier": ["waterloo-city"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "940GZZLUWLO", "lineIdentifier": ["northern"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "940GZZLUWLO", "lineIdentifier": ["jubilee"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "940GZZLUWLO", "lineIdentifier": ["bakerloo"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["waterloo-city", "northern", "jubilee", "bakerloo"]}], "status": true, "id": "940GZZLUWLO", "commonName": "Waterloo 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": "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": "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": "Ticket Halls", "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": "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": "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": "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, 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": "46"}, {"$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": "Payphones", "sourceSystemKey": "StaticObjects", "value": "6"}, {"$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": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_154"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_173"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_197"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_272"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_273"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_334"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_336"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_347"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_361"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_374"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_377"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_672"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_815"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_819"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5940"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5974"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5279"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5973"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5563"}], "children": [{"$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": "9400ZZLUWLO", "modes": ["tube"], "icsCode": "1000254", "stopType": "NaptanMetroAccessArea", "stationNaptan": "940GZZLUWLO", "hubNaptanCode": "HUBWAT", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "9400ZZLUWLO", "commonName": "Waterloo 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": "Escalators", "sourceSystemKey": "StaticObjects", "value": "23"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.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": "46"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo 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": "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": "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": "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": "Help 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": "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": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "3"}], "children": [], "lat": 51.503299, "lon": -0.11478}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUWLO1", "modes": ["tube"], "icsCode": "1000254", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUWLO", "hubNaptanCode": "HUBWAT", "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": "940GZZLUWLO", "lineIdentifier": ["bakerloo"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["bakerloo"]}], "status": true, "id": "9400ZZLUWLO1", "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": "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": "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": "Help Points", "sourceSystemKey": "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": "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": "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": "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": "Ticket Halls", "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": "yes"}], "children": [], "lat": 51.503097, "lon": -0.11512}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUWLO2", "modes": ["tube"], "icsCode": "1000254", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUWLO", "hubNaptanCode": "HUBWAT", "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": "940GZZLUWLO", "lineIdentifier": ["bakerloo"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["bakerloo"]}], "status": true, "id": "9400ZZLUWLO2", "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": "Photo 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": "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": "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": "Payphones", "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": "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": "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": "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": "Car park", "sourceSystemKey": "StaticObjects", "value": "no"}], "children": [], "lat": 51.503052, "lon": -0.115093}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUWLO3", "modes": ["tube"], "icsCode": "1000254", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUWLO", "hubNaptanCode": "HUBWAT", "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": "940GZZLUWLO", "lineIdentifier": ["northern"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["northern"]}], "status": true, "id": "9400ZZLUWLO3", "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": "Facility", "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": "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": "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": "Help 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": "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": "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": "Escalators", "sourceSystemKey": "StaticObjects", "value": "23"}, {"$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": "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": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}], "children": [], "lat": 51.503189, "lon": -0.113574}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUWLO4", "modes": ["tube"], "icsCode": "1000254", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUWLO", "hubNaptanCode": "HUBWAT", "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": "940GZZLUWLO", "lineIdentifier": ["jubilee"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["jubilee"]}], "status": true, "id": "9400ZZLUWLO4", "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": "Photo 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": "Waterloo Underground Station,London Underground Ltd.,York Rd,London,SE1 7ND"}, {"$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": "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": "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": "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": "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": "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.503333, "lon": -0.113021}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUWLO5", "modes": ["tube"], "icsCode": "1000254", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUWLO", "hubNaptanCode": "HUBWAT", "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": "940GZZLUWLO", "lineIdentifier": ["waterloo-city"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["waterloo-city"]}], "status": true, "id": "9400ZZLUWLO5", "commonName": "Waterloo 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": "Payphones", "sourceSystemKey": "StaticObjects", "value": "6"}, {"$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": "Gates", "sourceSystemKey": "StaticObjects", "value": "46"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo 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": "Waterloo Underground Station,London Underground Ltd.,York Rd,London,SE1 7ND"}, {"$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": "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": "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, post office style queuing for tickets, routeways platform to ticket hall."}], "children": [], "lat": 51.502683, "lon": -0.112875}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUWLO6", "modes": ["tube"], "icsCode": "1000254", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUWLO", "hubNaptanCode": "HUBWAT", "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": "940GZZLUWLO", "lineIdentifier": ["waterloo-city"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["waterloo-city"]}], "status": true, "id": "9400ZZLUWLO6", "commonName": "Waterloo Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$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": "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": "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": "Payphones", "sourceSystemKey": "StaticObjects", "value": "6"}, {"$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": "Help Points", "sourceSystemKey": "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": "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": "23"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "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.502738, "lon": -0.11293}], "lat": 51.503299, "lon": -0.11478}], "lat": 51.504269, "lon": -0.113356}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "HUBWBP", "modes": ["overground", "bus", "tube", "national-rail"], "icsCode": "1000260", "stopType": "TransportInterchange", "hubNaptanCode": "HUBWBP", "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": "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": "london-overground", "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": "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": "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"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "940GZZLUWBN", "lineIdentifier": ["district"]}, {"$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", "naptanIdReference": "490000260O", "stationAtcoCode": "490G00260O", "lineIdentifier": ["n97", "n74", "430", "74"]}, {"$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": "tube", "lineIdentifier": ["district"]}, {"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "bus", "lineIdentifier": ["n97", "n74", "430", "74"]}, {"$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": "910GWBRMPTN", "modes": ["overground"], "icsCode": "1000260", "stopType": "NaptanRailStation", "stationNaptan": "910GWBRMPTN", "hubNaptanCode": "HUBWBP", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "910GWBRMPTN", "commonName": "West Brompton Rail Station", "placeType": "StopPoint", "additionalProperties": [], "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": [], "children": [], "lat": 51.487375, "lon": -0.195638}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9100WBRMPTN1", "modes": [], "icsCode": "1000260", "stopType": "NaptanRailAccessArea", "stationNaptan": "910GWBRMPTN", "hubNaptanCode": "HUBWBP", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "9100WBRMPTN1", "commonName": "West Brompton Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 0.0, "lon": 0.0}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9100WBRMPTN0", "modes": [], "icsCode": "1000260", "stopType": "NaptanRailAccessArea", "stationNaptan": "910GWBRMPTN", "hubNaptanCode": "HUBWBP", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "9100WBRMPTN0", "commonName": "West Brompton Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 0.0, "lon": 0.0}], "lat": 51.487061, "lon": -0.195593}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "940GZZLUWBN", "modes": ["tube"], "icsCode": "1000260", "stopType": "NaptanMetroStation", "stationNaptan": "940GZZLUWBN", "hubNaptanCode": "HUBWBP", "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": "940GZZLUWBN", "lineIdentifier": ["district"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["district"]}], "status": true, "id": "940GZZLUWBN", "commonName": "West Brompton 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": "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": "Help 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": "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": "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 (part)."}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, 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": "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": "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": "9400ZZLUWBN", "modes": ["tube"], "icsCode": "1000260", "stopType": "NaptanMetroAccessArea", "stationNaptan": "940GZZLUWBN", "hubNaptanCode": "HUBWBP", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "9400ZZLUWBN", "commonName": "West Brompton 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": "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"}, {"$type": "Tfl.Api.Presentation.Entities.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)."}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.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": "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": "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": "Gates", "sourceSystemKey": "StaticObjects", "value": "3"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "2"}], "children": [], "lat": 51.487268, "lon": -0.195599}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUWBN1", "modes": ["tube"], "icsCode": "1000260", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUWBN", "hubNaptanCode": "HUBWBP", "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": "940GZZLUWBN", "lineIdentifier": ["district"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["district"]}], "status": true, "id": "9400ZZLUWBN1", "commonName": "West Brompton 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": "Help Points", "sourceSystemKey": "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": "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": "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": "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": "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": "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"}], "children": [], "lat": 51.486962, "lon": -0.195006}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUWBN2", "modes": ["tube"], "icsCode": "1000260", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUWBN", "hubNaptanCode": "HUBWBP", "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": "940GZZLUWBN", "lineIdentifier": ["district"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["district"]}], "status": true, "id": "9400ZZLUWBN2", "commonName": "West Brompton 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": "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": "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": "Facility", "key": "Photo 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": "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": "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": "Car park", "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.486916, "lon": -0.194921}], "lat": 51.487268, "lon": -0.195599}], "lat": 51.487168, "lon": -0.195593}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "HUBWEH", "modes": ["dlr", "bus", "tube", "national-rail"], "icsCode": "1000262", "stopType": "TransportInterchange", "hubNaptanCode": "HUBWEH", "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": "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": "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": "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"}, {"$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", "stationAtcoCode": "910GWHAMHL", "lineIdentifier": ["c2c"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "940GZZLUWHM", "lineIdentifier": ["jubilee"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490000262B", "stationAtcoCode": "490G00262A", "lineIdentifier": ["276"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490000262A", "stationAtcoCode": "490G00262A", "lineIdentifier": ["276"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "940GZZLUWHM", "lineIdentifier": ["hammersmith-city", "district"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "940GZZDLWHM", "lineIdentifier": ["dlr"]}], "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": "tube", "lineIdentifier": ["jubilee", "hammersmith-city", "district"]}, {"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "bus", "lineIdentifier": ["276"]}, {"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "dlr", "lineIdentifier": ["dlr"]}], "status": true, "id": "HUBWEH", "commonName": "West Ham", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5826"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.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": "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": "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": "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": "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": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "West Ham Underground Station,London Underground Ltd.,Manor Rd,London,E15 3BN"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.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": "Escalators", "sourceSystemKey": "StaticObjects", "value": "6"}, {"$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"}], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "910GWHAMHL", "modes": ["national-rail"], "icsCode": "1000262", "stopType": "NaptanRailStation", "stationNaptan": "910GWHAMHL", "hubNaptanCode": "HUBWEH", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "910GWHAMHL", "commonName": "West Ham Rail Station", "placeType": "StopPoint", "additionalProperties": [], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490G00262A", "modes": ["bus"], "stopType": "NaptanOnstreetBusCoachStopCluster", "stationNaptan": "490G00262A", "hubNaptanCode": "HUBWEH", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490G00262A", "commonName": "West Ham Station", "placeType": "StopPoint", "additionalProperties": [], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000262A", "indicator": "Stop P", "stopLetter": "P", "modes": ["bus"], "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00262A", "hubNaptanCode": "HUBWEH", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000262A", "commonName": "West Ham Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.527951, "lon": 0.00473}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000262B", "indicator": "Stop B", "stopLetter": "B", "modes": ["bus"], "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00262A", "hubNaptanCode": "HUBWEH", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000262B", "commonName": "West Ham Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.527328, "lon": 0.00489}], "lat": 51.527328, "lon": 0.00489}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "4900WHAMHL0", "indicator": "Entrance 1", "stopLetter": "1", "modes": [], "icsCode": "1000262", "stopType": "NaptanRailEntrance", "stationNaptan": "910GWHAMHL", "hubNaptanCode": "HUBWEH", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "4900WHAMHL0", "commonName": "West Ham Rail Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.527766, "lon": 0.005039}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9100WHAMHL0", "modes": [], "icsCode": "1000262", "stopType": "NaptanRailAccessArea", "stationNaptan": "910GWHAMHL", "hubNaptanCode": "HUBWEH", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "9100WHAMHL0", "commonName": "West Ham", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 0.0, "lon": 0.0}], "lat": 51.528489, "lon": 0.005431}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "940GZZDLWHM", "modes": ["dlr"], "stopType": "NaptanMetroStation", "stationNaptan": "940GZZDLWHM", "hubNaptanCode": "HUBWEH", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "940GZZDLWHM", "commonName": "West Ham DLR Station", "placeType": "StopPoint", "additionalProperties": [], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZDLWHM1", "indicator": "Platform 1", "stopLetter": "1", "modes": [], "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZDLWHM", "hubNaptanCode": "HUBWEH", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "9400ZZDLWHM1", "commonName": "West Ham DLR Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 0.0, "lon": 0.0}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZDLWHM2", "indicator": "Platform 2", "stopLetter": "2", "modes": [], "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZDLWHM", "hubNaptanCode": "HUBWEH", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "9400ZZDLWHM2", "commonName": "West Ham DLR Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 0.0, "lon": 0.0}], "lat": 51.527894, "lon": 0.004482}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "940GZZLUWHM", "modes": ["tube"], "icsCode": "1000262", "stopType": "NaptanMetroStation", "stationNaptan": "940GZZLUWHM", "hubNaptanCode": "HUBWEH", "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": "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": "940GZZLUWHM", "lineIdentifier": ["jubilee"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "940GZZLUWHM", "lineIdentifier": ["district", "hammersmith-city"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["jubilee", "district", "hammersmith-city"]}], "status": true, "id": "940GZZLUWHM", "commonName": "West Ham 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": "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": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "West Ham Underground Station,London Underground Ltd.,Manor Rd,London,E15 3BN"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "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": "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": "Escalators", "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": "ServiceInfo", "key": "Night", "sourceSystemKey": "TransXchangeETL", "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": "Photo 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"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.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": "TaxiRank_5826"}], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUWHM", "modes": ["tube"], "icsCode": "1000262", "stopType": "NaptanMetroAccessArea", "stationNaptan": "940GZZLUWHM", "hubNaptanCode": "HUBWEH", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "9400ZZLUWHM", "commonName": "West Ham 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": "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": "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": "2/3"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "West Ham Underground Station,London Underground Ltd.,Manor Rd,London,E15 3BN"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.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": "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": "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": "Photo 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.528136, "lon": 0.005055}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUWHM1", "indicator": "Platform 1", "stopLetter": "1", "modes": ["tube"], "icsCode": "1000262", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUWHM", "hubNaptanCode": "HUBWEH", "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": "940GZZLUWHM", "lineIdentifier": ["hammersmith-city", "district"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["hammersmith-city", "district"]}], "status": true, "id": "9400ZZLUWHM1", "commonName": "West Ham Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "West Ham Underground Station,London Underground Ltd.,Manor Rd,London,E15 3BN"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.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": "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": "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": "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": "Photo 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": "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": "Escalators", "sourceSystemKey": "StaticObjects", "value": "6"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "2"}], "children": [], "lat": 51.528558, "lon": 0.005593}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUWHM2", "indicator": "Platform 2", "stopLetter": "2", "modes": ["tube"], "icsCode": "1000262", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUWHM", "hubNaptanCode": "HUBWEH", "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": "940GZZLUWHM", "lineIdentifier": ["jubilee"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["jubilee"]}], "status": true, "id": "9400ZZLUWHM2", "commonName": "West Ham 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": "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": "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": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "West Ham Underground Station,London Underground Ltd.,Manor Rd,London,E15 3BN"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.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": "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": "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": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "0"}], "children": [], "lat": 51.528648, "lon": 0.005597}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUWHM3", "indicator": "Platform 5", "stopLetter": "5", "modes": ["tube"], "icsCode": "1000262", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUWHM", "hubNaptanCode": "HUBWEH", "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": "940GZZLUWHM", "lineIdentifier": ["district", "hammersmith-city"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["district", "hammersmith-city"]}], "status": true, "id": "9400ZZLUWHM3", "commonName": "West Ham 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": "Facility", "key": "Toilets", "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": "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": "Photo 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": "West Ham Underground Station,London Underground Ltd.,Manor Rd,London,E15 3BN"}, {"$type": "Tfl.Api.Presentation.Entities.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/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": "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.527511, "lon": 0.004264}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUWHM4", "indicator": "Platform 6", "stopLetter": "6", "modes": ["tube"], "icsCode": "1000262", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUWHM", "hubNaptanCode": "HUBWEH", "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": "940GZZLUWHM", "lineIdentifier": ["jubilee"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["jubilee"]}], "status": true, "id": "9400ZZLUWHM4", "commonName": "West Ham 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": "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": "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": "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": "Boarding Ramps", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "West Ham Underground Station,London Underground Ltd.,Manor Rd,London,E15 3BN"}, {"$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": "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": "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"}], "children": [], "lat": 51.527514, "lon": 0.00412}], "lat": 51.528136, "lon": 0.005055}], "lat": 51.528178, "lon": 0.004997}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "HUBWHC", "modes": ["overground", "bus", "tube"], "icsCode": "1000249", "stopType": "TransportInterchange", "hubNaptanCode": "HUBWHC", "lines": [{"$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": "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"}, {"$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": "london-overground", "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": "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": "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": "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": "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": "275", "name": "275", "uri": "/Line/275", "type": "Line", "crowding": {"$type": "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": "490000249XX", "stationAtcoCode": "490G00249M", "lineIdentifier": ["357", "w15", "w19", "w12", "97"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490000249YY", "stationAtcoCode": "490G00249M", "lineIdentifier": ["357", "w15", "97"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490015259L", "stationAtcoCode": "490G00249M", "lineIdentifier": ["w15", "w19", "w12", "230", "212", "275"]}, {"$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": "490000249K", "stationAtcoCode": "490G00249K", "lineIdentifier": ["34", "sl2"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "bus", "lineIdentifier": ["357", "w15", "w19", "w12", "230", "97", "34", "sl2", "212", "275"]}, {"$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"]}], "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": "910GWLTWCEN", "modes": ["overground"], "icsCode": "1000249", "stopType": "NaptanRailStation", "stationNaptan": "910GWLTWCEN", "hubNaptanCode": "HUBWHC", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "910GWLTWCEN", "commonName": "Walthamstow Central Rail Station", "placeType": "StopPoint", "additionalProperties": [], "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": [], "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": [], "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": [], "children": [], "lat": 51.583168, "lon": -0.020295}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9100WLTWCEN1", "modes": [], "icsCode": "1000249", "stopType": "NaptanRailAccessArea", "stationNaptan": "910GWLTWCEN", "hubNaptanCode": "HUBWHC", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "9100WLTWCEN1", "commonName": "Walthamstow Central Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 0.0, "lon": 0.0}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9100WLTWCEN2", "modes": [], "icsCode": "1000249", "stopType": "NaptanRailAccessArea", "stationNaptan": "910GWLTWCEN", "hubNaptanCode": "HUBWHC", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "9100WLTWCEN2", "commonName": "Walthamstow Central Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 0.0, "lon": 0.0}], "lat": 51.582919, "lon": -0.019815}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "940GZZLUWWL", "modes": ["tube"], "icsCode": "1000249", "stopType": "NaptanMetroStation", "stationNaptan": "940GZZLUWWL", "hubNaptanCode": "HUBWHC", "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": "940GZZLUWWL", "lineIdentifier": ["victoria"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["victoria"]}], "status": true, "id": "940GZZLUWWL", "commonName": "Walthamstow Central 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": "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"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.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": "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": "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": "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": "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": "Help 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": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "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": "9400ZZLUWWL", "modes": ["tube"], "icsCode": "1000249", "stopType": "NaptanMetroAccessArea", "stationNaptan": "940GZZLUWWL", "hubNaptanCode": "HUBWHC", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "9400ZZLUWWL", "commonName": "Walthamstow Central 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": "Toilets", "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": "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": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.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": "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": "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": "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"}], "children": [], "lat": 51.582965, "lon": -0.019885}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUWWL1", "modes": ["tube"], "icsCode": "1000249", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUWWL", "hubNaptanCode": "HUBWHC", "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": "940GZZLUWWL", "lineIdentifier": ["victoria"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["victoria"]}], "status": true, "id": "9400ZZLUWWL1", "commonName": "Walthamstow Central 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": "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 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, 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": "Lifts", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$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": "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": "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": "Help Points", "sourceSystemKey": "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"}], "children": [], "lat": 51.583067, "lon": -0.01952}], "lat": 51.582965, "lon": -0.019885}], "lat": 51.582948, "lon": -0.019842}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "HUBWHD", "modes": ["bus", "overground", "tube", "national-rail"], "icsCode": "1000263", "stopType": "TransportInterchange", "hubNaptanCode": "HUBWHD", "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": "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": "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": "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": "328", "name": "328", "uri": "/Line/328", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "lineGroup": [{"$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"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "940GZZLUWHP", "lineIdentifier": ["jubilee"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490001330N", "stationAtcoCode": "910GWHMPSTM", "lineIdentifier": ["139", "c11", "328"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490000263S", "stationAtcoCode": "490G00263E", "lineIdentifier": ["139", "c11", "328"]}], "lineModeGroups": [{"$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"]}, {"$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": ["139", "c11", "328"]}], "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": "910GWHMDSTD", "modes": ["overground"], "icsCode": "1000321", "stopType": "NaptanRailStation", "stationNaptan": "910GWHMDSTD", "hubNaptanCode": "HUBWHD", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "910GWHMDSTD", "commonName": "West Hampstead Rail Station", "placeType": "StopPoint", "additionalProperties": [], "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": [], "icsCode": "1000321", "stopType": "NaptanRailAccessArea", "stationNaptan": "910GWHMDSTD", "hubNaptanCode": "HUBWHD", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "9100WHMDSTD0", "commonName": "West Hampstead Overground Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 0.0, "lon": 0.0}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9100WHMDSTD1", "modes": [], "icsCode": "1000321", "stopType": "NaptanRailAccessArea", "stationNaptan": "910GWHMDSTD", "hubNaptanCode": "HUBWHD", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "9100WHMDSTD1", "commonName": "West Hampstead Overground Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 0.0, "lon": 0.0}], "lat": 51.547468, "lon": -0.191185}, {"$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": [{"$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": "940GZZLUWHP", "lineIdentifier": ["jubilee"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["jubilee"]}], "status": true, "id": "940GZZLUWHP", "commonName": "West Hampstead 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": "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": "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": "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": "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": "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": "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": "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."}], "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": [{"$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": "9400ZZLUWHP", "modes": ["tube"], "icsCode": "1000263", "stopType": "NaptanMetroAccessArea", "stationNaptan": "940GZZLUWHP", "hubNaptanCode": "HUBWHD", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "9400ZZLUWHP", "commonName": "West Hampstead 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": "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": "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": "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": "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": "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": "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.546638, "lon": -0.191059}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUWHP1", "modes": ["tube"], "icsCode": "1000263", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUWHP", "hubNaptanCode": "HUBWHD", "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": "940GZZLUWHP", "lineIdentifier": ["jubilee"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["jubilee"]}], "status": true, "id": "9400ZZLUWHP1", "commonName": "West Hampstead 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": "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": "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": "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": "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": "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": "Escalators", "sourceSystemKey": "StaticObjects", "value": "0"}], "children": [], "lat": 51.5468, "lon": -0.190475}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUWHP2", "modes": ["tube"], "icsCode": "1000263", "stopType": "NaptanRailAccessArea", "stationNaptan": "940GZZLUWHP", "hubNaptanCode": "HUBWHD", "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": "940GZZLUWHP", "lineIdentifier": ["jubilee"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["jubilee"]}], "status": true, "id": "9400ZZLUWHP2", "commonName": "West Hampstead 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": "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": "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": "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": "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": "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": "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": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$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"}], "children": [], "lat": 51.546809, "lon": -0.190475}], "lat": 51.546638, "lon": -0.191059}], "lat": 51.547533, "lon": -0.191357}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "HUBWIJ", "modes": ["overground", "tube", "bus"], "icsCode": "1000271", "stopType": "TransportInterchange", "hubNaptanCode": "HUBWIJ", "lines": [{"$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": "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": "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": "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"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "london-overground", "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": "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", "naptanIdReference": "490015057H", "stationAtcoCode": "490G00271H", "lineIdentifier": ["220", "n18", "18"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490014692N", "stationAtcoCode": "490G00271L", "lineIdentifier": ["220", "487"]}, {"$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": "490000271M", "stationAtcoCode": "490G00271L", "lineIdentifier": ["266", "228", "n266"]}, {"$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", "stationAtcoCode": "910GWLSDJHL", "lineIdentifier": ["london-overground"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "940GZZLUWJN", "lineIdentifier": ["bakerloo"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "bus", "lineIdentifier": ["220", "266", "n18", "487", "228", "n266", "18"]}, {"$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": "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": "910GWLSDJHL", "modes": ["overground"], "icsCode": "1000271", "stopType": "NaptanRailStation", "stationNaptan": "910GWLSDJHL", "hubNaptanCode": "HUBWIJ", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "910GWLSDJHL", "commonName": "Willesden Junction Rail Station", "placeType": "StopPoint", "additionalProperties": [], "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": [], "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": [], "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": [], "children": [], "lat": 51.531848, "lon": -0.24401}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9100WLSDJHL1", "modes": [], "icsCode": "1000271", "stopType": "NaptanRailAccessArea", "stationNaptan": "910GWLSDJHL", "hubNaptanCode": "HUBWIJ", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "9100WLSDJHL1", "commonName": "Willesden Junction Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 0.0, "lon": 0.0}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9100WLSDNJL1", "modes": [], "icsCode": "1000271", "stopType": "NaptanRailAccessArea", "stationNaptan": "910GWLSDJHL", "hubNaptanCode": "HUBWIJ", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "9100WLSDNJL1", "commonName": "Willesden Junction Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 0.0, "lon": 0.0}], "lat": 51.532497, "lon": -0.244548}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "940GZZLUWJN", "modes": ["tube"], "icsCode": "1000271", "stopType": "NaptanMetroStation", "stationNaptan": "940GZZLUWJN", "hubNaptanCode": "HUBWIJ", "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": "940GZZLUWJN", "lineIdentifier": ["bakerloo"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["bakerloo"]}], "status": true, "id": "940GZZLUWJN", "commonName": "Willesden Junction 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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "SunTo", "sourceSystemKey": "StaticObjects", "value": "18:30"}], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUWJN", "modes": ["tube"], "icsCode": "1000271", "stopType": "NaptanMetroAccessArea", "stationNaptan": "940GZZLUWJN", "hubNaptanCode": "HUBWIJ", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "9400ZZLUWJN", "commonName": "Willesden Junction 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": "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": "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": "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": "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": "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": "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": "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": "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"}], "children": [], "lat": 51.532259, "lon": -0.244283}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUWJN1", "modes": ["tube"], "icsCode": "1000271", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUWJN", "hubNaptanCode": "HUBWIJ", "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": "940GZZLUWJN", "lineIdentifier": ["bakerloo"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["bakerloo"]}], "status": true, "id": "9400ZZLUWJN1", "commonName": "Willesden Junction 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": "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": "Willesden Junction,London Overground Ltd.,Station Approach,Harlesden,NW10 4UY"}, {"$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": "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": "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": "Lifts", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$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": "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": "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": "18: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": "Car park", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$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": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "no"}], "children": [], "lat": 51.532496, "lon": -0.24449}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUWJN2", "modes": ["tube"], "icsCode": "1000271", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUWJN", "hubNaptanCode": "HUBWIJ", "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": "940GZZLUWJN", "lineIdentifier": ["bakerloo"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["bakerloo"]}], "status": true, "id": "9400ZZLUWJN2", "commonName": "Willesden Junction 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": "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": "Opening Time", "key": "MonFriFrom", "sourceSystemKey": "StaticObjects", "value": "06: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": "Opening Time", "key": "SunFrom", "sourceSystemKey": "StaticObjects", "value": "09:15"}, {"$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": "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": "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": "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": "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": "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": "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": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}], "children": [], "lat": 51.532398, "lon": -0.244537}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUWJN3", "modes": ["tube"], "icsCode": "1000271", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUWJN", "hubNaptanCode": "HUBWIJ", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "9400ZZLUWJN3", "commonName": "Willesden Junction 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": "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": "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": "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": "Help Points", "sourceSystemKey": "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": "09:15"}, {"$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": "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 London Overground only"}, {"$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": "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": "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": "Opening Time", "key": "MonFriFrom", "sourceSystemKey": "StaticObjects", "value": "06:30"}], "children": [], "lat": 51.532325, "lon": -0.244468}], "lat": 51.532259, "lon": -0.244283}], "lat": 51.532556, "lon": -0.243006}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "HUBWIM", "modes": ["tram", "bus", "tube", "national-rail"], "icsCode": "1000272", "stopType": "TransportInterchange", "hubNaptanCode": "HUBWIM", "lines": [{"$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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "200", "name": "200", "uri": "/Line/200", "type": "Line", "crowding": {"$type": "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": "490015472L", "stationAtcoCode": "490G00272P", "lineIdentifier": ["93", "57", "219", "131", "n87", "200"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490014734R", "stationAtcoCode": "490G00014734", "lineIdentifier": ["93", "493", "200"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490014734S", "stationAtcoCode": "490G00014734", "lineIdentifier": ["93", "493", "200"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490015472D", "stationAtcoCode": "490G00272P", "lineIdentifier": ["93", "57", "163", "164", "156", "219", "131", "n87"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "910GWDON", "lineIdentifier": ["south-western-railway"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "9400ZZCRWMB1", "stationAtcoCode": "940GZZCRWMB", "lineIdentifier": ["tram"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490000272P", "stationAtcoCode": "490G00272P", "lineIdentifier": ["163", "164", "156", "n87"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490014734B", "stationAtcoCode": "490G000930", "lineIdentifier": ["156", "493", "n87"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490014734A", "stationAtcoCode": "490G000930", "lineIdentifier": ["156", "493", "n87"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "940GZZLUWIM", "lineIdentifier": ["district"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "910GWIMBLDN", "lineIdentifier": ["thameslink"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490014738J", "stationAtcoCode": "490G00014738", "lineIdentifier": ["200"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490014738K", "stationAtcoCode": "490G00014738", "lineIdentifier": ["200"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "bus", "lineIdentifier": ["93", "57", "163", "164", "156", "219", "493", "131", "n87", "200"]}, {"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "national-rail", "lineIdentifier": ["south-western-railway", "thameslink"]}, {"$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": "tube", "lineIdentifier": ["district"]}], "status": true, "id": "HUBWIM", "commonName": "Wimbledon", "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": "Help Points", "sourceSystemKey": "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": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Wimbledon,London Underground Ltd.,The Broadway,London,SW19 7NL"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.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": "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": "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": "yes (male, female)"}, {"$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": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5382"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5128"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5691"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5679"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5692"}], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490G00014734", "modes": ["bus"], "icsCode": "1014734", "stopType": "NaptanOnstreetBusCoachStopPair", "stationNaptan": "490G00014734", "hubNaptanCode": "HUBWIM", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490G00014734", "commonName": "Wimbledon Hill Road", "placeType": "StopPoint", "additionalProperties": [], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490014734R", "indicator": "Stop R", "stopLetter": "R", "modes": ["bus"], "icsCode": "1014734", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00014734", "hubNaptanCode": "HUBWIM", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490014734R", "commonName": "Wimbledon Hill Road", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.422516, "lon": -0.209369}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490014734S", "indicator": "Stop S", "stopLetter": "S", "modes": ["bus"], "icsCode": "1014734", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00014734", "hubNaptanCode": "HUBWIM", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490014734S", "commonName": "Wimbledon Hill Road", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.422417, "lon": -0.208798}], "lat": 51.422516, "lon": -0.209369}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490G00014738", "modes": ["bus"], "icsCode": "1014738", "stopType": "NaptanOnstreetBusCoachStopPair", "stationNaptan": "490G00014738", "hubNaptanCode": "HUBWIM", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490G00014738", "commonName": "Wimbledon Police Station", "placeType": "StopPoint", "additionalProperties": [], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490014738J", "indicator": "Stop J", "stopLetter": "J", "modes": ["bus"], "icsCode": "1014738", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00014738", "hubNaptanCode": "HUBWIM", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490014738J", "commonName": "Wimbledon Police Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.421008, "lon": -0.204265}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490014738K", "indicator": "Stop K", "stopLetter": "K", "modes": ["bus"], "icsCode": "1014738", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00014738", "hubNaptanCode": "HUBWIM", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490014738K", "commonName": "Wimbledon Police Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.421409, "lon": -0.203415}], "lat": 51.421008, "lon": -0.204265}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490G000930", "modes": ["bus"], "icsCode": "1019043", "stopType": "NaptanOnstreetBusCoachStopPair", "stationNaptan": "490G000930", "hubNaptanCode": "HUBWIM", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490G000930", "commonName": "Alexandra Road / Wimbledon", "placeType": "StopPoint", "additionalProperties": [], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490014734A", "indicator": "Stop A", "stopLetter": "A", "modes": ["bus"], "icsCode": "1019043", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G000930", "hubNaptanCode": "HUBWIM", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490014734A", "commonName": "Alexandra Road / Wimbledon", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.422028, "lon": -0.206886}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490014734B", "indicator": "Stop B", "stopLetter": "B", "modes": ["bus"], "icsCode": "1019043", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G000930", "hubNaptanCode": "HUBWIM", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490014734B", "commonName": "Alexandra Road / Wimbledon", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.421814, "lon": -0.206966}], "lat": 51.422028, "lon": -0.206886}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "910GWDON", "modes": ["national-rail"], "icsCode": "1000272", "stopType": "NaptanRailStation", "stationNaptan": "910GWDON", "hubNaptanCode": "HUBWIM", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "910GWDON", "commonName": "Wimbledon Rail Station", "placeType": "StopPoint", "additionalProperties": [], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "910GWIMBLDN", "modes": ["national-rail"], "icsCode": "1000272", "stopType": "NaptanRailStation", "stationNaptan": "910GWIMBLDN", "hubNaptanCode": "HUBWIM", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "910GWIMBLDN", "commonName": "Wimbledon Rail Station", "placeType": "StopPoint", "additionalProperties": [], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490G00272P", "modes": ["bus"], "icsCode": "1000272", "stopType": "NaptanOnstreetBusCoachStopCluster", "stationNaptan": "490G00272P", "hubNaptanCode": "HUBWIM", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490G00272P", "commonName": "Wimbledon Station", "placeType": "StopPoint", "additionalProperties": [], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000272P", "indicator": "Stop P", "stopLetter": "P", "modes": ["bus"], "icsCode": "1000272", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00272P", "hubNaptanCode": "HUBWIM", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000272P", "commonName": "Wimbledon Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.420893, "lon": -0.206743}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000272Y", "indicator": "->E", "stopLetter": "->E", "modes": ["bus"], "icsCode": "1000272", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00272P", "hubNaptanCode": "HUBWIM", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000272Y", "commonName": "Wimbledon Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.420789, "lon": -0.205798}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000272Z", "indicator": "->NW", "modes": ["bus"], "icsCode": "1000272", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00272P", "hubNaptanCode": "HUBWIM", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000272Z", "commonName": "Wimbledon Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.420342, "lon": -0.206592}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490015472D", "indicator": "Stop D", "stopLetter": "D", "modes": ["bus"], "icsCode": "1000272", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00272P", "hubNaptanCode": "HUBWIM", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490015472D", "commonName": "Wimbledon Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.420657, "lon": -0.205429}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490015472L", "indicator": "Stop L", "stopLetter": "L", "modes": ["bus"], "icsCode": "1000272", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00272P", "hubNaptanCode": "HUBWIM", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490015472L", "commonName": "Wimbledon Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.420288, "lon": -0.206594}], "lat": 51.420893, "lon": -0.206743}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "4900WIMBLDN1", "indicator": "Entrance 1", "stopLetter": "1", "modes": [], "icsCode": "1000272", "stopType": "NaptanRailEntrance", "stationNaptan": "910GWIMBLDN", "hubNaptanCode": "HUBWIM", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "4900WIMBLDN1", "commonName": "Wimbledon Rail Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.421068, "lon": -0.207024}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "4900WIMBLDN2", "indicator": "Entrance 2", "stopLetter": "2", "modes": [], "icsCode": "1000272", "stopType": "NaptanRailEntrance", "stationNaptan": "910GWIMBLDN", "hubNaptanCode": "HUBWIM", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "4900WIMBLDN2", "commonName": "Wimbledon Rail Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.420803, "lon": -0.205567}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9100WIMBLDN1", "modes": [], "icsCode": "1000272", "stopType": "NaptanRailAccessArea", "stationNaptan": "910GWIMBLDN", "hubNaptanCode": "HUBWIM", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "9100WIMBLDN1", "commonName": "Wimbledon", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 0.0, "lon": 0.0}], "lat": 51.421222, "lon": -0.206371}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9100WDON1", "modes": [], "icsCode": "1000272", "stopType": "NaptanRailAccessArea", "stationNaptan": "910GWDON", "hubNaptanCode": "HUBWIM", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "9100WDON1", "commonName": "Wimbledon", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 0.0, "lon": 0.0}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9100WDON2", "modes": [], "icsCode": "1000272", "stopType": "NaptanRailAccessArea", "stationNaptan": "910GWDON", "hubNaptanCode": "HUBWIM", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "9100WDON2", "commonName": "Wimbledon", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 0.0, "lon": 0.0}], "lat": 51.421222, "lon": -0.206385}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "940GZZCRWMB", "modes": ["tram"], "icsCode": "1000272", "stopType": "NaptanMetroStation", "stationNaptan": "940GZZCRWMB", "hubNaptanCode": "HUBWIM", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "940GZZCRWMB", "commonName": "Wimbledon Tram Stop", "placeType": "StopPoint", "additionalProperties": [], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZCRWMB1", "modes": [], "icsCode": "1000272", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZCRWMB", "hubNaptanCode": "HUBWIM", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "9400ZZCRWMB1", "commonName": "Wimbledon", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 0.0, "lon": 0.0}], "lat": 51.421051, "lon": -0.205816}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "940GZZLUWIM", "modes": ["tube"], "icsCode": "1000272", "stopType": "NaptanMetroStation", "stationNaptan": "940GZZLUWIM", "hubNaptanCode": "HUBWIM", "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": "940GZZLUWIM", "lineIdentifier": ["district"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["district"]}], "status": true, "id": "940GZZLUWIM", "commonName": "Wimbledon 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": "Toilets", "sourceSystemKey": "StaticObjects", "value": "yes (male, female)"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Wimbledon,London Underground Ltd.,The Broadway,London,SW19 7NL"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo 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": "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": "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": "Lifts", "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": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5382"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5128"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5691"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5679"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5692"}], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUWIM", "modes": ["tube"], "icsCode": "1000272", "stopType": "NaptanMetroAccessArea", "stationNaptan": "940GZZLUWIM", "hubNaptanCode": "HUBWIM", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "9400ZZLUWIM", "commonName": "Wimbledon 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": "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": "Wimbledon,London Underground Ltd.,The Broadway,London,SW19 7NL"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.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": "Facility", "key": "Help Points", "sourceSystemKey": "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": "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": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.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": "Gates", "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.421207, "lon": -0.206573}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUWIM1", "modes": ["tube"], "icsCode": "1000272", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUWIM", "hubNaptanCode": "HUBWIM", "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": "940GZZLUWIM", "lineIdentifier": ["district"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["district"]}], "status": true, "id": "9400ZZLUWIM1", "commonName": "Wimbledon 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": "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": "Toilets", "sourceSystemKey": "StaticObjects", "value": "yes (male, female)"}, {"$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": "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": "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": "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": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Wimbledon,London Underground Ltd.,The Broadway,London,SW19 7NL"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "0"}], "children": [], "lat": 51.421342, "lon": -0.206625}], "lat": 51.421207, "lon": -0.206573}], "lat": 51.421505, "lon": -0.206444}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "HUBWMB", "modes": ["overground", "bus", "tube", "national-rail"], "icsCode": "1000256", "stopType": "TransportInterchange", "hubNaptanCode": "HUBWMB", "lines": [{"$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": "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": "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": "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": "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": "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": "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": "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": "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": "london-overground", "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": "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": "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": "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": "h17", "name": "H17", "uri": "/Line/h17", "type": "Line", "crowding": {"$type": "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": "490000256G", "stationAtcoCode": "490G00256G", "lineIdentifier": ["92", "n83", "83", "483", "182"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490000256H", "stationAtcoCode": "490G00256G", "lineIdentifier": ["92", "n18", "204", "182", "18"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490000256F", "stationAtcoCode": "490G00256G", "lineIdentifier": ["n18", "204", "223", "297", "79", "18"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490000256E", "stationAtcoCode": "490G00256G", "lineIdentifier": ["n83", "83", "483", "223", "297", "79"]}, {"$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", "stationAtcoCode": "910GWMBY", "lineIdentifier": ["west-midlands-trains"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "910GWMBY", "lineIdentifier": ["london-overground"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "940GZZLUWYC", "lineIdentifier": ["bakerloo"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "bus", "lineIdentifier": ["92", "n18", "204", "n83", "83", "483", "223", "182", "297", "79", "18", "h17"]}, {"$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": "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": "910GWMBY", "modes": ["overground", "national-rail"], "icsCode": "1000256", "stopType": "NaptanRailStation", "stationNaptan": "910GWMBY", "hubNaptanCode": "HUBWMB", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "910GWMBY", "commonName": "Wembley Central Rail Station", "placeType": "StopPoint", "additionalProperties": [], "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": [], "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": [], "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": [], "children": [], "lat": 51.551879, "lon": -0.296175}, {"$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}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9100WMBYDC1", "modes": [], "icsCode": "1000256", "stopType": "NaptanRailAccessArea", "stationNaptan": "910GWMBY", "hubNaptanCode": "HUBWMB", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "9100WMBYDC1", "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": "9100WMBYDC2", "modes": [], "icsCode": "1000256", "stopType": "NaptanRailAccessArea", "stationNaptan": "910GWMBY", "hubNaptanCode": "HUBWMB", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "9100WMBYDC2", "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": "940GZZLUWYC", "modes": ["tube"], "icsCode": "1000256", "stopType": "NaptanMetroStation", "stationNaptan": "940GZZLUWYC", "hubNaptanCode": "HUBWMB", "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": "940GZZLUWYC", "lineIdentifier": ["bakerloo"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["bakerloo"]}], "status": true, "id": "940GZZLUWYC", "commonName": "Wembley Central 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, 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": "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": "Opening Time", "key": "SatFrom", "sourceSystemKey": "StaticObjects", "value": "09: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": "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": "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": "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": "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": "Wembley Central,London Overground Ltd.,High Road,Wembley,HA9 7AJ"}, {"$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": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUWYC", "modes": ["tube"], "icsCode": "1000256", "stopType": "NaptanMetroAccessArea", "stationNaptan": "940GZZLUWYC", "hubNaptanCode": "HUBWMB", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "9400ZZLUWYC", "commonName": "Wembley Central Underground 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": "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": "12"}, {"$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": "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": "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": "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": "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": "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": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "yes"}], "children": [], "lat": 51.552304, "lon": -0.296852}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUWYC1", "modes": ["tube"], "icsCode": "1000256", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUWYC", "hubNaptanCode": "HUBWMB", "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": "940GZZLUWYC", "lineIdentifier": ["bakerloo"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["bakerloo"]}], "status": true, "id": "9400ZZLUWYC1", "commonName": "Wembley Central 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": "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": "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": "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": "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"}, {"$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": "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": "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": "Car park", "sourceSystemKey": "StaticObjects", "value": "no"}], "children": [], "lat": 51.551739, "lon": -0.29631}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUWYC2", "indicator": "southbound", "modes": ["tube"], "icsCode": "1000256", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUWYC", "hubNaptanCode": "HUBWMB", "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": "940GZZLUWYC", "lineIdentifier": ["bakerloo"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["bakerloo"]}], "status": true, "id": "9400ZZLUWYC2", "commonName": "Wembley Central 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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "yes"}], "children": [], "lat": 51.552312, "lon": -0.296794}], "lat": 51.552304, "lon": -0.296852}], "lat": 51.55232, "lon": -0.296642}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "HUBWRU", "modes": ["national-rail", "tube", "bus"], "icsCode": "1000267", "stopType": "TransportInterchange", "hubNaptanCode": "HUBWRU", "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": "278", "name": "278", "uri": "/Line/278", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "u1", "name": "U1", "uri": "/Line/u1", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "u10", "name": "U10", "uri": "/Line/u10", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "chiltern-railways", "name": "Chiltern Railways", "uri": "/Line/chiltern-railways", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "940GZZLUWRP", "lineIdentifier": ["central"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490000267A", "stationAtcoCode": "490G00267B", "lineIdentifier": ["278", "u1", "u10"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490000267B", "stationAtcoCode": "490G00267B", "lineIdentifier": ["278", "u1", "u10"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "910GWRUISLP", "lineIdentifier": ["chiltern-railways"]}], "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": "bus", "lineIdentifier": ["278", "u1", "u10"]}, {"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "national-rail", "lineIdentifier": ["chiltern-railways"]}], "status": true, "id": "HUBWRU", "commonName": "West Ruislip", "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, 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": "Address", "sourceSystemKey": "StaticObjects", "value": "West Ruislip Station,London Underground Ltd.,Ickenham Rd,West Ruislip,Middlesex"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.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": "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": "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": "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": "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": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "910GWRUISLP", "modes": ["national-rail"], "icsCode": "1000267", "stopType": "NaptanRailStation", "stationNaptan": "910GWRUISLP", "hubNaptanCode": "HUBWRU", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "910GWRUISLP", "commonName": "West Ruislip Rail Station", "placeType": "StopPoint", "additionalProperties": [], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490G00267B", "modes": ["bus"], "icsCode": "1000267", "stopType": "NaptanOnstreetBusCoachStopCluster", "stationNaptan": "490G00267B", "hubNaptanCode": "HUBWRU", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490G00267B", "commonName": "West Ruislip Station", "placeType": "StopPoint", "additionalProperties": [], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000267A", "indicator": "Stop S", "stopLetter": "S", "modes": ["bus"], "icsCode": "1000267", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00267B", "hubNaptanCode": "HUBWRU", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000267A", "commonName": "West Ruislip Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.569626, "lon": -0.438075}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000267B", "indicator": "Stop M", "stopLetter": "M", "modes": ["bus"], "icsCode": "1000267", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00267B", "hubNaptanCode": "HUBWRU", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000267B", "commonName": "West Ruislip Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.570079, "lon": -0.437627}], "lat": 51.569626, "lon": -0.438075}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "4900WRUISLP1", "indicator": "Entrance 1", "stopLetter": "1", "modes": [], "icsCode": "1000267", "stopType": "NaptanRailEntrance", "stationNaptan": "910GWRUISLP", "hubNaptanCode": "HUBWRU", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "4900WRUISLP1", "commonName": "West Ruislip Rail Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.569758, "lon": -0.437869}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "4900WRUISLP2", "indicator": "Entrance 2", "stopLetter": "2", "modes": [], "icsCode": "1000267", "stopType": "NaptanRailEntrance", "stationNaptan": "910GWRUISLP", "hubNaptanCode": "HUBWRU", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "4900WRUISLP2", "commonName": "West Ruislip Rail Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.569781, "lon": -0.436887}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9100WRUISLP0", "modes": [], "icsCode": "1000267", "stopType": "NaptanRailAccessArea", "stationNaptan": "910GWRUISLP", "hubNaptanCode": "HUBWRU", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "9100WRUISLP0", "commonName": "West Ruislip", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 0.0, "lon": 0.0}], "lat": 51.569758, "lon": -0.437768}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "940GZZLUWRP", "modes": ["tube"], "icsCode": "1000267", "stopType": "NaptanMetroStation", "stationNaptan": "940GZZLUWRP", "hubNaptanCode": "HUBWRU", "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": "940GZZLUWRP", "lineIdentifier": ["central"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["central"]}], "status": true, "id": "940GZZLUWRP", "commonName": "West Ruislip 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": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "West Ruislip Station,London Underground Ltd.,Ickenham Rd,West Ruislip,Middlesex"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, 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": "Help Points", "sourceSystemKey": "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": "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": "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": "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": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUWRP", "modes": ["tube"], "icsCode": "1000267", "stopType": "NaptanMetroAccessArea", "stationNaptan": "940GZZLUWRP", "hubNaptanCode": "HUBWRU", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "9400ZZLUWRP", "commonName": "West Ruislip 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": "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": "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": "Toilets", "sourceSystemKey": "StaticObjects", "value": "yes (male, female)"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "West Ruislip Station,London Underground Ltd.,Ickenham Rd,West Ruislip,Middlesex"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.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, 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": "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": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "6"}], "children": [], "lat": 51.569688, "lon": -0.437886}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUWRP1", "modes": ["tube"], "icsCode": "1000267", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUWRP", "hubNaptanCode": "HUBWRU", "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": "940GZZLUWRP", "lineIdentifier": ["central"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["central"]}], "status": true, "id": "9400ZZLUWRP1", "commonName": "West Ruislip 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": "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": "Bridge", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "West Ruislip Station,London Underground Ltd.,Ickenham Rd,West Ruislip,Middlesex"}, {"$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": "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 (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": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "6"}], "children": [], "lat": 51.56951, "lon": -0.437343}], "lat": 51.569688, "lon": -0.437886}], "lat": 51.569721, "lon": -0.437816}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "HUBWSM", "modes": ["tube", "bus"], "icsCode": "1000266", "stopType": "TransportInterchange", "hubNaptanCode": "HUBWSM", "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"}, {"$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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "n3", "name": "N3", "uri": "/Line/n3", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "940GZZLUWSM", "lineIdentifier": ["district", "circle"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490015048A", "stationAtcoCode": "490G00020361", "lineIdentifier": ["n11", "88", "n53", "n44", "12", "159", "453", "n381", "n155", "n136", "n87", "24", "26", "87", "n26", "n109", "n3"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490015048T", "stationAtcoCode": "490G00020361", "lineIdentifier": ["n11", "88", "n53", "n44", "n136", "n87", "24", "26", "87", "n26", "n3"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490000266G", "stationAtcoCode": "490G00020361", "lineIdentifier": ["n53", "159", "12", "453", "n381", "n155", "n109"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "940GZZLUWSM", "lineIdentifier": ["jubilee"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["district", "circle", "jubilee"]}, {"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "bus", "lineIdentifier": ["n11", "88", "n53", "159", "n44", "12", "453", "n381", "n155", "n136", "n87", "24", "26", "87", "n26", "n109", "n3"]}], "status": true, "id": "HUBWSM", "commonName": "Westminster", "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": "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": "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": "Westminster Station,London Underground Ltd.,Bridge St,London,SW1A 2JR"}, {"$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": "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": "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": "Boarding Ramps", "sourceSystemKey": "StaticObjects", "value": "yes Circle and District lines only"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.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": "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": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_583"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_762"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_818"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_4884"}], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490G00020361", "modes": ["bus"], "icsCode": "1020361", "stopType": "NaptanOnstreetBusCoachStopCluster", "stationNaptan": "490G00020361", "hubNaptanCode": "HUBWSM", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490G00020361", "commonName": "Westminster Stn / Parliament Square", "placeType": "StopPoint", "additionalProperties": [], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000266G", "indicator": "Stop G", "stopLetter": "G", "modes": ["bus"], "icsCode": "1020361", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00020361", "hubNaptanCode": "HUBWSM", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000266G", "commonName": "Westminster Stn / Parliament Square", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.501597, "lon": -0.125988}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490015048A", "indicator": "Stop A", "stopLetter": "A", "modes": ["bus"], "icsCode": "1020361", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00020361", "hubNaptanCode": "HUBWSM", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490015048A", "commonName": "Westminster Stn / Parliament Square", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.501873, "lon": -0.126366}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490015048C", "indicator": "Stop C", "stopLetter": "C", "modes": ["bus"], "icsCode": "1020361", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00020361", "hubNaptanCode": "HUBWSM", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490015048C", "commonName": "Westminster Stn / Parliament Square", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.501568, "lon": -0.126407}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490015048T", "indicator": "Stop F", "stopLetter": "F", "modes": ["bus"], "icsCode": "1020361", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00020361", "hubNaptanCode": "HUBWSM", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490015048T", "commonName": "Westminster Stn / Parliament Square", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.502478, "lon": -0.125995}], "lat": 51.501873, "lon": -0.126366}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490G000852", "modes": ["bus"], "icsCode": "1015048", "stopType": "NaptanOnstreetBusCoachStopCluster", "stationNaptan": "490G000852", "hubNaptanCode": "HUBWSM", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490G000852", "commonName": "Parliament Square", "placeType": "StopPoint", "additionalProperties": [], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490003059D", "indicator": "Stop M", "stopLetter": "M", "modes": ["bus"], "icsCode": "1015048", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G000852", "hubNaptanCode": "HUBWSM", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490003059D", "commonName": "Parliament Square", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.497953, "lon": -0.12585}], "lat": 51.497953, "lon": -0.12585}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "940GZZLUWSM", "modes": ["tube"], "icsCode": "1000266", "stopType": "NaptanMetroStation", "stationNaptan": "940GZZLUWSM", "hubNaptanCode": "HUBWSM", "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"}, {"$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": "940GZZLUWSM", "lineIdentifier": ["district", "circle"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "940GZZLUWSM", "lineIdentifier": ["jubilee"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["district", "circle", "jubilee"]}], "status": true, "id": "940GZZLUWSM", "commonName": "Westminster 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": "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": "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": "Help Points", "sourceSystemKey": "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": "Westminster Station,London Underground Ltd.,Bridge St,London,SW1A 2JR"}, {"$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": "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": "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": "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": "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": "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": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_583"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_762"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_818"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_4884"}], "children": [{"$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": "9400ZZLUWSM", "modes": ["tube"], "icsCode": "1000266", "stopType": "NaptanMetroAccessArea", "stationNaptan": "940GZZLUWSM", "hubNaptanCode": "HUBWSM", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "9400ZZLUWSM", "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": "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": "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": "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": "Help 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": "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": "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": "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": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}], "children": [], "lat": 51.50132, "lon": -0.124861}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUWSM1", "modes": ["tube"], "icsCode": "1000266", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUWSM", "hubNaptanCode": "HUBWSM", "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": "940GZZLUWSM", "lineIdentifier": ["district", "circle"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["district", "circle"]}], "status": true, "id": "9400ZZLUWSM1", "commonName": "Westminster 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": "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": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "4"}, {"$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": "Facility", "key": "WiFi", "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": "Facility", "key": "Help 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": "Westminster Station,London Underground Ltd.,Bridge St,London,SW1A 2JR"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.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": "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": "15"}], "children": [], "lat": 51.501284, "lon": -0.124877}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUWSM2", "modes": ["tube"], "icsCode": "1000266", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUWSM", "hubNaptanCode": "HUBWSM", "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": "940GZZLUWSM", "lineIdentifier": ["district", "circle"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["district", "circle"]}], "status": true, "id": "9400ZZLUWSM2", "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": "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": "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": "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": "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": "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": "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": "Euro Cash Machines", "sourceSystemKey": "StaticObjects", "value": "yes"}], "children": [], "lat": 51.501185, "lon": -0.124838}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUWSM3", "modes": ["tube"], "icsCode": "1000266", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUWSM", "hubNaptanCode": "HUBWSM", "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": "940GZZLUWSM", "lineIdentifier": ["jubilee"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["jubilee"]}], "status": true, "id": "9400ZZLUWSM3", "commonName": "Westminster 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": "Boarding Ramps", "sourceSystemKey": "StaticObjects", "value": "yes Circle and District lines 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": "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": "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": "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": "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": "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": "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": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$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": "subway to street, routeways platform to ticket hall."}], "children": [], "lat": 51.501004, "lon": -0.124773}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUWSM4", "modes": ["tube"], "icsCode": "1000266", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUWSM", "hubNaptanCode": "HUBWSM", "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": "940GZZLUWSM", "lineIdentifier": ["jubilee"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["jubilee"]}], "status": true, "id": "9400ZZLUWSM4", "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": "Payphones", "sourceSystemKey": "StaticObjects", "value": "4"}, {"$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": "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": "17"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, 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": "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": "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"}], "children": [], "lat": 51.501006, "lon": -0.124932}], "lat": 51.50132, "lon": -0.124861}], "lat": 51.501603, "lon": -0.125984}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "HUBZCW", "modes": ["tube", "bus", "overground"], "icsCode": "1000037", "stopType": "TransportInterchange", "hubNaptanCode": "HUBZCW", "lines": [{"$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": "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": "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": "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": "london-overground", "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": "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": "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": "c10", "name": "C10", "uri": "/Line/c10", "type": "Line", "crowding": {"$type": "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": "490004733C", "stationAtcoCode": "490G000438", "lineIdentifier": ["p12", "381", "1"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490004733D", "stationAtcoCode": "490G000438", "lineIdentifier": ["p12", "225", "199", "1", "c10"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490000037S", "stationAtcoCode": "490G000438", "lineIdentifier": ["225", "199", "188", "n199"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490004733B", "stationAtcoCode": "490G000438", "lineIdentifier": ["188", "381", "n199", "c10"]}, {"$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"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "bus", "lineIdentifier": ["p12", "225", "199", "188", "381", "1", "n199", "c10"]}, {"$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"]}], "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": "910GCNDAW", "modes": ["overground"], "icsCode": "1000037", "stopType": "NaptanRailStation", "stationNaptan": "910GCNDAW", "hubNaptanCode": "HUBZCW", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "910GCNDAW", "commonName": "Canada Water Rail Station", "placeType": "StopPoint", "additionalProperties": [], "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": [], "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": [], "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": [], "children": [], "lat": 51.497587, "lon": -0.049348}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9100CNDAW1", "modes": [], "icsCode": "1000037", "stopType": "NaptanRailAccessArea", "stationNaptan": "910GCNDAW", "hubNaptanCode": "HUBZCW", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "9100CNDAW1", "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": "9100CNDAW2", "modes": [], "icsCode": "1000037", "stopType": "NaptanRailAccessArea", "stationNaptan": "910GCNDAW", "hubNaptanCode": "HUBZCW", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "9100CNDAW2", "commonName": "Canada Water Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 0.0, "lon": 0.0}], "lat": 51.49799, "lon": -0.04972}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "940GZZLUCWR", "modes": ["tube"], "icsCode": "1000037", "stopType": "NaptanMetroStation", "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": "940GZZLUCWR", "commonName": "Canada Water 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": "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": "Help Points", "sourceSystemKey": "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": "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": "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": "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": "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": "Lifts", "sourceSystemKey": "StaticObjects", "value": "4"}, {"$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": "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": "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": "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}], "lat": 51.497931, "lon": -0.049405}], "lat": 51.498053, "lon": -0.049667}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "HUBZFD", "modes": ["tube", "bus", "elizabeth-line", "national-rail"], "icsCode": "1000080", "stopType": "TransportInterchange", "hubNaptanCode": "HUBZFD", "lines": [{"$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": "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": "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": "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": "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": "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": "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": "63", "name": "63", "uri": "/Line/63", "type": "Line", "crowding": {"$type": "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": "490000080A", "stationAtcoCode": "490G00080B", "lineIdentifier": ["n63", "341", "40", "63"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490000080B", "stationAtcoCode": "490G00080B", "lineIdentifier": ["n63", "341", "40", "63"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "910GFRNDXR", "lineIdentifier": ["elizabeth"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "910GFRNDNLT", "lineIdentifier": ["thameslink"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "940GZZLUFCN", "lineIdentifier": ["hammersmith-city", "circle", "metropolitan"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "bus", "lineIdentifier": ["n63", "341", "40", "63"]}, {"$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": ["thameslink"]}, {"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["hammersmith-city", "circle", "metropolitan"]}], "status": true, "id": "HUBZFD", "commonName": "Farringdon", "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": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5904"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5791"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5620"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5906"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.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": "BikePoints_17"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_135"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_203"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_246"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_393"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_546"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_835"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5908"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_66"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_67"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_72"}, {"$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": "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": "1"}, {"$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": "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": "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": "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": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Other Facilities", "sourceSystemKey": "StaticObjects", "value": "electronic whiteboards in ticket hall."}], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "910GFRNDNLT", "modes": ["national-rail"], "icsCode": "1000080", "stopType": "NaptanRailStation", "stationNaptan": "910GFRNDNLT", "hubNaptanCode": "HUBZFD", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "910GFRNDNLT", "commonName": "Farringdon Rail Station", "placeType": "StopPoint", "additionalProperties": [], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9100FRNDNLT2", "modes": [], "icsCode": "1000080", "stopType": "NaptanRailAccessArea", "stationNaptan": "910GFRNDNLT", "hubNaptanCode": "HUBZFD", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "9100FRNDNLT2", "commonName": "Farringdon", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 0.0, "lon": 0.0}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9100FRNDNLT1", "modes": [], "icsCode": "1000080", "stopType": "NaptanRailAccessArea", "stationNaptan": "910GFRNDNLT", "hubNaptanCode": "HUBZFD", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "9100FRNDNLT1", "commonName": "Farringdon", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 0.0, "lon": 0.0}], "lat": 51.520167, "lon": -0.105205}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "910GFRNDXR", "modes": ["elizabeth-line"], "icsCode": "1000080", "stopType": "NaptanRailStation", "stationNaptan": "910GFRNDXR", "hubNaptanCode": "HUBZFD", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "910GFRNDXR", "commonName": "Farringdon", "placeType": "StopPoint", "additionalProperties": [], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9100FRNDXR1", "modes": [], "icsCode": "1000080", "stopType": "NaptanRailAccessArea", "stationNaptan": "910GFRNDXR", "hubNaptanCode": "HUBZFD", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "9100FRNDXR1", "commonName": "Farringdon", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 0.0, "lon": 0.0}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9100FRNDXR0", "modes": [], "icsCode": "1000080", "stopType": "NaptanRailAccessArea", "stationNaptan": "910GFRNDXR", "hubNaptanCode": "HUBZFD", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "9100FRNDXR0", "commonName": "Farringdon", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 0.0, "lon": 0.0}], "lat": 51.520188, "lon": -0.104915}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "940GZZLUFCN", "modes": ["tube"], "icsCode": "1000080", "stopType": "NaptanMetroStation", "stationNaptan": "940GZZLUFCN", "hubNaptanCode": "HUBZFD", "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": "940GZZLUFCN", "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": "940GZZLUFCN", "commonName": "Farringdon 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": "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": "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": "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": "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": "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": "WiFi", "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": "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": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_66"}, {"$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": "4"}, {"$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": "AccessViaLift", "sourceSystemKey": "LRAD", "value": "Yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_17"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5791"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5620"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5906"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5908"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_67"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_72"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_135"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_203"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_246"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_393"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_546"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_835"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5904"}], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490G00080B", "modes": ["bus"], "icsCode": "1000080", "stopType": "NaptanOnstreetBusCoachStopCluster", "stationNaptan": "490G00080B", "hubNaptanCode": "HUBZFD", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490G00080B", "commonName": "Farringdon Station", "placeType": "StopPoint", "additionalProperties": [], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000080A", "indicator": "Stop A", "stopLetter": "A", "modes": ["bus"], "icsCode": "1000080", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00080B", "hubNaptanCode": "HUBZFD", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000080A", "commonName": "Farringdon Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.520422, "lon": -0.106044}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000080B", "indicator": "Stop B", "stopLetter": "B", "modes": ["bus"], "icsCode": "1000080", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00080B", "hubNaptanCode": "HUBZFD", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000080B", "commonName": "Farringdon Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.520238, "lon": -0.105821}], "lat": 51.520238, "lon": -0.105821}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "4900FRNDNLT0", "indicator": "Entrance 2", "stopLetter": "2", "modes": [], "icsCode": "1000080", "stopType": "NaptanRailEntrance", "stationNaptan": "940GZZLUFCN", "hubNaptanCode": "HUBZFD", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "4900FRNDNLT0", "commonName": "Farringdon Rail Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.519996, "lon": -0.104707}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "4900FRNDXR0", "indicator": "Entrance 4", "stopLetter": "4", "modes": [], "icsCode": "1000080", "stopType": "NaptanRailEntrance", "stationNaptan": "940GZZLUFCN", "hubNaptanCode": "HUBZFD", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "4900FRNDXR0", "commonName": "Farringdon Rail Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.519559, "lon": -0.099392}, {"$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": "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}], "lat": 51.520252, "lon": -0.104913}], "lat": 51.520214, "lon": -0.105054}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "HUBZMG", "modes": ["national-rail", "tube", "bus"], "icsCode": "1000149", "stopType": "TransportInterchange", "hubNaptanCode": "HUBZMG", "lines": [{"$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": "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": "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": "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"}, {"$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": "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": "43", "name": "43", "uri": "/Line/43", "type": "Line", "crowding": {"$type": "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": "490000149B", "stationAtcoCode": "490G00149L", "lineIdentifier": ["153", "141", "100", "43"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "940GZZLUMGT", "lineIdentifier": ["northern"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "910GMRGT", "lineIdentifier": ["great-northern"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "940GZZLUMGT", "lineIdentifier": ["metropolitan", "hammersmith-city", "circle"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490000149Z", "stationAtcoCode": "490G00149L", "lineIdentifier": ["141"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "bus", "lineIdentifier": ["153", "141", "100", "43"]}, {"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["northern", "metropolitan", "hammersmith-city", "circle"]}, {"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "national-rail", "lineIdentifier": ["great-northern"]}], "status": true, "id": "HUBZMG", "commonName": "Moorgate", "placeType": "StopPoint", "additionalProperties": [{"$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": "Help 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": "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": "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": "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": "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": "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": "6"}, {"$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": "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_120"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_127"}, {"$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_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_275"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_331"}, {"$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": "BikePoints_838"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5907"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5929"}, {"$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_5897"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5477"}, {"$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_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_5923"}, {"$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": "910GMRGT", "modes": ["national-rail"], "icsCode": "1000149", "stopType": "NaptanRailStation", "stationNaptan": "910GMRGT", "hubNaptanCode": "HUBZMG", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "910GMRGT", "commonName": "Moorgate Rail Station", "placeType": "StopPoint", "additionalProperties": [], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490G00149L", "modes": ["bus"], "icsCode": "1000149", "stopType": "NaptanOnstreetBusCoachStopCluster", "stationNaptan": "490G00149L", "hubNaptanCode": "HUBZMG", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490G00149L", "commonName": "Moorgate Station", "placeType": "StopPoint", "additionalProperties": [], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000149B", "indicator": "Stop B", "stopLetter": "B", "modes": ["bus"], "icsCode": "1000149", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00149L", "hubNaptanCode": "HUBZMG", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000149B", "commonName": "Moorgate Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.518621, "lon": -0.088174}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000149Z", "indicator": "Stop L", "stopLetter": "L", "modes": ["bus"], "icsCode": "1000149", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00149L", "hubNaptanCode": "HUBZMG", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000149Z", "commonName": "Moorgate Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.517797, "lon": -0.088396}], "lat": 51.517797, "lon": -0.088396}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490G00149M", "modes": ["bus"], "icsCode": "1000149", "stopType": "NaptanOnstreetBusCoachStopCluster", "stationNaptan": "910GMRGT", "hubNaptanCode": "HUBZMG", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490G00149M", "commonName": "Moorgate Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.518491, "lon": -0.088943}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "4900MRGT1", "indicator": "Entrance 1", "stopLetter": "1", "modes": [], "icsCode": "1000149", "stopType": "NaptanRailEntrance", "stationNaptan": "910GMRGT", "hubNaptanCode": "HUBZMG", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "4900MRGT1", "commonName": "Moorgate Rail Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.518015, "lon": -0.08905}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "4900MRGT2", "indicator": "Entrance 2", "stopLetter": "2", "modes": [], "icsCode": "1000149", "stopType": "NaptanRailEntrance", "stationNaptan": "910GMRGT", "hubNaptanCode": "HUBZMG", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "4900MRGT2", "commonName": "Moorgate Rail Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.518796, "lon": -0.088397}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "4900MRGT3", "indicator": "Entrance 3", "stopLetter": "3", "modes": [], "icsCode": "1000149", "stopType": "NaptanRailEntrance", "stationNaptan": "910GMRGT", "hubNaptanCode": "HUBZMG", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "4900MRGT3", "commonName": "Moorgate Rail Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.518728, "lon": -0.088097}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "4900MRGT4", "indicator": "Entrance 4", "stopLetter": "4", "modes": [], "icsCode": "1000149", "stopType": "NaptanRailEntrance", "stationNaptan": "910GMRGT", "hubNaptanCode": "HUBZMG", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "4900MRGT4", "commonName": "Moorgate Rail Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.518162, "lon": -0.088164}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9100MRGT2", "modes": [], "icsCode": "1000149", "stopType": "NaptanRailAccessArea", "stationNaptan": "910GMRGT", "hubNaptanCode": "HUBZMG", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "9100MRGT2", "commonName": "Moorgate Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 0.0, "lon": 0.0}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9100MRGT1", "modes": [], "icsCode": "1000149", "stopType": "NaptanRailAccessArea", "stationNaptan": "910GMRGT", "hubNaptanCode": "HUBZMG", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "9100MRGT1", "commonName": "Moorgate Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 0.0, "lon": 0.0}], "lat": 51.518491, "lon": -0.088943}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "940GZZLUMGT", "modes": ["tube"], "icsCode": "1000149", "stopType": "NaptanMetroStation", "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": "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": "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"]}, {"$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": ["hammersmith-city", "circle", "northern", "metropolitan"]}], "status": true, "id": "940GZZLUMGT", "commonName": "Moorgate 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": "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": "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": "Payphones", "sourceSystemKey": "StaticObjects", "value": "4"}, {"$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": "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": "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": "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": "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": "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_120"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_127"}, {"$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_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_275"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_331"}, {"$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": "BikePoints_838"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5907"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5929"}, {"$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_5897"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5477"}, {"$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_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_5923"}, {"$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": "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}], "lat": 51.518176, "lon": -0.088322}], "lat": 51.518338, "lon": -0.088627}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "HUBZWL", "modes": ["elizabeth-line", "tube", "overground", "bus"], "icsCode": "1000268", "stopType": "TransportInterchange", "hubNaptanCode": "HUBZWL", "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": "london-overground", "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", "stationAtcoCode": "910GWCHAPXR", "lineIdentifier": ["elizabeth"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "910GWCHAPEL", "lineIdentifier": ["london-overground"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "940GZZLUWPL", "lineIdentifier": ["district", "hammersmith-city"]}], "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": "overground", "lineIdentifier": ["london-overground"]}, {"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["district", "hammersmith-city"]}], "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": "910GWCHAPEL", "modes": ["overground"], "icsCode": "1000268", "stopType": "NaptanRailStation", "stationNaptan": "910GWCHAPEL", "hubNaptanCode": "HUBZWL", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "910GWCHAPEL", "commonName": "Whitechapel Rail Station", "placeType": "StopPoint", "additionalProperties": [], "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": [], "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": [], "children": [], "lat": 51.519918, "lon": -0.05981}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9100WCHAPEL2", "modes": [], "icsCode": "1000268", "stopType": "NaptanRailAccessArea", "stationNaptan": "910GWCHAPEL", "hubNaptanCode": "HUBZWL", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "9100WCHAPEL2", "commonName": "Whitechapel Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 0.0, "lon": 0.0}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9100WCHAPEL1", "modes": [], "icsCode": "1000268", "stopType": "NaptanRailAccessArea", "stationNaptan": "910GWCHAPEL", "hubNaptanCode": "HUBZWL", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "9100WCHAPEL1", "commonName": "Whitechapel Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 0.0, "lon": 0.0}], "lat": 51.519469, "lon": -0.059757}, {"$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": [{"$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": "940GZZLUWPL", "lineIdentifier": ["district", "hammersmith-city"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["district", "hammersmith-city"]}], "status": true, "id": "940GZZLUWPL", "commonName": "Whitechapel 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": "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": "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": "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": "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, taxi ranks outside station, routeways platform to ticket hall."}, {"$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": "Photo 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": "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": "9400ZZLUWPL", "modes": ["tube"], "icsCode": "1000268", "stopType": "NaptanMetroAccessArea", "stationNaptan": "940GZZLUWPL", "hubNaptanCode": "HUBZWL", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "9400ZZLUWPL", "commonName": "Whitechapel 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": "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": "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": "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": "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": "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": "Help Points", "sourceSystemKey": "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": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.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"}], "children": [], "lat": 51.519518, "lon": -0.059971}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUWPL1", "modes": ["tube"], "icsCode": "1000268", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUWPL", "hubNaptanCode": "HUBZWL", "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": "940GZZLUWPL", "lineIdentifier": ["hammersmith-city", "district"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["hammersmith-city", "district"]}], "status": true, "id": "9400ZZLUWPL1", "commonName": "Whitechapel 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, 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": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$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": "Help 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": "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": "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": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}], "children": [], "lat": 51.519398, "lon": -0.060884}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUWPL2", "modes": ["tube"], "icsCode": "1000268", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUWPL", "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"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "940GZZLUWPL", "lineIdentifier": ["district", "hammersmith-city"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["district", "hammersmith-city"]}], "status": true, "id": "9400ZZLUWPL2", "commonName": "Whitechapel 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": "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": "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": "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": "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": "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": "Help 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": "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": "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.519414, "lon": -0.060797}], "lat": 51.519518, "lon": -0.059971}], "lat": 51.519498, "lon": -0.059858}], "pageSize": 1775, "total": 1775, "page": 1}} \ No newline at end of file diff --git a/tests/tfl_responses/stopPointByMode_tube_overground_None_StopPointsResponse.json b/tests/tfl_responses/stopPointByMode_tube_overground_None_StopPointsResponse.json new file mode 100644 index 0000000..1e30541 --- /dev/null +++ b/tests/tfl_responses/stopPointByMode_tube_overground_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": "662713", "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": "406", "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": "604800.000", "X-TTL-RULE": "0", "X-Varnish": "2105876550 2105795630", "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=kZqF.0Er4ztdgFrc59wbIhQAogL449iCtWroItN5BPs-1721049494732-0.0.1.1-604800000; path=/; domain=.tfl.gov.uk; HttpOnly; Secure; SameSite=None", "Server": "cloudflare", "CF-RAY": "8a3a098dcb0b63ed-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": "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": "Help 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": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "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": "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": "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"}, {"$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": "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": "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": "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": "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": "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": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "0"}], "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": "Lifts", "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": "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": "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"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.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"}], "children": [], "lat": 51.671571, "lon": 0.102975}, {"$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": "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": "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": ["overground", "bus"], "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": "MonFriTo", "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": "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": "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": "Gates", "sourceSystemKey": "StaticObjects", "value": "7"}, {"$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": "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": "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"}, {"$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"}], "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": ["bus", "overground"], "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": ["bus", "overground"], "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": ["bus", "overground"], "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": ["bus", "overground"], "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": ["bus", "overground"], "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": ["overground", "bus"], "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": ["overground", "bus"], "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": ["overground", "bus"], "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": ["bus", "overground"], "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": "Toilet", "sourceSystemKey": "LRAD", "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"}], "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": ["bus", "overground"], "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": ["overground", "bus"], "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": "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"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.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": "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"}], "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": ["overground", "bus"], "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": "Toilet", "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": "SpecificEntranceRequired", "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.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": ["bus", "overground"], "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": ["overground", "bus"], "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": ["bus", "overground"], "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": ["overground", "bus"], "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": ["overground", "bus"], "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": "Payphones", "sourceSystemKey": "StaticObjects", "value": "3"}, {"$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": "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": "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": "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"}], "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": ["overground", "bus"], "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": ["bus", "overground"], "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": ["bus", "overground"], "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": ["overground", "bus"], "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": ["bus", "overground"], "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": ["overground", "bus"], "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": "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"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.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": "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"}], "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": ["overground", "bus"], "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": ["overground", "bus"], "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": "Opening Time", "key": "MonFriFrom", "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": "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": "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": "Cash Machines", "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": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.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"}, {"$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": "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": "Help Points", "sourceSystemKey": "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": ["overground", "bus"], "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": ["overground", "bus"], "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": "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": "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": "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": "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": "AccessViaLift", "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.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": ["bus", "overground"], "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": ["overground", "bus"], "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": ["overground", "bus"], "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": ["overground", "bus"], "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": ["overground", "bus"], "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": ["bus", "overground"], "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": "Other Facilities", "sourceSystemKey": "StaticObjects", "value": "canopies over platform (part)."}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.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": "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": "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"}, {"$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": "AccessViaLift", "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": ["bus", "overground"], "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": ["bus", "overground"], "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": ["overground", "bus"], "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": "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": "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": "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": "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": "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": "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": "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"}, {"$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"}], "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": ["overground", "bus"], "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": "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": "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": "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": "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": "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": "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": "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": "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": "Accessibility", "key": "Toilet", "sourceSystemKey": "LRAD", "value": "Yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "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": "Photo 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": "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": "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": "Gates", "sourceSystemKey": "StaticObjects", "value": "9"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.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": "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": "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": "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": "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": "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": "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": "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": "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"}], "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": "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"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.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": "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": "Gates", "sourceSystemKey": "StaticObjects", "value": "5"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "2"}], "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": "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"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.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"}], "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": "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"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.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.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": "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": "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": "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": "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": "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": "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.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": "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": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$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": "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": "Payphones", "sourceSystemKey": "StaticObjects", "value": "2"}], "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": "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": "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": "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": "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": "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": "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"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.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"}], "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": "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": "Facility", "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": "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"}], "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": "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"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "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.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": "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"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "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.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": "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": "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"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "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": "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": "Cash Machines", "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"}], "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": "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": "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"}], "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": "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": "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"}], "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": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "21"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.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": "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": "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": "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": "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": "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"}], "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": "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": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}], "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": "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": "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": "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": "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": "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": "2"}], "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": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$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"}], "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": "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": "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"}], "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": "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": "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": "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": "Help Points", "sourceSystemKey": "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": "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": "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": "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": "Payphones", "sourceSystemKey": "StaticObjects", "value": "1"}], "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": "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": "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"}], "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": "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": "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": "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": "Car park", "sourceSystemKey": "StaticObjects", "value": "no"}], "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": "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"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.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": "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": "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": "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": "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": "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": "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": "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"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}], "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": "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": "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": "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": "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": "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": "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": "Facility", "key": "Escalators", "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": "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": "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": "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": "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": "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": "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 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": "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": "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"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.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": "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": "Help Points", "sourceSystemKey": "StaticObjects", "value": "0 on platforms, 0 in ticket halls, 0 elsewhere"}], "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": "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"}, {"$type": "Tfl.Api.Presentation.Entities.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"}], "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": "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": "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)"}], "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": "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"}, {"$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"}], "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": "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": "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": "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": "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": "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.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": "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": "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": "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": "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": "Facility", "key": "Bridge", "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": "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": "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": "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": "Accessibility", "key": "BlueBadgeCarParkSpaces", "sourceSystemKey": "LRAD", "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": "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": "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"}], "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": "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": "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"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.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.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": "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": "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": "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": "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"}], "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": "Facility", "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": "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": "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": "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.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": "Help Points", "sourceSystemKey": "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"}, {"$type": "Tfl.Api.Presentation.Entities.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"}], "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": "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": "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": "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.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": "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"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.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.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": "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": "SunTo", "sourceSystemKey": "StaticObjects", "value": "22:00"}, {"$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": "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"}], "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": "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": "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": "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"}, {"$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"}], "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": "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.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": "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": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$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": "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"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.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": "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"}], "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": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$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": "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": "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": "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"}], "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": "Facility", "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": "Help 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.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": "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": "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": "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": "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": "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": "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": "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": "BlueBadgeCarParkSpaces", "sourceSystemKey": "LRAD", "value": "0"}, {"$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"}], "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": "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": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}], "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": "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": "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": "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"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.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"}], "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": "Help Points", "sourceSystemKey": "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"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "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": "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": "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": "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": "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": "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": "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": "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"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "no"}], "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": "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": "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": "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": "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": "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": "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": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}], "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": "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": "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": "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": "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": "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": "yes"}, {"$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": "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.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": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$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": "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": "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": "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": "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"}], "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": "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": "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": "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": "Photo 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"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.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"}], "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": "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.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": "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"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.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"}], "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": "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": "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": "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": "Help Points", "sourceSystemKey": "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": "12"}, {"$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": "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": "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"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "no"}], "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": "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": "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": "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": "Gates", "sourceSystemKey": "StaticObjects", "value": "24"}, {"$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": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}], "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": "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"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.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.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": "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": "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"}], "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": "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": "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": "Help 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": "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": "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": "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.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": "Car park", "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": "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": "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": "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": "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": "Payphones", "sourceSystemKey": "StaticObjects", "value": "5"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "1"}], "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": "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."}, {"$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"}], "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": "Help Points", "sourceSystemKey": "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": "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": "Photo 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": "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": "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": "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"}], "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": "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": "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": "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": "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": "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": "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": "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": "ToiletNote", "sourceSystemKey": "LRAD", "value": "(National Rail)"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.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"}], "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": "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": "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"}], "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": "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"}, {"$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.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": "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, 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": "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": "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": "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 "}], "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": "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": "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": "17"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.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": "Toilets", "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": "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": "Facility", "key": "Payphones", "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": "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": "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": "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": "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": "Gates", "sourceSystemKey": "StaticObjects", "value": "36"}], "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": "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": "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": "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": "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": "Gates", "sourceSystemKey": "StaticObjects", "value": "15"}], "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": "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": "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": "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": "BlueBadgeCarParkSpaces", "sourceSystemKey": "LRAD", "value": "0"}, {"$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": "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": "Gates", "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": "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": "Bridge", "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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"}], "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": "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": "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": "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": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}], "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": "Facility", "key": "Photo 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": "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": "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.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": "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": "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"}, {"$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.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": "Toilet", "sourceSystemKey": "LRAD", "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"}], "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": "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": "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": "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": "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": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$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.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": "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": "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": "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": "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": "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": "Car park", "sourceSystemKey": "StaticObjects", "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": "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": "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"}], "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": "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": "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"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.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": "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": "Help Points", "sourceSystemKey": "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"}], "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": "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": "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": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$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": "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": "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": "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.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": "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": "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"}], "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": "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"}, {"$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"}], "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": "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": "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": "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": "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": "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": "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": "8"}], "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": "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": "Maida Vale Station,London Underground Ltd.,Elgin Avenue,London,W9 1JS"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.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": "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"}], "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": "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": "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": "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": "Toilet", "sourceSystemKey": "LRAD", "value": "Yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "ToiletNote", "sourceSystemKey": "LRAD", "value": "(Bus station)"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "TaxiRankOutsideStation", "sourceSystemKey": "LRAD", "value": "No"}], "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": "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"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.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": "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": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}], "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": "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": "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": "Help Points", "sourceSystemKey": "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": "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": "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+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": "Facility", "key": "Photo 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": "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"}], "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": "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": "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": "Opening Time", "key": "SunFrom", "sourceSystemKey": "StaticObjects", "value": "09: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": "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": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Opening Time", "key": "SatTo", "sourceSystemKey": "StaticObjects", "value": "17:30"}], "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": "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": "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": "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"}], "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": "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": "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"}], "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": "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"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.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"}], "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": "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": "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.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": "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": "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": "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": "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": "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": "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": "Gates", "sourceSystemKey": "StaticObjects", "value": "24"}, {"$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": "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.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": "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": "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": "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": "Help 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"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.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": "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": "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"}], "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": "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"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.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"}], "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": "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"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "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"}], "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": "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": "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": "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": "Bridge", "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": "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": "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": "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"}, {"$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"}], "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": "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": "3"}, {"$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": "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": "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": "Help Points", "sourceSystemKey": "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": "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": "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"}], "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": "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"}, {"$type": "Tfl.Api.Presentation.Entities.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"}], "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": "Help Points", "sourceSystemKey": "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"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, 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"}], "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": "Facility", "key": "Payphones", "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": "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": "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": "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": "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": "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"}], "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": "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": "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": "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": "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": "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": "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": "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": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "1"}], "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": "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": "Help Points", "sourceSystemKey": "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": "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": "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"}, {"$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.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": "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": "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": "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": "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": "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": "Help Points", "sourceSystemKey": "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"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.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"}], "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": "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": "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"}], "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": "Photo 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": "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": "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": "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": "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": "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"}], "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": "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"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, 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": "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": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "0"}], "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": "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": "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": "WiFi", "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": "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": "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": "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.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": "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"}], "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": "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": "Southgate Station,London Underground Ltd.,High St,London,N14"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.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": "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": "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": "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"}], "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": "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": "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": "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": "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": "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": "Help Points", "sourceSystemKey": "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": "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.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": "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": "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"}, {"$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": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "yes"}], "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": "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": "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.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": "Facility", "key": "Help Points", "sourceSystemKey": "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": "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": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}], "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": "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": "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"}], "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": "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"}, {"$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.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": "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": "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": "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": "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"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.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"}], "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": "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": "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": "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": "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": "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"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.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.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": "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": "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": "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": "Help Points", "sourceSystemKey": "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": "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"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "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.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": "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": "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"}, {"$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": "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": "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": "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": "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)"}], "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": "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. 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"}], "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": "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": "Bridge", "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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.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": "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": "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"}, {"$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."}], "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": "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": "Gates", "sourceSystemKey": "StaticObjects", "value": "13"}, {"$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": "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": "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": "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": "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"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.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": "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"}], "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": "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": "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": "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": "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": "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"}], "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": "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": "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": "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": "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": "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": "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": "Toilets", "sourceSystemKey": "StaticObjects", "value": "yes (male, female)"}, {"$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": "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": "Payphones", "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": "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.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": "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": "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": "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": "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": "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": "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"}], "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": "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": "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": "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": "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": "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": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "4"}], "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": "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": "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": "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": "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": "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"}], "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": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}, {"$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": "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"}, {"$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"}], "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": "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"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}], "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": "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": "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": "Tottenham Court Road Station,London Underground Ltd.,Oxford St,London,W1"}, {"$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": "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": "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": "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"}], "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": "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": "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": "4 on platforms, 0 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": "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": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$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": "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"}], "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": "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": "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": "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": "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": "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": "3"}], "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": "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": "Gates", "sourceSystemKey": "StaticObjects", "value": "15"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.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": "Help Points", "sourceSystemKey": "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": "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": "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": "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": "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": "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"}, {"$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"}], "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": "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": "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"}, {"$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": "Other Facilities", "sourceSystemKey": "StaticObjects", "value": "canopies over platform."}, {"$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": "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": "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": "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": "Opening Time", "key": "SatFrom", "sourceSystemKey": "StaticObjects", "value": "13: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": "Escalators", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$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"}], "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": "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"}, {"$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": "Toilets", "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": "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": "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": "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": "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": "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": "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": "1"}], "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": "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": "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": "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": "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": "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": "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": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}], "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": "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"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "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": "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": "Willesden Green Station,London Underground Ltd.,Walm Lane,London,NW2 4QT"}], "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": "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": "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": "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": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}], "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": "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": "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"}, {"$type": "Tfl.Api.Presentation.Entities.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": "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": "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"}], "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": "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": "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": "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": "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": "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": "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": "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"}], "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": "Accessibility", "key": "AccessViaLift", "sourceSystemKey": "LRAD", "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": "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": "Help 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": "LimitedCapacityLift", "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": "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": "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": "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": "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": "Accessibility", "key": "SpecificEntranceRequired", "sourceSystemKey": "LRAD", "value": "No"}], "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": "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": "Help Points", "sourceSystemKey": "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": "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": "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.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": "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": "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": "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": "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": "BlueBadgeCarParkSpaces", "sourceSystemKey": "LRAD", "value": "10"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "LimitedCapacityLift", "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": "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": "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": "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": "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": "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": "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": "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": "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": "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"}], "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": "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": "Photo 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 Circle and District lines 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": "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": "Help Points", "sourceSystemKey": "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": "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"}], "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": "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": "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": "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"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.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": "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": "4"}], "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": "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"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.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": "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": ["overground", "national-rail"], "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": "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", "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": "9100BARKING1", "commonName": "Barking 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": "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": "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": "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": "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": "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, 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": "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": "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"}], "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": ["national-rail", "overground"], "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": "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": "london-overground", "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": "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": ["overground", "national-rail"], "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": ["overground", "national-rail"], "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": ["overground", "national-rail"], "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": "london-overground", "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": "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": ["overground", "national-rail"], "icsCode": "1001069", "stopType": "NaptanRailAccessArea", "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"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "910GCLPHMJC", "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": "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": "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": "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": "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": "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": "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": "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": "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": "Help 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": "Escalators", "sourceSystemKey": "StaticObjects", "value": "8"}, {"$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": "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": "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"}], "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": ["overground", "national-rail"], "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": ["overground", "national-rail"], "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": "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": "910GDENMRKH", "lineIdentifier": ["london-overground", "thameslink", "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": ["thameslink", "southeastern"]}], "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": ["national-rail", "overground"], "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": ["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": "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": ["national-rail", "overground"], "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": "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": "910GEUSTON", "lineIdentifier": ["london-overground", "avanti-west-coast", "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": "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": ["overground", "national-rail"], "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": "london-overground", "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": "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": ["overground", "national-rail"], "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": "london-overground", "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": "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": ["national-rail", "overground"], "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": "london-overground", "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": "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": "Lifts", "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": "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": "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"}, {"$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"}], "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": "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": "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": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "3+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": "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": "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": "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": "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": "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": "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": "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": "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.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": "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": "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"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.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": "Help Points", "sourceSystemKey": "StaticObjects", "value": "3 on platforms, 0 in ticket halls, 0 elsewhere"}], "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": ["overground", "national-rail", "elizabeth-line"], "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": "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": "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"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "910GLIVST", "lineIdentifier": ["london-overground", "elizabeth", "greater-anglia", "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": "elizabeth-line", "lineIdentifier": ["elizabeth"]}, {"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "national-rail", "lineIdentifier": ["greater-anglia", "c2c"]}], "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": ["national-rail", "overground"], "icsCode": "1001183", "stopType": "NaptanRailAccessArea", "stationNaptan": "910GLONFLDS", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "london-overground", "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": "910GLONFLDS", "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": "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": "london-overground", "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": "910GLONFLDS", "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": "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": "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": "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": ["overground", "national-rail"], "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": ["overground", "national-rail"], "icsCode": "1001216", "stopType": "NaptanRailAccessArea", "stationNaptan": "910GNORWDJ", "hubNaptanCode": "HUBNWD", "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": "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": "910GNORWDJ", "lineIdentifier": ["thameslink", "southern", "london-overground"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "national-rail", "lineIdentifier": ["thameslink", "southern"]}, {"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "overground", "lineIdentifier": ["london-overground"]}], "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": "london-overground", "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": "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", "southern", "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": ["southern", "southeastern"]}], "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": "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"}, {"$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"}], "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": "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": "910GPCKHMQD", "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": "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": "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": "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": ["overground", "national-rail"], "icsCode": "1001223", "stopType": "NaptanRailAccessArea", "stationNaptan": "910GPCKHMRY", "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": "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": "910GPCKHMRY", "lineIdentifier": ["thameslink", "southern", "london-overground"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "national-rail", "lineIdentifier": ["thameslink", "southern"]}, {"$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": ["national-rail", "overground"], "icsCode": "1000186", "stopType": "NaptanRailAccessArea", "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": "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": ["overground", "national-rail"], "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": "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": "london-overground", "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": "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": "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": "910GSEVNSIS", "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": "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": "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": "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."}], "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": ["overground", "national-rail"], "icsCode": "1001250", "stopType": "NaptanRailAccessArea", "stationNaptan": "910GSIVRST", "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": "910GSIVRST", "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": "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": "london-overground", "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": "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": ["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": "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": "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": "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": "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": "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": "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": "Bridge", "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"}], "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": "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": "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": "london-overground", "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": "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": ["overground", "national-rail"], "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": "london-overground", "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": "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": ["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": "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": "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": "910GTURKYST", "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": "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": "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": "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": "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": "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"}, {"$type": "Tfl.Api.Presentation.Entities.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"}], "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": ["national-rail", "overground"], "icsCode": "1001324", "stopType": "NaptanRailAccessArea", "stationNaptan": "910GWCROYDN", "hubNaptanCode": "HUBWCY", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "london-overground", "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": "910GWCROYDN", "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": "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": ["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": "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": "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": "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": "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": "Escalators", "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.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": ["national-rail", "overground"], "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": "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": "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": "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": "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": "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": "london-overground", "name": "London Overground", "uri": "/Line/london-overground", "type": "Line", "crowding": {"$type": "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": "490001002J", "stationAtcoCode": "490G01002H", "lineIdentifier": ["sl8", "n266", "n7", "70", "207", "218", "n207"]}, {"$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": ["70", "sl8", "218", "n207", "n7", "207", "n266"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "bus", "lineIdentifier": ["sl8", "n266", "n7", "70", "207", "218", "n207"]}, {"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "overground", "lineIdentifier": ["london-overground"]}], "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": "Geo", "key": "Zone", "sourceSystemKey": "SingleFareFinder", "value": "3"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "Toilet", "sourceSystemKey": "LRAD", "value": "No"}], "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": "london-overground", "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": "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"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "910GANERLEY", "lineIdentifier": ["london-overground", "southern"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490001007AD", "stationAtcoCode": "490G01007E", "lineIdentifier": ["432", "249"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490001007E", "stationAtcoCode": "490G01007E", "lineIdentifier": ["249", "432"]}], "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": ["432", "249"]}], "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": ["overground", "bus"], "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": ["overground", "national-rail"], "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": "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"}, {"$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"}], "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": "MonFriTo", "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": "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": "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": "Gates", "sourceSystemKey": "StaticObjects", "value": "7"}, {"$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": "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": "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"}, {"$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"}], "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": "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", "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": "9100BARKING1", "commonName": "Barking 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": "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": "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": "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": "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": "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}, {"$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}], "lat": 51.539495, "lon": 0.080903}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "910GBHILLPK", "modes": ["bus", "overground"], "icsCode": "1001042", "stopType": "NaptanRailStation", "stationNaptan": "910GBHILLPK", "lines": [{"$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"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "london-overground", "name": "London Overground", "uri": "/Line/london-overground", "type": "Line", "crowding": {"$type": "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": "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": "490001042W1", "stationAtcoCode": "910GBHILLPK", "lineIdentifier": ["377"]}, {"$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": "490001024Y", "stationAtcoCode": "490G06855S1", "lineIdentifier": ["192", "377"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490001024Z", "stationAtcoCode": "490G06855S1", "lineIdentifier": ["192"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "bus", "lineIdentifier": ["192", "377"]}, {"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "overground", "lineIdentifier": ["london-overground"]}], "status": true, "id": "910GBHILLPK", "commonName": "Bush Hill Park Rail Station", "placeType": "StopPoint", "additionalProperties": [{"$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": "Facility", "key": "WiFi", "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": "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": "Help points", "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": "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"}], "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": ["bus", "overground"], "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": ["overground", "bus"], "icsCode": "1002272", "stopType": "NaptanRailStation", "stationNaptan": "910GBKRVS", "lines": [{"$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": "london-overground", "name": "London Overground", "uri": "/Line/london-overground", "type": "Line", "crowding": {"$type": "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": "490002272YX", "stationAtcoCode": "490G02272G", "lineIdentifier": ["el1", "el3"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490002272YY", "stationAtcoCode": "490G02272G", "lineIdentifier": ["el1", "el3"]}, {"$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": "bus", "lineIdentifier": ["el1", "el3"]}, {"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "overground", "lineIdentifier": ["london-overground"]}], "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": "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": "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": "Lifts", "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": "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"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.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": "Help Points", "sourceSystemKey": "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": [{"$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": "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, 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": "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": "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"}], "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": "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": "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": "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": "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": "189", "name": "189", "uri": "/Line/189", "type": "Line", "crowding": {"$type": "Tfl.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": ["316", "n32", "632", "16", "32", "189"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490001038N", "stationAtcoCode": "490G01038N", "lineIdentifier": ["189", "32", "16", "632", "n32", "316"]}], "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": ["316", "n32", "632", "16", "32", "189"]}], "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": ["bus", "overground"], "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": ["overground", "bus", "national-rail"], "icsCode": "1001035", "stopType": "NaptanRailStation", "stationNaptan": "910GBROCKLY", "lines": [{"$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": "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": "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": "london-overground", "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"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490004392B", "stationAtcoCode": "490G04392A", "lineIdentifier": ["172", "171", "n171"]}, {"$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": ["171", "n171", "172", "484"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "bus", "lineIdentifier": ["172", "171", "n171", "484"]}, {"$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": "910GBROCKLY", "commonName": "Brockley Rail Station", "placeType": "StopPoint", "additionalProperties": [{"$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": "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": "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": "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": "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": "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": ["bus", "overground"], "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": ["national-rail", "overground"], "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": "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": "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": "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": "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": "w4", "name": "W4", "uri": "/Line/w4", "type": "Line", "crowding": {"$type": "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": "london-overground", "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": "490001040J", "stationAtcoCode": "490G01040K", "lineIdentifier": ["476", "123", "341", "w4", "318", "243"]}, {"$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": "490001040O", "stationAtcoCode": "490G01040K", "lineIdentifier": ["123", "243", "w4"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490001040K", "stationAtcoCode": "490G01040K", "lineIdentifier": ["123", "243", "w4"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "bus", "lineIdentifier": ["476", "123", "341", "w4", "318", "243"]}, {"$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": "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": ["bus", "overground"], "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": ["bus", "overground"], "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": "london-overground", "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": "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": ["national-rail", "overground"], "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": ["overground", "national-rail"], "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", "national-rail", "bus"], "icsCode": "1001044", "stopType": "NaptanRailStation", "stationNaptan": "910GCAMHTH", "lines": [{"$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": "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": "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": "london-overground", "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": "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": "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": "n253", "name": "N253", "uri": "/Line/n253", "type": "Line", "crowding": {"$type": "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": "490001044N", "stationAtcoCode": "490G01044M", "lineIdentifier": ["n55", "n26", "55", "26"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490001044O", "stationAtcoCode": "490G01044M", "lineIdentifier": ["n55", "n26", "55", "26"]}, {"$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": "490001044P", "stationAtcoCode": "490G01044M", "lineIdentifier": ["388", "d6", "106", "254", "n253"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490001044M", "stationAtcoCode": "490G01044M", "lineIdentifier": ["388", "106", "254", "n253", "d6"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "bus", "lineIdentifier": ["n55", "n26", "55", "26", "388", "d6", "106", "254", "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": "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": ["overground", "national-rail"], "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": "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": "910GCHESHNT", "lineIdentifier": ["greater-anglia"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "910GCHESHNT", "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": "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": ["overground", "bus"], "icsCode": "1001063", "stopType": "NaptanRailStation", "stationNaptan": "910GCHINGFD", "lines": [{"$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": "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": "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": "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": "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": "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"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "london-overground", "name": "London Overground", "uri": "/Line/london-overground", "type": "Line", "crowding": {"$type": "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": "490001063B", "stationAtcoCode": "490G01063B", "lineIdentifier": ["444", "212"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490001063C", "stationAtcoCode": "490G01063B", "lineIdentifier": ["97", "n26", "179"]}, {"$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": ["97", "179", "397", "n26"]}, {"$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": "bus", "lineIdentifier": ["444", "212", "97", "n26", "179", "313", "385", "379", "397"]}, {"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "overground", "lineIdentifier": ["london-overground"]}], "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": "Address", "key": "PhoneNo", "sourceSystemKey": "NreStationData", "value": "0343 222 1234"}, {"$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": "Facility", "key": "Ticket Halls", "sourceSystemKey": "NreStationData", "value": "yes"}, {"$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": "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": "Geo", "key": "Zone", "sourceSystemKey": "SingleFareFinder", "value": "5"}, {"$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": "Facility", "key": "Toilets", "sourceSystemKey": "NreStationData", "value": "yes"}], "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": ["overground", "bus"], "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": ["bus", "national-rail", "overground"], "icsCode": "1001070", "stopType": "NaptanRailStation", "stationNaptan": "910GCLAPTON", "lines": [{"$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": "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"}, {"$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"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490001070S", "stationAtcoCode": "490G01070N", "lineIdentifier": ["253", "254", "106", "n253"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "910GCLAPTON", "lineIdentifier": ["london-overground", "greater-anglia"]}, {"$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": "490001070W", "stationAtcoCode": "490G01070N", "lineIdentifier": ["393"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490001070N", "stationAtcoCode": "490G01070N", "lineIdentifier": ["253", "106", "254", "n253"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "bus", "lineIdentifier": ["253", "254", "106", "n253", "393"]}, {"$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": ["overground", "bus"], "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": "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"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "london-overground", "name": "London Overground", "uri": "/Line/london-overground", "type": "Line", "crowding": {"$type": "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": "490001043K", "stationAtcoCode": "490G01043L", "lineIdentifier": ["91", "259", "274", "17", "n91"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490001043L", "stationAtcoCode": "490G01043L", "lineIdentifier": ["259", "91", "17", "274", "n91"]}, {"$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": "bus", "lineIdentifier": ["91", "259", "274", "17", "n91"]}, {"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "overground", "lineIdentifier": ["london-overground"]}], "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": "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": "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": ["overground", "national-rail"], "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": "london-overground", "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": "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": "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": "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": ["south-western-railway"]}, {"$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": "national-rail", "lineIdentifier": ["south-western-railway", "southern"]}, {"$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": ["overground", "national-rail"], "icsCode": "1001069", "stopType": "NaptanRailAccessArea", "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"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "910GCLPHMJC", "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": "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": "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}, {"$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}], "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": "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": "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": "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": "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": "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": "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": "46", "name": "46", "uri": "/Line/46", "type": "Line", "crowding": {"$type": "Tfl.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": "490001045G", "stationAtcoCode": "490G01045G", "lineIdentifier": ["n279", "274", "29", "253", "n253", "n29"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490001045F", "stationAtcoCode": "490G01045G", "lineIdentifier": ["n279", "n29", "253", "n253", "29"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490011419H", "stationAtcoCode": "490G01045G", "lineIdentifier": ["46", "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": ["n279", "274", "29", "253", "n253", "n29", "46"]}], "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": "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": "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": "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": "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": "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": "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": "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": "Help 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": "Escalators", "sourceSystemKey": "StaticObjects", "value": "8"}, {"$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": "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": "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"}], "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": ["overground", "bus"], "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": "490007537W", "stationAtcoCode": "490G07537W", "lineIdentifier": ["236"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490007537E", "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": ["overground", "bus"], "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": "490008307CL", "stationAtcoCode": "490G07752CN", "lineIdentifier": ["w7"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "910GCROUCHH", "lineIdentifier": ["london-overground"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490007752CN", "stationAtcoCode": "490G07752CN", "lineIdentifier": ["w7"]}], "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": ["bus", "overground"], "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": ["overground", "national-rail"], "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": "Toilet", "sourceSystemKey": "LRAD", "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"}], "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": "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": "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}, {"$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": "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}], "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": "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": "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": "london-overground", "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": "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": "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": "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"}, {"$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": "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": "56", "name": "56", "uri": "/Line/56", "type": "Line", "crowding": {"$type": "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": "490005945M", "stationAtcoCode": "490G05945L", "lineIdentifier": ["149", "488", "67", "243"]}, {"$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": "4900005944Q1", "stationAtcoCode": "490G05945G", "lineIdentifier": ["n242", "242"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490006929C", "stationAtcoCode": "490G06929C", "lineIdentifier": ["n242", "243", "242", "149"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490005945G", "stationAtcoCode": "490G05945G", "lineIdentifier": ["n38", "n277", "277", "38", "30", "56"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490001568N", "stationAtcoCode": "490G06929C", "lineIdentifier": ["67", "488", "277"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "bus", "lineIdentifier": ["149", "488", "67", "243", "n242", "242", "n38", "n277", "277", "38", "30", "56"]}, {"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "overground", "lineIdentifier": ["london-overground"]}], "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": "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": "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": "london-overground", "name": "London Overground", "uri": "/Line/london-overground", "type": "Line", "crowding": {"$type": "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": "490001081R", "stationAtcoCode": "490G01081P", "lineIdentifier": ["149", "488", "67", "243"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "910GDALSKLD", "lineIdentifier": ["london-overground"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490001081P", "stationAtcoCode": "490G01081P", "lineIdentifier": ["149", "488", "67", "243"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "bus", "lineIdentifier": ["149", "488", "67", "243"]}, {"$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", "national-rail", "overground"], "icsCode": "1001083", "stopType": "NaptanRailStation", "stationNaptan": "910GDENMRKH", "lines": [{"$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": "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": "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": "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": "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", "naptanIdReference": "490001083H7", "stationAtcoCode": "490G01083H7", "lineIdentifier": ["40", "185", "176", "484"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "910GDENMRKH", "lineIdentifier": ["southeastern", "thameslink"]}, {"$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": ["london-overground", "southeastern", "thameslink"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490001083H2", "stationAtcoCode": "490G01083H7", "lineIdentifier": ["185", "176", "40", "484"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "bus", "lineIdentifier": ["40", "185", "176", "484"]}, {"$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": "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": "Facility", "key": "Waiting Room", "sourceSystemKey": "NreStationData", "value": "yes"}, {"$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": "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": ["overground", "national-rail"], "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": ["overground", "national-rail"], "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": "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": "910GDENMRKH", "lineIdentifier": ["london-overground", "thameslink", "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": ["thameslink", "southeastern"]}], "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", "bus", "national-rail"], "icsCode": "1001092", "stopType": "NaptanRailStation", "stationNaptan": "910GEDMNGRN", "lines": [{"$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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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", "naptanIdReference": "490001092E", "stationAtcoCode": "490G01092D", "lineIdentifier": ["w8", "w6", "616"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "910GEDMNGRN", "lineIdentifier": ["greater-anglia", "london-overground"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490001092D", "stationAtcoCode": "490G01092D", "lineIdentifier": ["w8", "616", "w6"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490006442R", "stationAtcoCode": "490G01092D", "lineIdentifier": ["149", "192", "144", "102", "349", "491", "279", "259", "n279"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "bus", "lineIdentifier": ["w8", "w6", "616", "149", "192", "144", "102", "349", "491", "279", "259", "n279"]}, {"$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": "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": ["national-rail", "overground"], "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": ["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": "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": "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": "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": "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", "naptanIdReference": "490001098A", "stationAtcoCode": "490G01098B", "lineIdentifier": ["256", "646", "165", "370"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490001098B", "stationAtcoCode": "490G01098B", "lineIdentifier": ["165", "370", "646", "256"]}, {"$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": "bus", "lineIdentifier": ["256", "646", "165", "370"]}, {"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "overground", "lineIdentifier": ["london-overground"]}], "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": "Geo", "key": "Zone", "sourceSystemKey": "SingleFareFinder", "value": "6"}, {"$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"}], "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": ["bus", "overground"], "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "490001101M", "stationAtcoCode": "490G01101L", "lineIdentifier": ["231", "629", "191"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490001101L", "stationAtcoCode": "490G01101L", "lineIdentifier": ["317", "456", "629"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490001101N", "stationAtcoCode": "490G01101L", "lineIdentifier": ["121", "307", "456", "317", "192", "313"]}, {"$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", "naptanIdReference": "490001101K", "stationAtcoCode": "490G01101L", "lineIdentifier": ["307", "231", "121", "192", "191", "313"]}, {"$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": ["231", "629", "191", "317", "456", "121", "307", "192", "313", "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": ["overground", "bus"], "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": "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": "910GEUSTON", "lineIdentifier": ["london-overground", "avanti-west-coast", "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": "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": "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"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.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": "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"}], "children": [], "lat": 51.527639, "lon": -0.132185}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9100EUSTON0", "modes": ["national-rail", "overground"], "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": "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": "910GEUSTON", "lineIdentifier": ["london-overground", "avanti-west-coast", "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": "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": "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": "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": "london-overground", "name": "London Overground", "uri": "/Line/london-overground", "type": "Line", "crowding": {"$type": "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": "490001109FF", "stationAtcoCode": "490G01109FF", "lineIdentifier": ["n113", "13", "113"]}, {"$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": ["n113", "113", "13"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "bus", "lineIdentifier": ["n113", "13", "113"]}, {"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "overground", "lineIdentifier": ["london-overground"]}], "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": ["national-rail", "overground"], "icsCode": "1001112", "stopType": "NaptanRailStation", "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": "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": ["overground", "national-rail"], "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": "london-overground", "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": "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": "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": "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": "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"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "yes"}], "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": ["bus", "overground"], "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": ["30", "n242", "n38", "38", "242", "276"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490001127J", "stationAtcoCode": "490G01127JA", "lineIdentifier": ["253", "254", "38", "n253", "106", "n55", "55", "n38"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490001127K", "stationAtcoCode": "490G01127JA", "lineIdentifier": ["30", "242", "276", "n242"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "910GHACKNYC", "lineIdentifier": ["london-overground"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "4900001127H", "stationAtcoCode": "490G01127JA", "lineIdentifier": ["55", "n55", "n253", "254", "106", "253"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "bus", "lineIdentifier": ["30", "n242", "n38", "38", "242", "276", "253", "254", "n253", "106", "n55", "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": "Accessibility", "key": "LimitedCapacityLift", "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": "AccessViaLift", "sourceSystemKey": "LRAD", "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": "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": "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": "Waiting Room", "sourceSystemKey": "NreStationData", "value": "yes"}, {"$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": "Opening Time", "key": "SatTo", "sourceSystemKey": "NreStationData", "value": "16:00"}, {"$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": "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"}], "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": ["overground", "bus"], "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": "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": "london-overground", "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"}], "lineGroup": [{"$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", "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": "490001129A", "stationAtcoCode": "490G01129A", "lineIdentifier": ["276"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490011721N", "stationAtcoCode": "490G01129G", "lineIdentifier": ["488"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "bus", "lineIdentifier": ["488", "276"]}, {"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "overground", "lineIdentifier": ["london-overground"]}], "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": "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"}, {"$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": "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": "Toilet", "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": "SpecificEntranceRequired", "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.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": ["overground", "bus", "national-rail"], "icsCode": "1001128", "stopType": "NaptanRailStation", "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"}, {"$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": "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"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "910GHAKNYNM", "lineIdentifier": ["london-overground", "greater-anglia"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490001128N", "stationAtcoCode": "490G01128M", "lineIdentifier": ["56", "30"]}, {"$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": "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": ["56", "30", "276"]}], "status": true, "id": "910GHAKNYNM", "commonName": "Hackney Downs Rail Station", "placeType": "StopPoint", "additionalProperties": [{"$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": "Opening Time", "key": "MonFriFrom", "sourceSystemKey": "NreStationData", "value": "07:30"}, {"$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": "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": "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": "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": "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": ["bus", "overground"], "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": ["overground", "national-rail"], "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": "london-overground", "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": "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": "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": "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": "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": "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": "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": "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": [{"$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": ["overground", "bus"], "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": ["national-rail", "overground"], "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": "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": "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": "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"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "london-overground", "name": "London Overground", "uri": "/Line/london-overground", "type": "Line", "crowding": {"$type": "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": "490001150N1", "stationAtcoCode": "490G01150N1", "lineIdentifier": ["275", "675"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490008137D", "stationAtcoCode": "490G01150N1", "lineIdentifier": ["w16", "212"]}, {"$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": "490008137C", "stationAtcoCode": "490G01150N1", "lineIdentifier": ["212", "w16"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490001150S1", "stationAtcoCode": "490G01150N1", "lineIdentifier": ["675", "275"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "bus", "lineIdentifier": ["275", "675", "w16", "212"]}, {"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "overground", "lineIdentifier": ["london-overground"]}], "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": ["bus", "overground"], "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": ["overground", "bus"], "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": ["national-rail", "bus", "overground"], "icsCode": "1001154", "stopType": "NaptanRailStation", "stationNaptan": "910GHONROPK", "lines": [{"$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": "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": "london-overground", "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": "490001154W", "stationAtcoCode": "490G01154E", "lineIdentifier": ["p4", "p12"]}, {"$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": ["p4", "p12"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "bus", "lineIdentifier": ["p4", "p12"]}, {"$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": "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": "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"}, {"$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"}], "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": ["national-rail", "overground"], "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": "london-overground", "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": "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": "490010230W", "stationAtcoCode": "490G05737N", "lineIdentifier": ["55", "26", "n26", "n55"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490005737N", "stationAtcoCode": "490G05737N", "lineIdentifier": ["26", "55", "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": ["overground", "bus"], "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": ["bus", "overground"], "icsCode": "1001139", "stopType": "NaptanRailStation", "stationNaptan": "910GHRGYGL", "lines": [{"$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": "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": "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": "london-overground", "name": "London Overground", "uri": "/Line/london-overground", "type": "Line", "crowding": {"$type": "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": "490001139HO", "stationAtcoCode": "490G01139HO", "lineIdentifier": ["141", "29", "341", "n29"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490001139HF", "stationAtcoCode": "490G01139HO", "lineIdentifier": ["141", "29", "341", "n29"]}, {"$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": "bus", "lineIdentifier": ["141", "29", "341", "n29"]}, {"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "overground", "lineIdentifier": ["london-overground"]}], "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": "Payphones", "sourceSystemKey": "StaticObjects", "value": "3"}, {"$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": "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": "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": ["overground", "bus"], "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": "h14", "name": "H14", "uri": "/Line/h14", "type": "Line", "crowding": {"$type": "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"}], "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": "490001142B", "stationAtcoCode": "490G01142A", "lineIdentifier": ["h14", "h12"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490001142A", "stationAtcoCode": "490G01142A", "lineIdentifier": ["h12", "h14"]}], "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": ["h14", "h12"]}], "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": "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"}, {"$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"}], "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": "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"}], "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": "Lifts", "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": "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": "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"}, {"$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"}], "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": "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": "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"}, {"$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": "london-overground", "name": "London Overground", "uri": "/Line/london-overground", "type": "Line", "crowding": {"$type": "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": "490001161N", "stationAtcoCode": "490G01161N", "lineIdentifier": ["6", "28", "302", "187", "52"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490001161S1", "stationAtcoCode": "490G01161N", "lineIdentifier": ["6", "302", "187", "52"]}, {"$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": "490001161S", "stationAtcoCode": "490G01161N", "lineIdentifier": ["302"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "bus", "lineIdentifier": ["6", "28", "302", "187", "52"]}, {"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "overground", "lineIdentifier": ["london-overground"]}], "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": ["overground", "bus"], "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": ["bus", "overground"], "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": "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": "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": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "3+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": "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": "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": "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": "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": "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": "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": "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": "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.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": "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": "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": "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": "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"}, {"$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"}], "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": "490015243Z", "stationAtcoCode": "490G01170Q", "lineIdentifier": ["206", "31", "n31", "32", "632", "328", "316", "n28"]}, {"$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": "490001170Q", "stationAtcoCode": "490G01170Q", "lineIdentifier": ["206", "632"]}, {"$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": "490001170U", "stationAtcoCode": "490G01170Q", "lineIdentifier": ["n28", "31", "n31"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490001170T", "stationAtcoCode": "490G01170Q", "lineIdentifier": ["31", "n31", "n28"]}], "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": ["206", "31", "n31", "32", "632", "328", "316", "n28", "n98"]}], "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": ["bus", "overground"], "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": "london-overground", "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": "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"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "910GKNTSHTW", "lineIdentifier": ["london-overground"]}, {"$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": ["46", "393"]}], "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": ["46", "393"]}], "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": "Toilets", "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": "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": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5772"}, {"$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"}], "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": ["overground", "bus"], "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": "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": "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": "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"}], "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": "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": "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"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.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": "Help Points", "sourceSystemKey": "StaticObjects", "value": "3 on platforms, 0 in ticket halls, 0 elsewhere"}], "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": "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": "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": "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": "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": "490001178N", "stationAtcoCode": "490G01178N", "lineIdentifier": ["n26", "69", "97", "w16"]}, {"$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": "490001178S", "stationAtcoCode": "490G01178N", "lineIdentifier": ["w16", "n26", "69", "97"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "bus", "lineIdentifier": ["n26", "69", "97", "w16"]}, {"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "overground", "lineIdentifier": ["london-overground"]}], "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": ["bus", "overground"], "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", "elizabeth-line", "national-rail"], "icsCode": "1000138", "stopType": "NaptanRailStation", "stationNaptan": "910GLIVST", "hubNaptanCode": "HUBLST", "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": "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"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "910GLIVST", "lineIdentifier": ["greater-anglia", "london-overground", "c2c", "elizabeth"]}], "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": "overground", "lineIdentifier": ["london-overground"]}, {"$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": ["overground", "national-rail", "elizabeth-line"], "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": "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": "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"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "910GLIVST", "lineIdentifier": ["london-overground", "elizabeth", "greater-anglia", "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": "elizabeth-line", "lineIdentifier": ["elizabeth"]}, {"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "national-rail", "lineIdentifier": ["greater-anglia", "c2c"]}], "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": ["national-rail", "overground"], "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": ["national-rail", "overground"], "icsCode": "1001183", "stopType": "NaptanRailAccessArea", "stationNaptan": "910GLONFLDS", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "london-overground", "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": "910GLONFLDS", "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": "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": "london-overground", "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": "910GLONFLDS", "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": "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": ["bus", "overground"], "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": "490001179S", "stationAtcoCode": "490G01179S", "lineIdentifier": ["257", "n8", "w14"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490001179N", "stationAtcoCode": "490G01179S", "lineIdentifier": ["257", "n8", "w14"]}], "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": ["overground", "bus"], "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": ["national-rail", "overground"], "icsCode": "1000156", "stopType": "NaptanRailStation", "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"]}, {"$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": "national-rail", "lineIdentifier": ["southern"]}, {"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "overground", "lineIdentifier": ["london-overground"]}], "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": "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": "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": ["overground", "national-rail"], "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": ["national-rail", "overground"], "icsCode": "1001216", "stopType": "NaptanRailStation", "stationNaptan": "910GNORWDJ", "hubNaptanCode": "HUBNWD", "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": "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": ["thameslink", "southern", "southeastern"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "910GNORWDJ", "lineIdentifier": ["southern", "london-overground", "southeastern"]}, {"$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": ["southern", "thameslink", "london-overground"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "national-rail", "lineIdentifier": ["thameslink", "southern", "southeastern"]}, {"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "overground", "lineIdentifier": ["london-overground"]}], "status": true, "id": "910GNORWDJ", "commonName": "Norwood Junction Rail Station", "placeType": "StopPoint", "additionalProperties": [{"$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"}, {"$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": "Opening Time", "key": "SunTo", "sourceSystemKey": "NreStationData", "value": "19: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: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": "Facility", "key": "Car Park", "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": "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": "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": "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"}], "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": ["overground", "national-rail"], "icsCode": "1001216", "stopType": "NaptanRailAccessArea", "stationNaptan": "910GNORWDJ", "hubNaptanCode": "HUBNWD", "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": "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": "910GNORWDJ", "lineIdentifier": ["thameslink", "southern", "london-overground"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "national-rail", "lineIdentifier": ["thameslink", "southern"]}, {"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "overground", "lineIdentifier": ["london-overground"]}], "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": "london-overground", "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": "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", "southern", "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": ["southern", "southeastern"]}], "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": ["overground", "national-rail"], "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": "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": "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": "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"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.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": "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"}], "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": "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"}, {"$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"}], "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": ["overground", "national-rail", "bus"], "icsCode": "1001233", "stopType": "NaptanRailStation", "stationNaptan": "910GPCKHMQD", "lines": [{"$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": "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": "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": "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": "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": "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": "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": "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": "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": "490001233QE", "stationAtcoCode": "490G01233QN", "lineIdentifier": ["p12"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490001233QB", "stationAtcoCode": "490G01233QN", "lineIdentifier": ["36", "136", "171", "177", "n171", "n136", "n89", "436", "p12", "p13"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "910GPCKHMQD", "lineIdentifier": ["southern", "london-overground"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490001233QN", "stationAtcoCode": "490G01233QN", "lineIdentifier": ["n89", "n171", "177", "436", "171", "136", "36", "p13", "n136"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "bus", "lineIdentifier": ["p12", "36", "136", "171", "177", "n171", "n136", "n89", "436", "p13"]}, {"$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": "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": "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": "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": "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": ["overground", "bus"], "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": "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": "910GPCKHMQD", "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "910GPCKHMRY", "lineIdentifier": ["thameslink", "southern", "london-overground"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490001223V", "stationAtcoCode": "490G01223U", "lineIdentifier": ["p12", "63", "12", "343", "363", "n63", "197", "37", "n343", "78"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "910GPCKHMRY", "lineIdentifier": ["southeastern", "thameslink"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490001223U", "stationAtcoCode": "490G01223U", "lineIdentifier": ["n343", "63", "p12", "p13", "12", "343", "197", "n63", "37", "363", "78"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "national-rail", "lineIdentifier": ["thameslink", "southern", "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": ["p12", "63", "12", "343", "363", "n63", "197", "37", "n343", "78", "p13"]}], "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": ["overground", "national-rail"], "icsCode": "1001223", "stopType": "NaptanRailAccessArea", "stationNaptan": "910GPCKHMRY", "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": "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": "910GPCKHMRY", "lineIdentifier": ["thameslink", "southern", "london-overground"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "national-rail", "lineIdentifier": ["thameslink", "southern"]}, {"$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": "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}, {"$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}], "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": "354", "name": "354", "uri": "/Line/354", "type": "Line", "crowding": {"$type": "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": "490001225A", "stationAtcoCode": "490G01225A", "lineIdentifier": ["354"]}, {"$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": "bus", "lineIdentifier": ["354"]}, {"$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": "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": ["overground", "bus"], "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": "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": "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": ["national-rail", "overground"], "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": ["national-rail", "overground"], "icsCode": "1000186", "stopType": "NaptanRailAccessArea", "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": "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": "london-overground", "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": "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": ["overground", "national-rail"], "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": "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": "Opening Time", "key": "MonFriFrom", "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": "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": "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": "Cash Machines", "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": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.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"}, {"$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": "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": "Help Points", "sourceSystemKey": "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", "elizabeth-line", "national-rail", "overground"], "icsCode": "1001243", "stopType": "NaptanRailStation", "stationNaptan": "910GROMFORD", "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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"}, {"$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": "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": "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": "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": "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": "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": "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": "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": "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": "498", "name": "498", "uri": "/Line/498", "type": "Line", "crowding": {"$type": "Tfl.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": ["elizabeth", "greater-anglia"]}, {"$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", "naptanIdReference": "490001243Y", "stationAtcoCode": "910GROMFORD", "lineIdentifier": ["651", "674", "165", "294", "248", "193", "365", "252", "103"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490001243ZA", "stationAtcoCode": "910GROMFORD", "lineIdentifier": ["347", "86", "375", "370", "128", "66", "686", "n86", "296", "5"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490015182X", "stationAtcoCode": "910GROMFORD", "lineIdentifier": ["165", "365", "674", "651", "248", "252"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490015181L", "stationAtcoCode": "910GROMFORD", "lineIdentifier": ["649", "650", "496", "370"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490001243W", "stationAtcoCode": "910GROMFORD", "lineIdentifier": ["247", "128", "66", "296", "86", "375", "347"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490001243T", "stationAtcoCode": "910GROMFORD", "lineIdentifier": ["499", "n15", "175", "174", "5", "498"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490001243V", "stationAtcoCode": "910GROMFORD", "lineIdentifier": ["498", "649", "174", "193", "247", "496", "294", "175", "650", "103", "n15", "499"]}], "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": ["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": ["651", "674", "165", "294", "248", "193", "365", "252", "103", "347", "86", "375", "370", "128", "66", "686", "n86", "296", "5", "649", "650", "496", "247", "499", "n15", "175", "174", "498"]}], "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": ["overground", "bus"], "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": ["overground", "bus"], "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": "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}, {"$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": "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}], "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": "london-overground", "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": "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": "n381", "name": "N381", "uri": "/Line/n381", "type": "Line", "crowding": {"$type": "Tfl.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"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490000195W", "stationAtcoCode": "490G00195V", "lineIdentifier": ["381", "c10", "n381"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490000195V", "stationAtcoCode": "490G00195V", "lineIdentifier": ["381", "c10", "n381"]}], "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": ["381", "c10", "n381"]}], "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": ["national-rail", "overground"], "icsCode": "1001257", "stopType": "NaptanRailStation", "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": "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": "london-overground", "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": "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": "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": "910GSEVNSIS", "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": "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": "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": "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": "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": "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": "910GSEVNSIS", "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": "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": "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": "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."}], "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": "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": "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": "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": "Geo", "key": "Zone", "sourceSystemKey": "SingleFareFinder", "value": "2"}, {"$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"}], "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": "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"}, {"$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"}], "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": "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": "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": "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": "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": "london-overground", "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": "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": "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": "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": "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": "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": "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": "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": "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": "135", "name": "135", "uri": "/Line/135", "type": "Line", "crowding": {"$type": "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": "490006883N", "stationAtcoCode": "490G06883N", "lineIdentifier": ["242"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490006398K", "stationAtcoCode": "490G06398K", "lineIdentifier": ["388", "8", "n8"]}, {"$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": "490005524F", "stationAtcoCode": "490G05524E", "lineIdentifier": ["149", "26", "78", "n26", "n242"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490012113N", "stationAtcoCode": "490G16266N", "lineIdentifier": ["n242", "242", "149", "35", "n26", "78", "26"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490005524E", "stationAtcoCode": "490G05524E", "lineIdentifier": ["n205", "35", "205", "135"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490005910S", "stationAtcoCode": "490G05910S", "lineIdentifier": ["205", "135", "n205"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "bus", "lineIdentifier": ["242", "388", "8", "n8", "149", "26", "78", "n26", "n242", "35", "n205", "205", "135"]}, {"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "overground", "lineIdentifier": ["london-overground"]}], "status": true, "id": "910GSHRDHST", "commonName": "Shoreditch High Street Rail Station", "placeType": "StopPoint", "additionalProperties": [{"$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_322"}, {"$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": "TaxiRank_5585"}, {"$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_5700"}, {"$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": "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": "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": "BlueBadgeCarParkSpaces", "sourceSystemKey": "LRAD", "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": "ServiceInfo", "key": "Night", "sourceSystemKey": "TransXchangeETL", "value": "yes"}], "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": "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": "AccessViaLift", "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.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": ["national-rail", "overground"], "icsCode": "1001250", "stopType": "NaptanRailStation", "stationNaptan": "910GSIVRST", "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": "910GSIVRST", "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": "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": ["overground", "national-rail"], "icsCode": "1001250", "stopType": "NaptanRailAccessArea", "stationNaptan": "910GSIVRST", "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": "910GSIVRST", "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": "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": ["elizabeth-line", "overground", "national-rail"], "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": "london-overground", "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": "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": "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"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "910GSTFD", "lineIdentifier": ["greater-anglia", "c2c"]}], "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": "overground", "lineIdentifier": ["london-overground"]}, {"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "elizabeth-line", "lineIdentifier": ["elizabeth"]}], "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": "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": "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": "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": "WiFi", "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": "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": "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": "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": "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}, {"$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": "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}], "lat": 51.541895, "lon": -0.003397}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "910GSTJMSST", "modes": ["overground", "bus"], "icsCode": "1001268", "stopType": "NaptanRailStation", "stationNaptan": "910GSTJMSST", "lines": [{"$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": "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": "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": "london-overground", "name": "London Overground", "uri": "/Line/london-overground", "type": "Line", "crowding": {"$type": "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": "490001268Q", "stationAtcoCode": "490G01268P", "lineIdentifier": ["w11", "230", "158"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490001268P", "stationAtcoCode": "490G01268P", "lineIdentifier": ["230", "w11", "158"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490001268ZD", "stationAtcoCode": "490G01268P", "lineIdentifier": ["675", "275", "212"]}, {"$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": "490001268ZC", "stationAtcoCode": "490G01268P", "lineIdentifier": ["275", "212", "675"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "bus", "lineIdentifier": ["w11", "230", "158", "675", "275", "212"]}, {"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "overground", "lineIdentifier": ["london-overground"]}], "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", "national-rail", "bus"], "icsCode": "1001273", "stopType": "NaptanRailStation", "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"}, {"$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": "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": "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": "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": "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": "67", "name": "67", "uri": "/Line/67", "type": "Line", "crowding": {"$type": "Tfl.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"]}, {"$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", "naptanIdReference": "490001273E", "stationAtcoCode": "490G01273C", "lineIdentifier": ["243", "n73", "149", "106", "476", "67"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490001273C", "stationAtcoCode": "490G01273C", "lineIdentifier": ["n73", "243", "476", "106", "67", "149"]}], "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": ["393", "243", "n73", "149", "106", "476", "67"]}], "status": true, "id": "910GSTKNWNG", "commonName": "Stoke Newington Rail Station", "placeType": "StopPoint", "additionalProperties": [{"$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"}, {"$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"}], "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": "london-overground", "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": "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": ["bus", "overground", "national-rail"], "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": "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": "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"}], "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": "490012524D", "stationAtcoCode": "490G01265B", "lineIdentifier": ["254", "n253", "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": "490001265A", "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": ["254", "n253", "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": ["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": "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": "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": "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": "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": "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": "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": "Bridge", "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"}], "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": "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": "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": "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": "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": "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": "london-overground", "name": "London Overground", "uri": "/Line/london-overground", "type": "Line", "crowding": {"$type": "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": "490001264OB", "stationAtcoCode": "490G01264W", "lineIdentifier": ["149", "318", "476", "349", "243", "n73"]}, {"$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": "490001264W", "stationAtcoCode": "490G01264W", "lineIdentifier": ["149", "476", "349", "318", "243", "n73"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "bus", "lineIdentifier": ["149", "318", "476", "349", "243", "n73"]}, {"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "overground", "lineIdentifier": ["london-overground"]}], "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": ["bus", "overground"], "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": ["overground", "bus"], "icsCode": "1000229", "stopType": "NaptanRailStation", "stationNaptan": "910GSURREYQ", "lines": [{"$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": "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": "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": "490000229O", "stationAtcoCode": "490G00229O", "lineIdentifier": ["n199", "381", "1", "225", "188", "199", "n381"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490000229L", "stationAtcoCode": "490G00229S", "lineIdentifier": ["199", "n1", "n381", "188", "381", "1", "225", "n199"]}, {"$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": ["n199", "381", "1", "225", "188", "199", "n381", "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": "Geo", "key": "Zone", "sourceSystemKey": "SingleFareFinder", "value": "3"}, {"$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": "SpecificEntranceRequired", "sourceSystemKey": "LRAD", "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. Use the Peak Hill Gardens entrance for platform 1. Use the Station Approach entrance for platform 2"}], "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": "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": "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": "london-overground", "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": "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": ["national-rail", "overground"], "icsCode": "1001533", "stopType": "NaptanRailStation", "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": "910GTHBLDSG", "commonName": "Theobalds Grove Rail Station", "placeType": "StopPoint", "additionalProperties": [{"$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": "Car Park", "sourceSystemKey": "NreStationData", "value": "yes"}, {"$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": "Left Luggage", "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": "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": "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": ["overground", "national-rail"], "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": "london-overground", "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": "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", "national-rail", "bus"], "icsCode": "1001299", "stopType": "NaptanRailStation", "stationNaptan": "910GTURKYST", "lines": [{"$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": "london-overground", "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": "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", "naptanIdReference": "490001299D", "stationAtcoCode": "490G01299D", "lineIdentifier": ["279", "121", "n279"]}, {"$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": "490010626C", "stationAtcoCode": "490G01299D", "lineIdentifier": ["121", "279", "n279"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490001299E", "stationAtcoCode": "490G01299E", "lineIdentifier": ["327"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "bus", "lineIdentifier": ["279", "121", "n279", "327"]}, {"$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": "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": "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": "Facility", "key": "Boarding Ramps", "sourceSystemKey": "NreStationData", "value": "no"}, {"$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": "Address", "key": "PhoneNo", "sourceSystemKey": "NreStationData", "value": "0343 222 1234"}, {"$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: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": ["overground", "bus"], "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": ["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": "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": "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": "910GTURKYST", "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": "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": ["national-rail", "bus", "overground"], "icsCode": "1000242", "stopType": "NaptanRailStation", "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"}, {"$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": "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": "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": "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": "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": "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", "naptanIdReference": "490000242U", "stationAtcoCode": "910GUPMNSTR", "lineIdentifier": ["248", "347", "346"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490000242A", "stationAtcoCode": "910GUPMNSTR", "lineIdentifier": ["347", "346", "646", "652", "248", "370"]}], "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": "bus", "lineIdentifier": ["248", "347", "346", "646", "652", "370"]}], "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": ["overground", "bus"], "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": ["overground", "bus"], "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": "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": "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": "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": "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": "london-overground", "name": "London Overground", "uri": "/Line/london-overground", "type": "Line", "crowding": {"$type": "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": "490001302S", "stationAtcoCode": "490G01302S", "lineIdentifier": ["43", "n41", "263", "n271", "17"]}, {"$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": "490001302T", "stationAtcoCode": "490G01302S", "lineIdentifier": ["43", "n41", "17", "263", "n271"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "bus", "lineIdentifier": ["43", "n41", "263", "n271", "17"]}, {"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "overground", "lineIdentifier": ["london-overground"]}], "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": ["overground", "bus"], "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": ["bus", "overground"], "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": ["bus", "overground"], "icsCode": "1000251", "stopType": "NaptanRailStation", "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"}, {"$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": "100", "name": "100", "uri": "/Line/100", "type": "Line", "crowding": {"$type": "Tfl.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"]}, {"$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", "naptanIdReference": "490014208E", "stationAtcoCode": "490G00251W", "lineIdentifier": ["100"]}], "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": ["d3", "100"]}], "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": ["overground", "national-rail"], "icsCode": "1001317", "stopType": "NaptanRailStation", "stationNaptan": "910GWATFDJ", "hubNaptanCode": "HUBWFJ", "lines": [{"$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": "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": "national-rail", "lineIdentifier": ["avanti-west-coast", "west-midlands-trains"]}], "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": "Other Facilities", "sourceSystemKey": "StaticObjects", "value": "canopies over platform (part)."}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.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": "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": "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": "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": "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": "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"}, {"$type": "Tfl.Api.Presentation.Entities.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"}], "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": ["national-rail", "overground"], "icsCode": "1001324", "stopType": "NaptanRailStation", "stationNaptan": "910GWCROYDN", "hubNaptanCode": "HUBWCY", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "london-overground", "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": "910GWCROYDN", "lineIdentifier": ["london-overground", "southern"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "910GWCROYDN", "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": "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": "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"}, {"$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": "AccessViaLift", "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": ["national-rail", "overground"], "icsCode": "1001324", "stopType": "NaptanRailAccessArea", "stationNaptan": "910GWCROYDN", "hubNaptanCode": "HUBWCY", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "london-overground", "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": "910GWCROYDN", "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": "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": "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}, {"$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}], "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": "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": "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": "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": "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": "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": "london-overground", "name": "London Overground", "uri": "/Line/london-overground", "type": "Line", "crowding": {"$type": "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": "490001341G", "stationAtcoCode": "490G01341G", "lineIdentifier": ["86", "25", "n25", "425", "n86"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490001341H", "stationAtcoCode": "490G01341G", "lineIdentifier": ["86", "25", "n25", "425", "n86"]}, {"$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": "bus", "lineIdentifier": ["86", "25", "n25", "425", "n86"]}, {"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "overground", "lineIdentifier": ["london-overground"]}], "status": true, "id": "910GWDGRNPK", "commonName": "Woodgrange Park Rail Station", "placeType": "StopPoint", "additionalProperties": [{"$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": "Facility", "key": "Waiting Room", "sourceSystemKey": "NreStationData", "value": "no"}, {"$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": "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": ["bus", "overground"], "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": ["overground", "bus"], "icsCode": "1001343", "stopType": "NaptanRailStation", "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"}, {"$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"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "910GWDST", "lineIdentifier": ["london-overground"]}, {"$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"]}], "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": ["230", "w16"]}], "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": ["bus", "overground"], "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", "bus", "national-rail"], "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": "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": "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": "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": "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": "w3", "name": "W3", "uri": "/Line/w3", "type": "Line", "crowding": {"$type": "Tfl.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": "490001335D", "stationAtcoCode": "490G01335D", "lineIdentifier": ["349", "279", "259", "149", "n279"]}, {"$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": "490001335S", "stationAtcoCode": "490G01335S", "lineIdentifier": ["n279", "259", "279", "349", "149"]}], "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": ["349", "279", "259", "149", "n279", "w3"]}], "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": ["overground", "bus"], "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": ["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": "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": "Car Park", "sourceSystemKey": "NreStationData", "value": "no"}, {"$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": "Left Luggage", "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": "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"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Opening Time", "key": "MonFriFrom", "sourceSystemKey": "NreStationData", "value": "07:00"}], "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": "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": "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": "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": "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": "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": "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": "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"}, {"$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"}], "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": "Car Park", "sourceSystemKey": "NreStationData", "value": "no"}, {"$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": "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": "Help points", "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": "Geo", "key": "Zone", "sourceSystemKey": "SingleFareFinder", "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"}, {"$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": "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": "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": "Opening Time", "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"}], "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": "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": "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": "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": "Escalators", "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.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": "london-overground", "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": "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": "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": "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": "452", "name": "452", "uri": "/Line/452", "type": "Line", "crowding": {"$type": "Tfl.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"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490001310A", "stationAtcoCode": "490G01310A", "lineIdentifier": ["n87", "87", "77", "452"]}], "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"]}, {"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "bus", "lineIdentifier": ["n87", "87", "77", "452"]}], "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": ["national-rail", "overground"], "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": "london-overground", "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": "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": "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": "308", "name": "308", "uri": "/Line/308", "type": "Line", "crowding": {"$type": "Tfl.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"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490001312N", "stationAtcoCode": "490G01312N", "lineIdentifier": ["330", "58", "308"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490001312S", "stationAtcoCode": "490G01312N", "lineIdentifier": ["308", "58", "330"]}], "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": ["330", "58", "308"]}], "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": ["overground", "bus"], "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": "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": "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": "Help 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": "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": "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": "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": "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": "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": "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": "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"}], "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": "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"}, {"$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"}], "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": "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": "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": "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": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}], "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": "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": "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": "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": "Payphones", "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, 4 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": "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": "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": "Angel Station,London Underground Ltd.,High Street,London,N1 9LQ"}, {"$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": "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": "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": "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": "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.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": "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"}, {"$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"}], "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": "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": "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"}], "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": "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"}, {"$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": "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": "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": "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"}], "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": "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": "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": "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": "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": "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": "940GZZLUBBN", "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": "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": "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": "940GZZLUBBN", "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": "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": "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": "Barbican Station,London Underground Ltd.,Aldersgate St,London,EC1A 4JA"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.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"}], "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": "Facility", "key": "Help Points", "sourceSystemKey": "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": "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": "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"}, {"$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": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}], "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": "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": "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": "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": "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": "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": "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": "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": "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"}], "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": "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": "9400ZZLUBKF1", "commonName": "Blackfriars Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$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": "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": "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": "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": "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": "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": "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": "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": "940GZZLUBKG", "lineIdentifier": ["hammersmith-city", "district"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["hammersmith-city", "district"]}], "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": "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": "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": "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": "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": "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"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.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"}], "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": "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": "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": "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": "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": "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": "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": "Help Points", "sourceSystemKey": "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.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": "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": "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": "Escalators", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$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": "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": "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": "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": "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": "Help Points", "sourceSystemKey": "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": "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": "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": "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": "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": "Cash Machines", "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"}, {"$type": "Tfl.Api.Presentation.Entities.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"}], "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": "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": "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"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.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": "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": "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": "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": "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"}], "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": "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": "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": "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"}, {"$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": "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"}], "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": "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": "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": "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": "Car park", "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.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": "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": "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": "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": "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": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "3"}, {"$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": "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": "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": "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"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, 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"}], "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": "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"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.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"}], "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": "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": "Help 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": "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": "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": "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": "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": "Toilets", "sourceSystemKey": "StaticObjects", "value": "yes - male & female coin op"}, {"$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"}], "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": "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"}, {"$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": "Photo 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.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": "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": "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": "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": "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": "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": "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"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.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.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": "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": "9400ZZLUBWR1", "commonName": "Bow 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": "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": "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": "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"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.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"}], "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": "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": "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": "Photo 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": "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": "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": "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"}], "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": "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": "9400ZZLUBWT2", "commonName": "Bayswater 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": "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"}], "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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"}], "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": "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": "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": "Help Points", "sourceSystemKey": "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": "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": "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": "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": "Lifts", "sourceSystemKey": "StaticObjects", "value": "4"}], "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": "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": "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"}], "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": "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": "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": "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"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.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"}], "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": "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": "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": "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"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help 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": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "4"}], "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": "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, 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": "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"}], "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": "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": "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"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.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": "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": "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": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}], "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": "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": "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": "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"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.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.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": "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": "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": "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": "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": "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": "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"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.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"}], "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": "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": "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": "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": "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": "Help Points", "sourceSystemKey": "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": "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": "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"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.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"}], "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": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "7"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "yes"}], "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": "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": "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": "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"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, 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"}], "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": "Lifts", "sourceSystemKey": "StaticObjects", "value": "3"}, {"$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": "Photo 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": "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": "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": "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": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "2"}], "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": "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": "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": "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": "Gates", "sourceSystemKey": "StaticObjects", "value": "4"}], "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": "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"}, {"$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": "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": "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": "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": "Lifts", "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": "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": "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": "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": "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."}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help 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 Heathway Station,London Underground Ltd.,Heathway,Dagenham,Essex,RM9 5AN"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "yes"}], "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": "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": "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"}, {"$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"}], "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": "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": "Other Facilities", "sourceSystemKey": "StaticObjects", "value": "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": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "1+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": "Help Points", "sourceSystemKey": "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": "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": "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": "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"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.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.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": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "1+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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "Help Points", "sourceSystemKey": "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": "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 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": "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": "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": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}], "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": "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"}, {"$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": "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": "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": "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": "Facility", "key": "Help 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": "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": "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": "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": "Car park", "sourceSystemKey": "StaticObjects", "value": "no"}], "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": "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": "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": "Other Facilities", "sourceSystemKey": "StaticObjects", "value": "routeways platform to ticket hall."}, {"$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": "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": "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": "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": "Opening Time", "key": "SatFrom", "sourceSystemKey": "StaticObjects", "value": "05:35"}, {"$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"}], "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": "Facility", "key": "Help Points", "sourceSystemKey": "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"}, {"$type": "Tfl.Api.Presentation.Entities.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"}, {"$type": "Tfl.Api.Presentation.Entities.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": "Ealing Common Station,London Underground Ltd.,Uxbridge Rd,London,W5 3LD"}], "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": "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": "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": "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": "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": "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": "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": "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": "Help 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": "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": "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": "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": "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": "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": "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": "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": "Escalators", "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": "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": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Earl's Court Station,London Underground Ltd.,Earl's Court Rd,London,SW5 9QA"}], "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": "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"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "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"}], "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": "Help Points", "sourceSystemKey": "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": "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": "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": "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": "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": "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": "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": "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": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}], "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": "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": "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": "Gates", "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": "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"}], "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": "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": "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": "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": "Help Points", "sourceSystemKey": "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": "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": "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": "Payphones", "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"}], "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": "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": "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": "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": "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": "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"}, {"$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": "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"}], "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": "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": "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": "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": "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": "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": "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"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "10"}], "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": "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": "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": "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": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "6"}, {"$type": "Tfl.Api.Presentation.Entities.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": "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": "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": "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)"}], "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": "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": "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": "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": "Boarding Ramps", "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"], "icsCode": "1000074", "stopType": "NaptanRailAccessArea", "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": "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": "Help Points", "sourceSystemKey": "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": "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": "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"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "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"}], "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": "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"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.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"}], "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": "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": "940GZZLUERC", "lineIdentifier": ["district", "circle"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["district", "circle"]}], "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": "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": "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": "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": "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"}], "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": "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": "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": "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"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "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": "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": "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": "940GZZLUESQ", "lineIdentifier": ["hammersmith-city", "metropolitan", "circle"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["hammersmith-city", "metropolitan", "circle"]}], "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": "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": "940GZZLUESQ", "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": "9400ZZLUESQ2", "commonName": "Euston Square 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": "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": "Help Points", "sourceSystemKey": "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": "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": "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"}], "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": "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": "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": "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"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.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."}], "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": "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": "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": "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": "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"}], "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": "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": "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": "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"}, {"$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"}], "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": "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": "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": ["hammersmith-city", "metropolitan", "circle"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["hammersmith-city", "metropolitan", "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": "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": "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": "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": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$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": "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": "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"}], "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": "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": "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"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help 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": "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."}], "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": "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"}, {"$type": "Tfl.Api.Presentation.Entities.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"}], "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": "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": "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": "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": "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": "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": "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": "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": "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": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}], "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": "Help Points", "sourceSystemKey": "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"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "0"}], "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": "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": "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": "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"}, {"$type": "Tfl.Api.Presentation.Entities.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": "3"}], "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": "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": "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"}, {"$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": "Gates", "sourceSystemKey": "StaticObjects", "value": "10"}], "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": "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": "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": "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": "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"}], "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": "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": "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"}], "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": "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": "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": "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": "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": "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": "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": "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"}], "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": "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": "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": "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": "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": "Payphones", "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": "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": "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.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": "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": "940GZZLUGHK", "lineIdentifier": ["hammersmith-city", "circle"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["hammersmith-city", "circle"]}], "status": true, "id": "9400ZZLUGHK1", "commonName": "Goldhawk Road 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": "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": "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"}], "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": "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": "940GZZLUGHK", "lineIdentifier": ["hammersmith-city", "circle"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["hammersmith-city", "circle"]}], "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": "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": "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": "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": "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": "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": "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": "Help Points", "sourceSystemKey": "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": "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": "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": "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": "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": "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": "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": ["hammersmith-city", "metropolitan", "circle"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["hammersmith-city", "metropolitan", "circle"]}], "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": "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": "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": "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": "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": "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": "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.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": "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"}, {"$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": "940GZZLUGPS", "lineIdentifier": ["circle", "metropolitan", "hammersmith-city"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["circle", "metropolitan", "hammersmith-city"]}], "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": "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": "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": "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"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.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": "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"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.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": "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": "Other Facilities", "sourceSystemKey": "StaticObjects", "value": "subway to street."}], "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": "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": "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": "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": "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": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}], "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": "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, 2 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": "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": "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": "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": "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": "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"}, {"$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": "Bridge", "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": "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"}], "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": "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": "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": "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"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.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": "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": "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"}], "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": "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": "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": "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": "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": "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": "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": "14"}, {"$type": "Tfl.Api.Presentation.Entities.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": "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": "4"}, {"$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": "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": "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": "2"}, {"$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": "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"}], "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": "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"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.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": "Other Facilities", "sourceSystemKey": "StaticObjects", "value": "routeways platform to ticket hall."}], "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": "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": "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": "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": "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": "Car park", "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": "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": "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": "ASDA Click and Collect", "sourceSystemKey": "StaticObjects", "value": "yes"}], "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": "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"}], "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": "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": "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": "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": "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"}], "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": "Help Points", "sourceSystemKey": "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.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": "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"}, {"$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"}], "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": "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": "Facility", "key": "Help 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": "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": "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"}, {"$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": "Escalators", "sourceSystemKey": "StaticObjects", "value": "yes (disabled 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": "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": "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": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}], "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": "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": "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": "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": "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": "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": "Help Points", "sourceSystemKey": "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": "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": "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": "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": "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": "3"}], "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": "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": "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": "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": "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"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.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."}], "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": "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": "Help Points", "sourceSystemKey": "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": "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": "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"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.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"}], "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": "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"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.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": "Escalators", "sourceSystemKey": "StaticObjects", "value": "2"}], "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": "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": "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": "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": "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": "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"}], "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": "Help Points", "sourceSystemKey": "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"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}], "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": "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"}, {"$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"}], "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": "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": "940GZZLUHSC", "lineIdentifier": ["hammersmith-city", "circle"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["hammersmith-city", "circle"]}], "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": "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": "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": "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": "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": "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": "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"}], "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": "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": "Help 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": "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": "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": "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": "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"}], "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": "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": "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"}], "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": "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": "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": "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": "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": "Car park", "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": "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"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.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"}], "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": "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": "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"}], "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": "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": "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": "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": "Help Points", "sourceSystemKey": "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": "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": "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"}], "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": "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": "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": "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": "Help Points", "sourceSystemKey": "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.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": "Payphones", "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": "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"}, {"$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": "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": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}], "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": "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": "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": "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": "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": "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"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}], "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": "Bridge", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$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": "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": "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": "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": "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": "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": "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": "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.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": "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": "940GZZLUICK", "lineIdentifier": ["piccadilly", "metropolitan"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["piccadilly", "metropolitan"]}], "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": "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": "940GZZLUICK", "lineIdentifier": ["piccadilly", "metropolitan"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["piccadilly", "metropolitan"]}], "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": "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": "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": "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": "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": "Geo", "key": "Zone", "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": "Gates", "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": "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": "0 on platforms, 0 in ticket halls, 0 elsewhere"}], "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": "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"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.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"}], "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": "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"}], "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": "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": "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": "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": "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": "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": "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": "Bridge", "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 601 4867"}], "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": "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": "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": "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": "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": "940GZZLUKSX", "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": "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": "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": "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": "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": "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": "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"}], "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": "Bridge", "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": "Help Points", "sourceSystemKey": "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": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "3+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": "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": "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": "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)"}], "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": "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": "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": "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": "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"}], "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": "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": "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": "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": "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": "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": "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": "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": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "2"}], "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": "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": "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": "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": "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": "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": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}], "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": "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": "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": "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"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.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": "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": "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": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}], "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": "Escalators", "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": "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": "Facility", "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": "Facility", "key": "Help Points", "sourceSystemKey": "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": "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": "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": "Other Facilities", "sourceSystemKey": "StaticObjects", "value": "routeways platform to ticket hall."}], "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": "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": "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": "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": "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": "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": "Help 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": "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": "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": "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": "Photo Booths", "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.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": "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": "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": "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": "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"}], "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": "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": "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": "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": "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": "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"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.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": "London Bridge Underground Station,London Underground Ltd.,21 Duke St Hill,London,SE1 2SW"}], "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": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$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": "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": "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": "36"}, {"$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": "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"}], "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "Gates", "sourceSystemKey": "StaticObjects", "value": "15"}], "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": "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": "Help 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"}], "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": "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": "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": "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": "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": "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": "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": "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"}], "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": "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": "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": "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"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.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"}], "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": "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": "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": "5"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.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": "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, 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": "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": "VisitorCentre", "key": "Location", "sourceSystemKey": "StaticObjects", "value": "Underground Station"}], "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": "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": "940GZZLULVT", "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": "9400ZZLULVT3", "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": "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": "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"}], "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": "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": "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": "940GZZLULVT", "lineIdentifier": ["hammersmith-city", "metropolitan", "circle"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["hammersmith-city", "metropolitan", "circle"]}], "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": "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"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "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": "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": "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"}, {"$type": "Tfl.Api.Presentation.Entities.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.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": "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": "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 (male, female)"}, {"$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"}], "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": "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"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.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"}], "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": "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": "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": "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": "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": "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": "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": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}], "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": "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": "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": "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": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "0"}], "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": "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": "9400ZZLUMED3", "commonName": "Mile End 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": "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": "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": "Toilets", "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": "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": "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": "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": "Lifts", "sourceSystemKey": "StaticObjects", "value": "0"}], "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": "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": "940GZZLUMGT", "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": "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": "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": "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": "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": "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": "Ticket Halls", "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": "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"}], "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": "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": "940GZZLUMGT", "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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, 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": "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.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": "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": "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": "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": "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"}], "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": "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": "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"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.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": "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"}], "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": "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": "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": "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": "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": "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": "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": "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"}], "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": "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": "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": "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"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.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.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": "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": "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": "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": "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"}], "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": "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": "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": "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": "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"}], "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": "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": "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"}], "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": "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": "Help Points", "sourceSystemKey": "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": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "no"}], "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": "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": "North Acton Station,London Underground Ltd.,Victoria Rd,London,W3 6UP"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.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": "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": "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": "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"}], "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": "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": "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": "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": "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": "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."}], "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": "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": "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": "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": "Amazon Lockers", "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": "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": "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"}], "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": "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": "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": "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"}, {"$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"}], "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 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": "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": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "3"}, {"$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": "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": "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": "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": "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": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "2/3"}], "children": [], "lat": 51.500382, "lon": 0.005191}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUNGW2", "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": "9400ZZLUNGW2", "commonName": "North Greenwich 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": "Toilets", "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, 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": "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": "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": "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": "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": "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"}], "children": [], "lat": 51.500425, "lon": 0.005308}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUNHA", "modes": ["tube"], "icsCode": "1000161", "stopType": "NaptanMetroAccessArea", "stationNaptan": "940GZZLUNHA", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "9400ZZLUNHA", "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": "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": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "5"}, {"$type": "Tfl.Api.Presentation.Entities.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": "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": "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": "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": "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": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}], "children": [], "lat": 51.584872, "lon": -0.362408}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUNHA1", "modes": ["tube"], "icsCode": "1000161", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUNHA", "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": "940GZZLUNHA", "lineIdentifier": ["metropolitan"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["metropolitan"]}], "status": true, "id": "9400ZZLUNHA1", "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": "Toilets", "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": "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": "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": "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": "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": "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": "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"}], "children": [], "lat": 51.585094, "lon": -0.362833}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUNHA2", "modes": ["tube"], "icsCode": "1000161", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUNHA", "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": "940GZZLUNHA", "lineIdentifier": ["metropolitan"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["metropolitan"]}], "status": true, "id": "9400ZZLUNHA2", "commonName": "North Harrow 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": "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": "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": "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": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$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": "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": "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.585066, "lon": -0.362776}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUNHG", "modes": ["tube"], "icsCode": "1000167", "stopType": "NaptanMetroAccessArea", "stationNaptan": "940GZZLUNHG", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "9400ZZLUNHG", "commonName": "Notting Hill Gate 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": "Help Points", "sourceSystemKey": "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": "1+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": "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": "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": "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": "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.509128, "lon": -0.196104}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUNHG1", "modes": ["tube"], "icsCode": "1000167", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUNHG", "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": "940GZZLUNHG", "lineIdentifier": ["central"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["central"]}], "status": true, "id": "9400ZZLUNHG1", "commonName": "Notting Hill Gate 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": "Waiting Room", "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": "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": "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": "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": "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": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}], "children": [], "lat": 51.508921, "lon": -0.197309}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUNHG2", "modes": ["tube"], "icsCode": "1000167", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUNHG", "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": "940GZZLUNHG", "lineIdentifier": ["central"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["central"]}], "status": true, "id": "9400ZZLUNHG2", "commonName": "Notting Hill Gate 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": "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": "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": "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": "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": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "1+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": "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": "Gates", "sourceSystemKey": "StaticObjects", "value": "6"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}], "children": [], "lat": 51.508988, "lon": -0.196974}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUNHG3", "modes": ["tube"], "icsCode": "1000167", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUNHG", "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": "940GZZLUNHG", "lineIdentifier": ["district", "circle"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["district", "circle"]}], "status": true, "id": "9400ZZLUNHG3", "commonName": "Notting Hill Gate 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": "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": "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": "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": "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": "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": "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": "0"}], "children": [], "lat": 51.508749, "lon": -0.196033}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUNHG4", "modes": ["tube"], "icsCode": "1000167", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUNHG", "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": "940GZZLUNHG", "lineIdentifier": ["district", "circle"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["district", "circle"]}], "status": true, "id": "9400ZZLUNHG4", "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": "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": "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": "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": "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": "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": "Help Points", "sourceSystemKey": "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": "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": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "0"}], "children": [], "lat": 51.508677, "lon": -0.196007}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUNHT", "modes": ["tube"], "icsCode": "1000162", "stopType": "NaptanMetroAccessArea", "stationNaptan": "940GZZLUNHT", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "9400ZZLUNHT", "commonName": "Northolt 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": "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": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$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": "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": "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": "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": "Opening Time", "key": "SunFrom", "sourceSystemKey": "StaticObjects", "value": "09: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": "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": "Opening Time", "key": "SunTo", "sourceSystemKey": "StaticObjects", "value": "15:30"}, {"$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": "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": "19:15"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "yes (male, female)"}], "children": [], "lat": 51.548236, "lon": -0.368699}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUNHT1", "modes": ["tube"], "icsCode": "1000162", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUNHT", "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": "940GZZLUNHT", "lineIdentifier": ["central"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["central"]}], "status": true, "id": "9400ZZLUNHT1", "commonName": "Northolt 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": "Opening Time", "key": "SunTo", "sourceSystemKey": "StaticObjects", "value": "15:30"}, {"$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": "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": "Other Facilities", "sourceSystemKey": "StaticObjects", "value": "routeways platform to ticket hall."}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Opening Time", "key": "SunFrom", "sourceSystemKey": "StaticObjects", "value": "09: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": "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": "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": "MonFriTo", "sourceSystemKey": "StaticObjects", "value": "19: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": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$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": "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": "Help 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:15"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "2"}], "children": [], "lat": 51.548457, "lon": -0.369124}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUNHT2", "modes": ["tube"], "icsCode": "1000162", "stopType": "NaptanRailAccessArea", "stationNaptan": "940GZZLUNHT", "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": "940GZZLUNHT", "lineIdentifier": ["central"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["central"]}], "status": true, "id": "9400ZZLUNHT2", "commonName": "Northolt 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": "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": "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": "routeways platform to ticket hall."}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Opening Time", "key": "SunFrom", "sourceSystemKey": "StaticObjects", "value": "09: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": "Opening Time", "key": "SatFrom", "sourceSystemKey": "StaticObjects", "value": "08:00"}, {"$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": "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": "Opening Time", "key": "MonFriTo", "sourceSystemKey": "StaticObjects", "value": "19: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": "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": "yes (male, female)"}, {"$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": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Opening Time", "key": "SatTo", "sourceSystemKey": "StaticObjects", "value": "17:30"}], "children": [], "lat": 51.548457, "lon": -0.369124}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUNKP", "modes": ["tube"], "icsCode": "1000164", "stopType": "NaptanMetroAccessArea", "stationNaptan": "940GZZLUNKP", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "9400ZZLUNKP", "commonName": "Northwick Park Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$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": "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": "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": "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": "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": "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": "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": "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"}], "children": [], "lat": 51.578481, "lon": -0.318056}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUNKP1", "modes": ["tube"], "icsCode": "1000164", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUNKP", "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": "940GZZLUNKP", "lineIdentifier": ["metropolitan"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["metropolitan"]}], "status": true, "id": "9400ZZLUNKP1", "commonName": "Northwick 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": "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": "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": "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": "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": "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": "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": "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.578393, "lon": -0.317569}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUNKP2", "modes": ["tube"], "icsCode": "1000164", "stopType": "NaptanRailAccessArea", "stationNaptan": "940GZZLUNKP", "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": "940GZZLUNKP", "lineIdentifier": ["metropolitan"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["metropolitan"]}], "status": true, "id": "9400ZZLUNKP2", "commonName": "Northwick Park 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": "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": "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": "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": "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": "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": "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": "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"}], "children": [], "lat": 51.578393, "lon": -0.317554}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUNOW", "modes": ["tube"], "icsCode": "1000165", "stopType": "NaptanMetroAccessArea", "stationNaptan": "940GZZLUNOW", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "9400ZZLUNOW", "commonName": "Northwood 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": "12 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": "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": "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": "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": "Toilets", "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": "3"}, {"$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": "Northwood Station,London Underground Ltd.,Station Approach,Green Lane,Northwood,Middx,HA6 2XL"}], "children": [], "lat": 51.611053, "lon": -0.423829}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUNOW1", "modes": ["tube"], "icsCode": "1000165", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUNOW", "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": "940GZZLUNOW", "lineIdentifier": ["metropolitan"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["metropolitan"]}], "status": true, "id": "9400ZZLUNOW1", "commonName": "Northwood 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": "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": "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": "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": "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"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.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": "12 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": "Toilets", "sourceSystemKey": "StaticObjects", "value": "yes"}], "children": [], "lat": 51.611001, "lon": -0.42399}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUNOW2", "modes": ["tube"], "icsCode": "1000165", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUNOW", "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": "940GZZLUNOW", "lineIdentifier": ["metropolitan"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["metropolitan"]}], "status": true, "id": "9400ZZLUNOW2", "commonName": "Northwood 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": "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": "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": "12 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": "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": "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": "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": "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.610947, "lon": -0.423963}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUNWH", "modes": ["tube"], "icsCode": "1000166", "stopType": "NaptanMetroAccessArea", "stationNaptan": "940GZZLUNWH", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "9400ZZLUNWH", "commonName": "Northwood Hills 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": "10 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": "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": "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": "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": "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": "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": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "6"}], "children": [], "lat": 51.600572, "lon": -0.409464}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUNWH1", "modes": ["tube"], "icsCode": "1000166", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUNWH", "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": "940GZZLUNWH", "lineIdentifier": ["metropolitan"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["metropolitan"]}], "status": true, "id": "9400ZZLUNWH1", "commonName": "Northwood Hills 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."}, {"$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": "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": "Payphones", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$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": "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": "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": "10 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.600529, "lon": -0.408974}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUNWH2", "modes": ["tube"], "icsCode": "1000166", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUNWH", "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": "940GZZLUNWH", "lineIdentifier": ["metropolitan"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["metropolitan"]}], "status": true, "id": "9400ZZLUNWH2", "commonName": "Northwood Hills 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": "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": "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": "Gates", "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": "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": "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": "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": "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": "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.600492, "lon": -0.408875}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUNWY", "modes": ["tube"], "icsCode": "1000163", "stopType": "NaptanMetroAccessArea", "stationNaptan": "940GZZLUNWY", "hubNaptanCode": "HUBNWB", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "9400ZZLUNWY", "commonName": "North Wembley 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": "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": "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": "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": "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": "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": "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": "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": "Toilets", "sourceSystemKey": "StaticObjects", "value": "no"}], "children": [], "lat": 51.562551, "lon": -0.304}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUNWY1", "modes": ["tube"], "icsCode": "1000163", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUNWY", "hubNaptanCode": "HUBNWB", "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": "940GZZLUNWY", "lineIdentifier": ["bakerloo"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["bakerloo"]}], "status": true, "id": "9400ZZLUNWY1", "commonName": "North Wembley 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": "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": "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": "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": "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"}], "children": [], "lat": 51.562322, "lon": -0.303691}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUNWY2", "indicator": "southbound", "modes": ["tube"], "icsCode": "1000163", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUNWY", "hubNaptanCode": "HUBNWB", "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": "940GZZLUNWY", "lineIdentifier": ["bakerloo"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["bakerloo"]}], "status": true, "id": "9400ZZLUNWY2", "commonName": "North Wembley 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": "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": "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": "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": "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": "no"}], "children": [], "lat": 51.5628, "lon": -0.303774}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUOAK", "modes": ["tube"], "icsCode": "1000168", "stopType": "NaptanMetroAccessArea", "stationNaptan": "940GZZLUOAK", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "9400ZZLUOAK", "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": "Gates", "sourceSystemKey": "StaticObjects", "value": "3"}, {"$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": "Help Points", "sourceSystemKey": "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": "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": "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": "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"}], "children": [], "lat": 51.647725, "lon": -0.132168}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUOAK1", "modes": ["tube"], "icsCode": "1000168", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUOAK", "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": "940GZZLUOAK", "lineIdentifier": ["piccadilly"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["piccadilly"]}], "status": true, "id": "9400ZZLUOAK1", "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": "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": "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": "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": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "5"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.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": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$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": "Help 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.647336, "lon": -0.131418}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUOAK2", "modes": ["tube"], "icsCode": "1000168", "stopType": "NaptanRailAccessArea", "stationNaptan": "940GZZLUOAK", "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": "940GZZLUOAK", "lineIdentifier": ["piccadilly"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["piccadilly"]}], "status": true, "id": "9400ZZLUOAK2", "commonName": "Oakwood 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": "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": "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": "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": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$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": "Help 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": "Car park", "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.647327, "lon": -0.131433}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUODS", "modes": ["tube"], "icsCode": "1000169", "stopType": "NaptanMetroAccessArea", "stationNaptan": "940GZZLUODS", "hubNaptanCode": "HUBOLD", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "9400ZZLUODS", "commonName": "Old Street 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": "Help Points", "sourceSystemKey": "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": "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": "Address", "sourceSystemKey": "StaticObjects", "value": "Old Street Station,London Underground Ltd.,Old St,London,EC1Y 1BE"}, {"$type": "Tfl.Api.Presentation.Entities.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": "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.525864, "lon": -0.08777}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUODS1", "modes": ["tube"], "icsCode": "1000169", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUODS", "hubNaptanCode": "HUBOLD", "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": "940GZZLUODS", "lineIdentifier": ["northern"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["northern"]}], "status": true, "id": "9400ZZLUODS1", "commonName": "Old 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": "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": "Address", "sourceSystemKey": "StaticObjects", "value": "Old Street Station,London Underground Ltd.,Old St,London,EC1Y 1BE"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.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": "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": "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": "Geo", "key": "Zone", "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": "Lifts", "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.524988, "lon": -0.087547}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUODS2", "modes": ["tube"], "icsCode": "1000169", "stopType": "NaptanRailAccessArea", "stationNaptan": "940GZZLUODS", "hubNaptanCode": "HUBOLD", "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": "940GZZLUODS", "lineIdentifier": ["northern"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["northern"]}], "status": true, "id": "9400ZZLUODS2", "commonName": "Old Street 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": "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": "Help Points", "sourceSystemKey": "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": "Old Street Station,London Underground Ltd.,Old St,London,EC1Y 1BE"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.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": "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": "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": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "1"}], "children": [], "lat": 51.524979, "lon": -0.087547}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUOSY", "modes": ["tube"], "icsCode": "1000171", "stopType": "NaptanMetroAccessArea", "stationNaptan": "940GZZLUOSY", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "9400ZZLUOSY", "commonName": "Osterley 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": "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": "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": "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": "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": "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": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "4"}], "children": [], "lat": 51.481274, "lon": -0.352224}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUOSY1", "modes": ["tube"], "icsCode": "1000171", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUOSY", "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": "940GZZLUOSY", "lineIdentifier": ["piccadilly"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["piccadilly"]}], "status": true, "id": "9400ZZLUOSY1", "commonName": "Osterley 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": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "4"}, {"$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": "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": "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": "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"}], "children": [], "lat": 51.481502, "lon": -0.351812}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUOSY2", "modes": ["tube"], "icsCode": "1000171", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUOSY", "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": "940GZZLUOSY", "lineIdentifier": ["piccadilly"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["piccadilly"]}], "status": true, "id": "9400ZZLUOSY2", "commonName": "Osterley 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": "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": "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": "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": "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": "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": "Help Points", "sourceSystemKey": "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": "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": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "1"}], "children": [], "lat": 51.481448, "lon": -0.351843}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUOVL", "modes": ["tube"], "icsCode": "1000172", "stopType": "NaptanMetroAccessArea", "stationNaptan": "940GZZLUOVL", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "9400ZZLUOVL", "commonName": "Oval Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$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": "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": "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": "Photo 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": "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": "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": "Help 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.48185, "lon": -0.112439}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUOVL1", "modes": ["tube"], "icsCode": "1000172", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUOVL", "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": "940GZZLUOVL", "lineIdentifier": ["northern"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["northern"]}], "status": true, "id": "9400ZZLUOVL1", "commonName": "Oval 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": "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": "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": "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": "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": "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": "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.481574, "lon": -0.112623}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUOVL2", "modes": ["tube"], "icsCode": "1000172", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUOVL", "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": "940GZZLUOVL", "lineIdentifier": ["northern"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["northern"]}], "status": true, "id": "9400ZZLUOVL2", "commonName": "Oval 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": "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": "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": "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": "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": "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": "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": "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"}], "children": [], "lat": 51.481777, "lon": -0.112399}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUOXC", "modes": ["tube"], "icsCode": "1000173", "stopType": "NaptanMetroAccessArea", "stationNaptan": "940GZZLUOXC", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "9400ZZLUOXC", "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": "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": "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": "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": "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": "30"}, {"$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": "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": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}], "children": [], "lat": 51.515224, "lon": -0.141903}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUOXC1", "modes": ["tube"], "icsCode": "1000173", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUOXC", "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": "940GZZLUOXC", "lineIdentifier": ["central"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["central"]}], "status": true, "id": "9400ZZLUOXC1", "commonName": "Oxford Circus 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": "14"}, {"$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": "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": "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": "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": "Photo 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": "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": "Lifts", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "3"}], "children": [], "lat": 51.515377, "lon": -0.141363}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUOXC2", "modes": ["tube"], "icsCode": "1000173", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUOXC", "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": "940GZZLUOXC", "lineIdentifier": ["victoria"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["victoria"]}], "status": true, "id": "9400ZZLUOXC2", "commonName": "Oxford 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": "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": "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": "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": "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": "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": "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": "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": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "no"}], "children": [], "lat": 51.51576, "lon": -0.14227}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUOXC3", "modes": ["tube"], "icsCode": "1000173", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUOXC", "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": "940GZZLUOXC", "lineIdentifier": ["bakerloo"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["bakerloo"]}], "status": true, "id": "9400ZZLUOXC3", "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": "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": "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": "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": "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": "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": "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": "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": "Lifts", "sourceSystemKey": "StaticObjects", "value": "0"}], "children": [], "lat": 51.515721, "lon": -0.142084}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUOXC4", "modes": ["tube"], "icsCode": "1000173", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUOXC", "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": "940GZZLUOXC", "lineIdentifier": ["bakerloo"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["bakerloo"]}], "status": true, "id": "9400ZZLUOXC4", "commonName": "Oxford 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": "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": "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": "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": "WiFi", "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": "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": "Photo 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": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "3"}, {"$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"}], "children": [], "lat": 51.515697, "lon": -0.142244}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUOXC5", "modes": ["tube"], "icsCode": "1000173", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUOXC", "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": "940GZZLUOXC", "lineIdentifier": ["central"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["central"]}], "status": true, "id": "9400ZZLUOXC5", "commonName": "Oxford 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": "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": "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": "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": "Payphones", "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": "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": "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": "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": "14"}], "children": [], "lat": 51.515384, "lon": -0.141248}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUOXC6", "modes": ["tube"], "icsCode": "1000173", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUOXC", "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": "940GZZLUOXC", "lineIdentifier": ["victoria"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["victoria"]}], "status": true, "id": "9400ZZLUOXC6", "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": "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": "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": "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": "Waiting Room", "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": "Toilets", "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": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}], "children": [], "lat": 51.515794, "lon": -0.14211}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUPAC", "modes": ["tube"], "icsCode": "1000174", "stopType": "NaptanMetroAccessArea", "stationNaptan": "940GZZLUPAC", "hubNaptanCode": "HUBPAD", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "9400ZZLUPAC", "commonName": "Paddington 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": "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": "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": "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": "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": "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": "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": "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": "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": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}], "children": [], "lat": 51.516581, "lon": -0.175689}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUPAC1", "modes": ["tube"], "icsCode": "1000174", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUPAC", "hubNaptanCode": "HUBPAD", "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": "940GZZLUPAC", "lineIdentifier": ["bakerloo"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["bakerloo"]}], "status": true, "id": "9400ZZLUPAC1", "commonName": "Paddington Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$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": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$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": "Payphones", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$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": "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": "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": "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": "Gates", "sourceSystemKey": "StaticObjects", "value": "24"}, {"$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": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "0"}], "children": [], "lat": 51.516299, "lon": -0.17547}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUPAC2", "modes": ["tube"], "icsCode": "1000174", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUPAC", "hubNaptanCode": "HUBPAD", "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": "940GZZLUPAC", "lineIdentifier": ["bakerloo"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["bakerloo"]}], "status": true, "id": "9400ZZLUPAC2", "commonName": "Paddington Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$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": "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": "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": "4"}, {"$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": "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": "Ticket Halls", "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": "VisitorCentre", "key": "Location", "sourceSystemKey": "StaticObjects", "value": "Opposite Platform 1 Paddington Rail 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": "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"}], "children": [], "lat": 51.516345, "lon": -0.175526}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUPAC3", "modes": ["tube"], "icsCode": "1000174", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUPAC", "hubNaptanCode": "HUBPAD", "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": "940GZZLUPAC", "lineIdentifier": ["district", "circle"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["district", "circle"]}], "status": true, "id": "9400ZZLUPAC3", "commonName": "Paddington 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": "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": "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": "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": "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": "Gates", "sourceSystemKey": "StaticObjects", "value": "24"}, {"$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": "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": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$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": "Payphones", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "3"}], "children": [], "lat": 51.515383, "lon": -0.175521}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUPAC4", "modes": ["tube"], "icsCode": "1000174", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUPAC", "hubNaptanCode": "HUBPAD", "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": "940GZZLUPAC", "lineIdentifier": ["circle", "district"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["circle", "district"]}], "status": true, "id": "9400ZZLUPAC4", "commonName": "Paddington Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$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": "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": "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": "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": "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": "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": "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": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$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": "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": "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.515436, "lon": -0.175447}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUPAH", "modes": ["tube"], "icsCode": "1000175", "stopType": "NaptanMetroAccessArea", "stationNaptan": "940GZZLUPAH", "hubNaptanCode": "HUBPAD", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "9400ZZLUPAH", "commonName": "Paddington (H&C Line)-Underground", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.518187, "lon": -0.178306}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUPAH1", "modes": ["tube"], "icsCode": "1000175", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUPAH", "hubNaptanCode": "HUBPAD", "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": "940GZZLUPAH", "lineIdentifier": ["hammersmith-city", "circle"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["hammersmith-city", "circle"]}], "status": true, "id": "9400ZZLUPAH1", "commonName": "Paddington (H&C Line)-Underground", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.518201, "lon": -0.178623}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUPAH2", "modes": ["tube"], "icsCode": "1000175", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUPAH", "hubNaptanCode": "HUBPAD", "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": "940GZZLUPAH", "lineIdentifier": ["hammersmith-city"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["hammersmith-city"]}], "status": true, "id": "9400ZZLUPAH2", "commonName": "Paddington (H&C Line)-Underground", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.518163, "lon": -0.178523}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUPCC", "modes": ["tube"], "icsCode": "1000179", "stopType": "NaptanMetroAccessArea", "stationNaptan": "940GZZLUPCC", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "9400ZZLUPCC", "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": "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": "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": "Help Points", "sourceSystemKey": "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": "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": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "16"}, {"$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": "Car park", "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"}], "children": [], "lat": 51.51005, "lon": -0.133798}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUPCC1", "modes": ["tube"], "icsCode": "1000179", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUPCC", "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": "940GZZLUPCC", "lineIdentifier": ["bakerloo"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["bakerloo"]}], "status": true, "id": "9400ZZLUPCC1", "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": "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": "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": "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": "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": "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": "Cash Machines", "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": "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": "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"}], "children": [], "lat": 51.510083, "lon": -0.135281}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUPCC2", "modes": ["tube"], "icsCode": "1000179", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUPCC", "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": "940GZZLUPCC", "lineIdentifier": ["bakerloo"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["bakerloo"]}], "status": true, "id": "9400ZZLUPCC2", "commonName": "Piccadilly Circus 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": "Photo 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": "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": "Lifts", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$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": "Help 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": "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"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.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": "Gates", "sourceSystemKey": "StaticObjects", "value": "16"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "6"}], "children": [], "lat": 51.510117, "lon": -0.135179}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUPCC3", "modes": ["tube"], "icsCode": "1000179", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUPCC", "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": "940GZZLUPCC", "lineIdentifier": ["piccadilly"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["piccadilly"]}], "status": true, "id": "9400ZZLUPCC3", "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": "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": "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": "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": "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": "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": "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": "Help 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": "Underground Station"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "no"}], "children": [], "lat": 51.509439, "lon": -0.135495}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUPCC4", "modes": ["tube"], "icsCode": "1000179", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUPCC", "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": "940GZZLUPCC", "lineIdentifier": ["piccadilly"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["piccadilly"]}], "status": true, "id": "9400ZZLUPCC4", "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": "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": "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": "Piccadilly Circus Station,London Underground Ltd.,Piccadilly Circus,London,W1J 9HP"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help 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": "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": "Cash Machines", "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": "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": "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": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}], "children": [], "lat": 51.509592, "lon": -0.134926}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUPCO", "modes": ["tube"], "icsCode": "1000180", "stopType": "NaptanMetroAccessArea", "stationNaptan": "940GZZLUPCO", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "9400ZZLUPCO", "commonName": "Pimlico 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": "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": "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": "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": "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": "Pimlico Station,London Underground Ltd.,Bessborough St,London,SW1V 2JA"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.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": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "7"}], "children": [], "lat": 51.489097, "lon": -0.133761}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUPCO1", "modes": ["tube"], "icsCode": "1000180", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUPCO", "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": "940GZZLUPCO", "lineIdentifier": ["victoria"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["victoria"]}], "status": true, "id": "9400ZZLUPCO1", "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": "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, 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": "Ticket Halls", "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": "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": "Gates", "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": "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": "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": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}], "children": [], "lat": 51.489219, "lon": -0.134044}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUPCO2", "modes": ["tube"], "icsCode": "1000180", "stopType": "NaptanRailAccessArea", "stationNaptan": "940GZZLUPCO", "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": "940GZZLUPCO", "lineIdentifier": ["victoria"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["victoria"]}], "status": true, "id": "9400ZZLUPCO2", "commonName": "Pimlico Station", "placeType": "StopPoint", "additionalProperties": [{"$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": "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": "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": "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": "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": "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": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}], "children": [], "lat": 51.489219, "lon": -0.134044}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUPKR", "modes": ["tube"], "icsCode": "1000176", "stopType": "NaptanMetroAccessArea", "stationNaptan": "940GZZLUPKR", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "9400ZZLUPKR", "commonName": "Park Royal 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": "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": "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": "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"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.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": "Help Points", "sourceSystemKey": "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": "Toilets", "sourceSystemKey": "StaticObjects", "value": "yes"}], "children": [], "lat": 51.527123, "lon": -0.284341}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUPKR1", "modes": ["tube"], "icsCode": "1000176", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUPKR", "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": "940GZZLUPKR", "lineIdentifier": ["piccadilly"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["piccadilly"]}], "status": true, "id": "9400ZZLUPKR1", "commonName": "Park Royal Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$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": "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": "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"}, {"$type": "Tfl.Api.Presentation.Entities.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": "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": "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": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}], "children": [], "lat": 51.526598, "lon": -0.284058}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUPKR2", "modes": ["tube"], "icsCode": "1000176", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUPKR", "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": "940GZZLUPKR", "lineIdentifier": ["piccadilly"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["piccadilly"]}], "status": true, "id": "9400ZZLUPKR2", "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": "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": "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": "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": "Photo Booths", "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": "Help 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": "Gates", "sourceSystemKey": "StaticObjects", "value": "3"}], "children": [], "lat": 51.526525, "lon": -0.284032}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUPLW", "modes": ["tube"], "icsCode": "1000182", "stopType": "NaptanMetroAccessArea", "stationNaptan": "940GZZLUPLW", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "9400ZZLUPLW", "commonName": "Plaistow 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": "Help Points", "sourceSystemKey": "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": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$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": "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"}, {"$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": "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": "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": "Toilets", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "0"}], "children": [], "lat": 51.531341, "lon": 0.017451}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUPLW1", "modes": ["tube"], "icsCode": "1000182", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUPLW", "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": "940GZZLUPLW", "lineIdentifier": ["district", "hammersmith-city"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["district", "hammersmith-city"]}], "status": true, "id": "9400ZZLUPLW1", "commonName": "Plaistow 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": "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": "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": "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": "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": "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": "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"}], "children": [], "lat": 51.531182, "lon": 0.016767}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUPLW2", "modes": ["tube"], "icsCode": "1000182", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUPLW", "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": "940GZZLUPLW", "lineIdentifier": ["district", "hammersmith-city"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["district", "hammersmith-city"]}], "status": true, "id": "9400ZZLUPLW2", "commonName": "Plaistow 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": "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": "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, taxi ranks outside station."}, {"$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": "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": "Plaistow Station,London Underground Ltd.,Plaistow Rd,London,E15"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.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": "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": "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": "2"}], "children": [], "lat": 51.531198, "lon": 0.016854}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUPNR", "modes": ["tube"], "icsCode": "1000181", "stopType": "NaptanMetroAccessArea", "stationNaptan": "940GZZLUPNR", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "9400ZZLUPNR", "commonName": "Pinner 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": "Geo", "key": "Zone", "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": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$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": "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": "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": "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": "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": "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.592901, "lon": -0.381161}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUPNR1", "modes": ["tube"], "icsCode": "1000181", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUPNR", "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": "940GZZLUPNR", "lineIdentifier": ["metropolitan"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["metropolitan"]}], "status": true, "id": "9400ZZLUPNR1", "commonName": "Pinner 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": "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": "0"}, {"$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": "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": "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": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "5"}, {"$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": "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"}], "children": [], "lat": 51.59275, "lon": -0.381268}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUPNR2", "modes": ["tube"], "icsCode": "1000181", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUPNR", "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": "940GZZLUPNR", "lineIdentifier": ["metropolitan"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["metropolitan"]}], "status": true, "id": "9400ZZLUPNR2", "commonName": "Pinner Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$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": "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": "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": "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": "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": "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": "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": "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": "Payphones", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "yes"}], "children": [], "lat": 51.592704, "lon": -0.381183}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUPRD", "modes": ["tube"], "icsCode": "1000183", "stopType": "NaptanMetroAccessArea", "stationNaptan": "940GZZLUPRD", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "9400ZZLUPRD", "commonName": "Preston Road 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": "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": "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": "Preston Road Station,London Underground Ltd.,Preston Rd,Wembley,Middx,HA3 0PS"}, {"$type": "Tfl.Api.Presentation.Entities.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": "Help Points", "sourceSystemKey": "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"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.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"}], "children": [], "lat": 51.571972, "lon": -0.295107}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUPRD1", "modes": ["tube"], "icsCode": "1000183", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUPRD", "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": "940GZZLUPRD", "lineIdentifier": ["metropolitan"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["metropolitan"]}], "status": true, "id": "9400ZZLUPRD1", "commonName": "Preston 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": "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": "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": "Preston Road Station,London Underground Ltd.,Preston Rd,Wembley,Middx,HA3 0PS"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.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": "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": "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": "Car park", "sourceSystemKey": "StaticObjects", "value": "no"}], "children": [], "lat": 51.572024, "lon": -0.295581}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUPRD2", "modes": ["tube"], "icsCode": "1000183", "stopType": "NaptanRailAccessArea", "stationNaptan": "940GZZLUPRD", "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": "940GZZLUPRD", "lineIdentifier": ["metropolitan"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["metropolitan"]}], "status": true, "id": "9400ZZLUPRD2", "commonName": "Preston Road 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": "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": "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": "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"}, {"$type": "Tfl.Api.Presentation.Entities.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": "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": "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.572024, "lon": -0.295581}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUPSG", "modes": ["tube"], "icsCode": "1000177", "stopType": "NaptanMetroAccessArea", "stationNaptan": "940GZZLUPSG", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "9400ZZLUPSG", "commonName": "Parsons 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": "Help Points", "sourceSystemKey": "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": "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"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.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": "canopies over platform (part), taxi ranks outside 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": "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": "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": "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": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}], "children": [], "lat": 51.475277, "lon": -0.20117}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUPSG1", "modes": ["tube"], "icsCode": "1000177", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUPSG", "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": "940GZZLUPSG", "lineIdentifier": ["district"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["district"]}], "status": true, "id": "9400ZZLUPSG1", "commonName": "Parsons Green 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": "canopies over platform (part), taxi ranks outside station."}, {"$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": "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": "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": "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": "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"}], "children": [], "lat": 51.475104, "lon": -0.201637}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUPSG2", "modes": ["tube"], "icsCode": "1000177", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUPSG", "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": "940GZZLUPSG", "lineIdentifier": ["district"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["district"]}], "status": true, "id": "9400ZZLUPSG2", "commonName": "Parsons 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": "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": "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": "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": "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": "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": "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": "Euro Cash Machines", "sourceSystemKey": "StaticObjects", "value": "yes"}], "children": [], "lat": 51.475157, "lon": -0.201534}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUPVL", "modes": ["tube"], "icsCode": "1000178", "stopType": "NaptanMetroAccessArea", "stationNaptan": "940GZZLUPVL", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "9400ZZLUPVL", "commonName": "Perivale 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": "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"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.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": "Perivale Station,London Underground Ltd.,Horsenden Lane,Greenford,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": "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": "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": "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.536717, "lon": -0.323446}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUPVL1", "modes": ["tube"], "icsCode": "1000178", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUPVL", "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": "940GZZLUPVL", "lineIdentifier": ["central"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["central"]}], "status": true, "id": "9400ZZLUPVL1", "commonName": "Perivale 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": "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": "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": "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 (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": "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": "Perivale Station,London Underground Ltd.,Horsenden Lane,Greenford,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": "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.536672, "lon": -0.322799}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUPVL2", "modes": ["tube"], "icsCode": "1000178", "stopType": "NaptanRailAccessArea", "stationNaptan": "940GZZLUPVL", "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": "940GZZLUPVL", "lineIdentifier": ["central"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["central"]}], "status": true, "id": "9400ZZLUPVL2", "commonName": "Perivale", "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, 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"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.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": "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": "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": "yes"}, {"$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": "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": "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.536663, "lon": -0.322785}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUPYB", "modes": ["tube"], "icsCode": "1000184", "stopType": "NaptanMetroAccessArea", "stationNaptan": "940GZZLUPYB", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "9400ZZLUPYB", "commonName": "Putney Bridge 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": "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": "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": "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": "Bridge", "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": "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": "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": "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.468262, "lon": -0.208731}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUPYB1", "modes": ["tube"], "icsCode": "1000184", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUPYB", "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": "940GZZLUPYB", "lineIdentifier": ["district"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["district"]}], "status": true, "id": "9400ZZLUPYB1", "commonName": "Putney Bridge Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$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": "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": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.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": "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": "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": "4"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "no"}], "children": [], "lat": 51.468299, "lon": -0.208816}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUPYB2", "modes": ["tube"], "icsCode": "1000184", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUPYB", "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": "940GZZLUPYB", "lineIdentifier": ["district"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["district"]}], "status": true, "id": "9400ZZLUPYB2", "commonName": "Putney Bridge 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": "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": "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": "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": "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": "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": "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": "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": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}], "children": [], "lat": 51.468298, "lon": -0.208787}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUQBY", "modes": ["tube"], "icsCode": "1000185", "stopType": "NaptanMetroAccessArea", "stationNaptan": "940GZZLUQBY", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "9400ZZLUQBY", "commonName": "Queensbury 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": "Lifts", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$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": "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": "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": "Help Points", "sourceSystemKey": "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": "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": "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.594188, "lon": -0.286219}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUQBY1", "modes": ["tube"], "icsCode": "1000185", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUQBY", "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": "940GZZLUQBY", "lineIdentifier": ["jubilee"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["jubilee"]}], "status": true, "id": "9400ZZLUQBY1", "commonName": "Queensbury 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": "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": "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": "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": "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": "yes (male, female, disabled/baby-changing facilities)"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "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": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "4"}], "children": [], "lat": 51.59413, "lon": -0.285947}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUQBY2", "modes": ["tube"], "icsCode": "1000185", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUQBY", "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": "940GZZLUQBY", "lineIdentifier": ["jubilee"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["jubilee"]}], "status": true, "id": "9400ZZLUQBY2", "commonName": "Queensbury 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": "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": "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": "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": "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": "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": "Queensbury Station,London Underground Ltd.,Cumberland Rd,Harrow,Middx,HA8 5NP"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}], "children": [], "lat": 51.594103, "lon": -0.28589}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUQPS", "modes": ["tube"], "icsCode": "1000186", "stopType": "NaptanMetroAccessArea", "stationNaptan": "940GZZLUQPS", "hubNaptanCode": "HUBQPW", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "9400ZZLUQPS", "commonName": "Queen'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": "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": "Photo 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": "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": "Gates", "sourceSystemKey": "StaticObjects", "value": "8"}, {"$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": "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": "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": "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": "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": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}], "children": [], "lat": 51.534158, "lon": -0.204574}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUQPS1", "modes": ["tube"], "icsCode": "1000186", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUQPS", "hubNaptanCode": "HUBQPW", "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": "940GZZLUQPS", "lineIdentifier": ["bakerloo"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["bakerloo"]}], "status": true, "id": "9400ZZLUQPS1", "commonName": "Queen's Park Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$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": "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": "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": "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": "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": "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": "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": "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": "Toilets", "sourceSystemKey": "StaticObjects", "value": "no"}], "children": [], "lat": 51.53416, "lon": -0.205309}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUQPS2", "modes": ["tube"], "icsCode": "1000186", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUQPS", "hubNaptanCode": "HUBQPW", "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": "940GZZLUQPS", "lineIdentifier": ["bakerloo"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["bakerloo"]}], "status": true, "id": "9400ZZLUQPS2", "commonName": "Queen's Park 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": "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": "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"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.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": "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": "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": "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": "Facility", "key": "Toilets", "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.534177, "lon": -0.205222}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUQWY", "modes": ["tube"], "icsCode": "1000187", "stopType": "NaptanMetroAccessArea", "stationNaptan": "940GZZLUQWY", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "9400ZZLUQWY", "commonName": "Queensway 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": "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": "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": "Facility", "key": "Photo 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": "Toilets", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$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": "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.510312, "lon": -0.187152}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUQWY1", "modes": ["tube"], "icsCode": "1000187", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUQWY", "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": "940GZZLUQWY", "lineIdentifier": ["central"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["central"]}], "status": true, "id": "9400ZZLUQWY1", "commonName": "Queensway 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": "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": "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": "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": "Help Points", "sourceSystemKey": "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": "Queensway Station,London Underground Ltd.,Bayswater Rd,London,W2 4SS"}, {"$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": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "1"}], "children": [], "lat": 51.510312, "lon": -0.187209}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUQWY2", "modes": ["tube"], "icsCode": "1000187", "stopType": "NaptanRailAccessArea", "stationNaptan": "940GZZLUQWY", "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": "940GZZLUQWY", "lineIdentifier": ["central"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["central"]}], "status": true, "id": "9400ZZLUQWY2", "commonName": "Queensway 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": "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": "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": "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": "Help Points", "sourceSystemKey": "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": "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": "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.510321, "lon": -0.187209}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLURBG", "modes": ["tube"], "icsCode": "1000190", "stopType": "NaptanMetroAccessArea", "stationNaptan": "940GZZLURBG", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "9400ZZLURBG", "commonName": "Redbridge 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": "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"}, {"$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": "Redbridge Station,London Underground Ltd.,Eastern Avenue,Ilford,Essex,IG4 5DQ"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.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": "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"}], "children": [], "lat": 51.576243, "lon": 0.04536}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLURBG1", "modes": ["tube"], "icsCode": "1000190", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLURBG", "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": "940GZZLURBG", "lineIdentifier": ["central"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["central"]}], "status": true, "id": "9400ZZLURBG1", "commonName": "Redbridge 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": "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": "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": "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": "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": "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": "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": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}], "children": [], "lat": 51.576188, "lon": 0.046454}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLURBG2", "modes": ["tube"], "icsCode": "1000190", "stopType": "NaptanRailAccessArea", "stationNaptan": "940GZZLURBG", "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": "940GZZLURBG", "lineIdentifier": ["central"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["central"]}], "status": true, "id": "9400ZZLURBG2", "commonName": "Redbridge 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": "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": "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": "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 (male, female)"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.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": "Redbridge Station,London Underground Ltd.,Eastern Avenue,Ilford,Essex,IG4 5DQ"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.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": "Help Points", "sourceSystemKey": "StaticObjects", "value": "0 on platforms, 0 in ticket halls, 0 elsewhere"}], "children": [], "lat": 51.576188, "lon": 0.046454}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLURGP", "modes": ["tube"], "icsCode": "1000191", "stopType": "NaptanMetroAccessArea", "stationNaptan": "940GZZLURGP", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "9400ZZLURGP", "commonName": "Regent's 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": "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": "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": "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": "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": "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": "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": "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": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "1"}], "children": [], "lat": 51.523344, "lon": -0.146444}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLURGP1", "modes": ["tube"], "icsCode": "1000191", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLURGP", "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": "940GZZLURGP", "lineIdentifier": ["bakerloo"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["bakerloo"]}], "status": true, "id": "9400ZZLURGP1", "commonName": "Regent's 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": "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": "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": "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": "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": "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": "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": "Escalators", "sourceSystemKey": "StaticObjects", "value": "0"}], "children": [], "lat": 51.523153, "lon": -0.146294}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLURGP2", "modes": ["tube"], "icsCode": "1000191", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLURGP", "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": "940GZZLURGP", "lineIdentifier": ["bakerloo"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["bakerloo"]}], "status": true, "id": "9400ZZLURGP2", "commonName": "Regent's 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": "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": "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": "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": "Help Points", "sourceSystemKey": "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": "Gates", "sourceSystemKey": "StaticObjects", "value": "4"}, {"$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": "Lifts", "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": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}], "children": [], "lat": 51.523089, "lon": -0.146267}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLURKW", "modes": ["tube"], "icsCode": "1000193", "stopType": "NaptanMetroAccessArea", "stationNaptan": "940GZZLURKW", "hubNaptanCode": "HUBRIC", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "9400ZZLURKW", "commonName": "Rickmansworth 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": "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": "Help Points", "sourceSystemKey": "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": "Rickmansworth Station,London Underground Ltd.,Station Approach,Rickmansworth,Herts,WD3 1QY"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.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": "Payphones", "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": "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": "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"}], "children": [], "lat": 51.640207, "lon": -0.473703}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLURKW1", "modes": ["tube"], "icsCode": "1000193", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLURKW", "hubNaptanCode": "HUBRIC", "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": "940GZZLURKW", "lineIdentifier": ["metropolitan"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["metropolitan"]}], "status": true, "id": "9400ZZLURKW1", "commonName": "Rickmansworth 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": "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": "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": "Toilets", "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": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "7"}, {"$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": "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": "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.640198, "lon": -0.47366}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLURKW2", "modes": ["tube"], "icsCode": "1000193", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLURKW", "hubNaptanCode": "HUBRIC", "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": "940GZZLURKW", "lineIdentifier": ["metropolitan"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["metropolitan"]}], "status": true, "id": "9400ZZLURKW2", "commonName": "Rickmansworth 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": "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": "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": "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": "Geo", "key": "Zone", "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": "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": "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": "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.640179, "lon": -0.473574}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLURMD", "modes": ["tube"], "icsCode": "1000192", "stopType": "NaptanMetroAccessArea", "stationNaptan": "940GZZLURMD", "hubNaptanCode": "HUBRMD", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "9400ZZLURMD", "commonName": "Richmond 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": "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": "Opening Time", "key": "SunTo", "sourceSystemKey": "StaticObjects", "value": "21: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": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "6"}, {"$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": "SatFrom", "sourceSystemKey": "StaticObjects", "value": "06: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": "Help Points", "sourceSystemKey": "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": "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": "Escalators", "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": "Opening Time", "key": "MonFriTo", "sourceSystemKey": "StaticObjects", "value": "21: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": "Opening Time", "key": "SatTo", "sourceSystemKey": "StaticObjects", "value": "21:45"}, {"$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": "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": "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.463237, "lon": -0.301336}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLURMD1", "modes": ["tube"], "icsCode": "1000192", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLURMD", "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"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "940GZZLURMD", "lineIdentifier": ["district"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["district"]}], "status": true, "id": "9400ZZLURMD1", "commonName": "Richmond Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$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": "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": "Opening Time", "key": "SunTo", "sourceSystemKey": "StaticObjects", "value": "21: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": "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": "Opening Time", "key": "SatTo", "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": "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": "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": "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": "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": "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": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "no"}], "children": [], "lat": 51.463254, "lon": -0.301249}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLURSG", "modes": ["tube"], "icsCode": "1000198", "stopType": "NaptanMetroAccessArea", "stationNaptan": "940GZZLURSG", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "9400ZZLURSG", "commonName": "Ruislip Gardens Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$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": "Car park", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$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": "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": "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": "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": "Gates", "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": "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": "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)"}], "children": [], "lat": 51.560736, "lon": -0.41071}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLURSG1", "modes": ["tube"], "icsCode": "1000198", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLURSG", "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": "940GZZLURSG", "lineIdentifier": ["central"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["central"]}], "status": true, "id": "9400ZZLURSG1", "commonName": "Ruislip Gardens 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": "Gates", "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": "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": "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": "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": "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": "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": "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"}], "children": [], "lat": 51.560755, "lon": -0.410839}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLURSG2", "modes": ["tube"], "icsCode": "1000198", "stopType": "NaptanRailAccessArea", "stationNaptan": "940GZZLURSG", "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": "940GZZLURSG", "lineIdentifier": ["central"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["central"]}], "status": true, "id": "9400ZZLURSG2", "commonName": "Ruislip Gardens", "placeType": "StopPoint", "additionalProperties": [{"$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": "Escalators", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$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": "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": "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": "Toilets", "sourceSystemKey": "StaticObjects", "value": "yes (male, female)"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.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": "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": "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"}], "children": [], "lat": 51.560737, "lon": -0.410839}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLURSM", "modes": ["tube"], "icsCode": "1000199", "stopType": "NaptanMetroAccessArea", "stationNaptan": "940GZZLURSM", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "9400ZZLURSM", "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": "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": "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": "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": "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": "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": "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.573202, "lon": -0.412973}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLURSM1", "modes": ["tube"], "icsCode": "1000199", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLURSM", "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": "940GZZLURSM", "lineIdentifier": ["piccadilly", "metropolitan"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["piccadilly", "metropolitan"]}], "status": true, "id": "9400ZZLURSM1", "commonName": "Ruislip Manor 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": "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": "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": "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": "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": "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": "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": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "3"}], "children": [], "lat": 51.573435, "lon": -0.412215}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLURSM2", "modes": ["tube"], "icsCode": "1000199", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLURSM", "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": "940GZZLURSM", "lineIdentifier": ["piccadilly", "metropolitan"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["piccadilly", "metropolitan"]}], "status": true, "id": "9400ZZLURSM2", "commonName": "Ruislip Manor 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": "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": "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": "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": "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": "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": "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": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "yes"}], "children": [], "lat": 51.573461, "lon": -0.412113}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLURSP", "modes": ["tube"], "icsCode": "1000197", "stopType": "NaptanMetroAccessArea", "stationNaptan": "940GZZLURSP", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "9400ZZLURSP", "commonName": "Ruislip 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": "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": "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": "Help Points", "sourceSystemKey": "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"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, 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": "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": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "0"}], "children": [], "lat": 51.571354, "lon": -0.421898}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLURSP1", "modes": ["tube"], "icsCode": "1000197", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLURSP", "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": "940GZZLURSP", "lineIdentifier": ["piccadilly"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["piccadilly"]}], "status": true, "id": "9400ZZLURSP1", "commonName": "Ruislip 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": "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": "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": "Payphones", "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": "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": "Ruislip Station,London Underground Ltd.,Station Approach,Ruislip,Middx,HA4 8LD"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.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": "post office style queuing for tickets."}], "children": [], "lat": 51.571367, "lon": -0.421537}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLURSP2", "modes": ["tube"], "icsCode": "1000197", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLURSP", "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": "940GZZLURSP", "lineIdentifier": ["piccadilly"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["piccadilly"]}], "status": true, "id": "9400ZZLURSP2", "commonName": "Ruislip 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": "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": "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": "Help Points", "sourceSystemKey": "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": "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": "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"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, 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": "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": "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.571392, "lon": -0.42142}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLURSP3", "indicator": "eastbound", "modes": ["tube"], "icsCode": "1000197", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLURSP", "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": "940GZZLURSP", "lineIdentifier": ["metropolitan"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["metropolitan"]}], "status": true, "id": "9400ZZLURSP3", "commonName": "Ruislip 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": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$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": "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": "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": "Help Points", "sourceSystemKey": "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": "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": "Gates", "sourceSystemKey": "StaticObjects", "value": "3"}], "children": [], "lat": 51.571341, "lon": -0.421653}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLURSP4", "indicator": "westbound", "modes": ["tube"], "icsCode": "1000197", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLURSP", "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": "940GZZLURSP", "lineIdentifier": ["metropolitan"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["metropolitan"]}], "status": true, "id": "9400ZZLURSP4", "commonName": "Ruislip 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": "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": "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": "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"}, {"$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": "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": "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"}], "children": [], "lat": 51.571366, "lon": -0.421464}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLURSQ", "modes": ["tube"], "icsCode": "1000200", "stopType": "NaptanMetroAccessArea", "stationNaptan": "940GZZLURSQ", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "9400ZZLURSQ", "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": "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": "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": "Payphones", "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": "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": "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": "Lifts", "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": "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.523073, "lon": -0.124285}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLURSQ1", "modes": ["tube"], "icsCode": "1000200", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLURSQ", "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": "940GZZLURSQ", "lineIdentifier": ["piccadilly"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["piccadilly"]}], "status": true, "id": "9400ZZLURSQ1", "commonName": "Russell Square 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": "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": "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": "3"}, {"$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": "Help Points", "sourceSystemKey": "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": "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": "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": "Photo 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.523461, "lon": -0.124399}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLURSQ2", "modes": ["tube"], "icsCode": "1000200", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLURSQ", "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": "940GZZLURSQ", "lineIdentifier": ["piccadilly"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["piccadilly"]}], "status": true, "id": "9400ZZLURSQ2", "commonName": "Russell Square Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$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": "Help Points", "sourceSystemKey": "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": "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": "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": "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": "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": "Photo 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": "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.523398, "lon": -0.124358}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLURVP", "modes": ["tube"], "icsCode": "1000188", "stopType": "NaptanMetroAccessArea", "stationNaptan": "940GZZLURVP", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "9400ZZLURVP", "commonName": "Ravenscourt 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": "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": "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": "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": "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": "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": "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"}], "children": [], "lat": 51.494122, "lon": -0.235881}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLURVP1", "modes": ["tube"], "icsCode": "1000188", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLURVP", "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": "940GZZLURVP", "lineIdentifier": ["district"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["district"]}], "status": true, "id": "9400ZZLURVP1", "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": "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": "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": "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": "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": "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": "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": "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"}], "children": [], "lat": 51.494132, "lon": -0.235924}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLURVP2", "modes": ["tube"], "icsCode": "1000188", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLURVP", "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": "940GZZLURVP", "lineIdentifier": ["district"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["district"]}], "status": true, "id": "9400ZZLURVP2", "commonName": "Ravenscourt 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": "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": "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": "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": "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": "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": "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.49413, "lon": -0.235837}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLURVY", "modes": ["tube"], "icsCode": "1000194", "stopType": "NaptanMetroAccessArea", "stationNaptan": "940GZZLURVY", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "9400ZZLURVY", "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": "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": "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": "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": "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": "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": "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.617199, "lon": 0.043647}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLURVY1", "modes": ["tube"], "icsCode": "1000194", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLURVY", "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": "940GZZLURVY", "lineIdentifier": ["central"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["central"]}], "status": true, "id": "9400ZZLURVY1", "commonName": "Roding Valley 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": "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": "Photo Booths", "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": "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": "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": "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": "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": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}], "children": [], "lat": 51.617367, "lon": 0.043814}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLURVY2", "modes": ["tube"], "icsCode": "1000194", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLURVY", "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": "940GZZLURVY", "lineIdentifier": ["central"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["central"]}], "status": true, "id": "9400ZZLURVY2", "commonName": "Roding Valley 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": "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": "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": "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": "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"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, 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": "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": "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.617383, "lon": 0.043915}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLURYL", "modes": ["tube"], "icsCode": "1000189", "stopType": "NaptanMetroAccessArea", "stationNaptan": "940GZZLURYL", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "9400ZZLURYL", "commonName": "Rayners 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": "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": "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": "Car park", "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": "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": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$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": "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"}], "children": [], "lat": 51.575147, "lon": -0.371127}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLURYL1", "modes": ["tube"], "icsCode": "1000189", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLURYL", "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": "940GZZLURYL", "lineIdentifier": ["piccadilly", "metropolitan"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["piccadilly", "metropolitan"]}], "status": true, "id": "9400ZZLURYL1", "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": "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": "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": "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": "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": "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": "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.575179, "lon": -0.371458}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLURYL2", "modes": ["tube"], "icsCode": "1000189", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLURYL", "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": "940GZZLURYL", "lineIdentifier": ["piccadilly", "metropolitan"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["piccadilly", "metropolitan"]}], "status": true, "id": "9400ZZLURYL2", "commonName": "Rayners Lane 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": "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": "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": "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": "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": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$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": "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"}], "children": [], "lat": 51.575159, "lon": -0.371372}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLURYO", "modes": ["tube"], "icsCode": "1000196", "stopType": "NaptanMetroAccessArea", "stationNaptan": "940GZZLURYO", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "9400ZZLURYO", "commonName": "Royal Oak 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, 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": "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": "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": "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": "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"}], "children": [], "lat": 51.519113, "lon": -0.188748}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLURYO1", "modes": ["tube"], "icsCode": "1000196", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLURYO", "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": "940GZZLURYO", "lineIdentifier": ["hammersmith-city", "circle"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["hammersmith-city", "circle"]}], "status": true, "id": "9400ZZLURYO1", "commonName": "Royal Oak 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": "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": "1"}, {"$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"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.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": "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": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}], "children": [], "lat": 51.519078, "lon": -0.188259}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLURYO2", "modes": ["tube"], "icsCode": "1000196", "stopType": "NaptanRailAccessArea", "stationNaptan": "940GZZLURYO", "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": "940GZZLURYO", "lineIdentifier": ["hammersmith-city", "circle"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["hammersmith-city", "circle"]}], "status": true, "id": "9400ZZLURYO2", "commonName": "Royal Oak", "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": "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": "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": "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": "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, 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": "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.519078, "lon": -0.18823}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUSBC", "modes": ["tube"], "icsCode": "1000203", "stopType": "NaptanMetroAccessArea", "stationNaptan": "940GZZLUSBC", "hubNaptanCode": "HUBSPB", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "9400ZZLUSBC", "commonName": "Shepherd's Bush (Central) 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": "Toilets", "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": "Facility", "key": "Help Points", "sourceSystemKey": "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": "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": "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": "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": "Other Facilities", "sourceSystemKey": "StaticObjects", "value": "none"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}], "children": [], "lat": 51.504376, "lon": -0.218813}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUSBC1", "modes": ["tube"], "icsCode": "1000203", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUSBC", "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"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "940GZZLUSBC", "lineIdentifier": ["central"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["central"]}], "status": true, "id": "9400ZZLUSBC1", "commonName": "Shepherd's Bush (Central) Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$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": "Photo 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"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.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": "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": "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": "Help Points", "sourceSystemKey": "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": "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.504564, "lon": -0.218129}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUSBC2", "modes": ["tube"], "icsCode": "1000203", "stopType": "NaptanRailAccessArea", "stationNaptan": "940GZZLUSBC", "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"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "940GZZLUSBC", "lineIdentifier": ["central"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["central"]}], "status": true, "id": "9400ZZLUSBC2", "commonName": "Shepherd's Bush (Central Line)", "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": "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": "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": "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"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.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": "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": "Photo 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.504572, "lon": -0.2181}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUSBM", "modes": ["tube"], "icsCode": "1000204", "stopType": "NaptanMetroAccessArea", "stationNaptan": "940GZZLUSBM", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "9400ZZLUSBM", "commonName": "Shepherd's Bush Market Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$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": "Help Points", "sourceSystemKey": "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": "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": "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": "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": "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"}], "children": [], "lat": 51.505579, "lon": -0.226375}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUSBM1", "modes": ["tube"], "icsCode": "1000204", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUSBM", "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": "940GZZLUSBM", "lineIdentifier": ["hammersmith-city", "circle"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["hammersmith-city", "circle"]}], "status": true, "id": "9400ZZLUSBM1", "commonName": "Shepherd's Bush Market 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": "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": "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": "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": "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": "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": "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"}], "children": [], "lat": 51.505956, "lon": -0.22636}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUSBM2", "modes": ["tube"], "icsCode": "1000204", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUSBM", "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": "940GZZLUSBM", "lineIdentifier": ["hammersmith-city", "circle"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["hammersmith-city", "circle"]}], "status": true, "id": "9400ZZLUSBM2", "commonName": "Shepherd's Bush Market 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": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}, {"$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": "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": "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": "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": "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": "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.505992, "lon": -0.22633}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUSEA", "modes": ["tube"], "icsCode": "1000208", "stopType": "NaptanMetroAccessArea", "stationNaptan": "940GZZLUSEA", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "9400ZZLUSEA", "commonName": "South Ealing 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": "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": "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": "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": "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": "Escalators", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$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": "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.501003, "lon": -0.307424}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUSEA1", "modes": ["tube"], "icsCode": "1000208", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUSEA", "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": "940GZZLUSEA", "lineIdentifier": ["piccadilly"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["piccadilly"]}], "status": true, "id": "9400ZZLUSEA1", "commonName": "South Ealing 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": "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": "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": "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": "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": "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": "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": "routeways platform to ticket hall."}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "4"}], "children": [], "lat": 51.501102, "lon": -0.30742}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUSEA2", "indicator": "westbound", "modes": ["tube"], "icsCode": "1000208", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUSEA", "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": "940GZZLUSEA", "lineIdentifier": ["piccadilly"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["piccadilly"]}], "status": true, "id": "9400ZZLUSEA2", "commonName": "South Ealing 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": "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": "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": "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": "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": "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": "4"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}], "children": [], "lat": 51.501083, "lon": -0.307364}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUSFB", "modes": ["tube"], "icsCode": "1000218", "stopType": "NaptanMetroAccessArea", "stationNaptan": "940GZZLUSFB", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "9400ZZLUSFB", "commonName": "Stamford Brook 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": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$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": "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": "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 (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": "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": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "yes"}], "children": [], "lat": 51.494917, "lon": -0.245704}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUSFB1", "modes": ["tube"], "icsCode": "1000218", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUSFB", "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": "940GZZLUSFB", "lineIdentifier": ["district"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["district"]}], "status": true, "id": "9400ZZLUSFB1", "commonName": "Stamford Brook 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": "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": "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": "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"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.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": "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": "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.495001, "lon": -0.245931}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUSFB2", "modes": ["tube"], "icsCode": "1000218", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUSFB", "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": "940GZZLUSFB", "lineIdentifier": ["district"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["district"]}], "status": true, "id": "9400ZZLUSFB2", "commonName": "Stamford Brook 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": "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": "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": "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": "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": "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": "Help Points", "sourceSystemKey": "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."}], "children": [], "lat": 51.495001, "lon": -0.245917}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUSFS", "modes": ["tube"], "icsCode": "1000209", "stopType": "NaptanMetroAccessArea", "stationNaptan": "940GZZLUSFS", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "9400ZZLUSFS", "commonName": "Southfields 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 (part), 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": "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": "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": "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": "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": "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": "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"}], "children": [], "lat": 51.445073, "lon": -0.206602}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUSFS1", "modes": ["tube"], "icsCode": "1000209", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUSFS", "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": "940GZZLUSFS", "lineIdentifier": ["district"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["district"]}], "status": true, "id": "9400ZZLUSFS1", "commonName": "Southfields 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": "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": "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": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Southfields Station,Wimbledon Park Rd,London,SW18"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.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": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.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": "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": "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": "Toilets", "sourceSystemKey": "StaticObjects", "value": "no"}], "children": [], "lat": 51.4454, "lon": -0.206805}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUSFS2", "modes": ["tube"], "icsCode": "1000209", "stopType": "NaptanRailAccessArea", "stationNaptan": "940GZZLUSFS", "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": "940GZZLUSFS", "lineIdentifier": ["district"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["district"]}], "status": true, "id": "9400ZZLUSFS2", "commonName": "Southfields 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": "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": "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 (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": "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": "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": "Photo 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": "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": "Toilets", "sourceSystemKey": "StaticObjects", "value": "no"}], "children": [], "lat": 51.4454, "lon": -0.206805}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUSGN", "modes": ["tube"], "icsCode": "1000220", "stopType": "NaptanMetroAccessArea", "stationNaptan": "940GZZLUSGN", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "9400ZZLUSGN", "commonName": "Stepney 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": "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": "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": "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": "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": "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": "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."}], "children": [], "lat": 51.521858, "lon": -0.046596}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUSGN1", "modes": ["tube"], "icsCode": "1000220", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUSGN", "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": "940GZZLUSGN", "lineIdentifier": ["hammersmith-city", "district"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["hammersmith-city", "district"]}], "status": true, "id": "9400ZZLUSGN1", "commonName": "Stepney Green 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": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.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": "Help Points", "sourceSystemKey": "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": "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": "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": "4"}, {"$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": "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"}], "children": [], "lat": 51.521747, "lon": -0.046917}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUSGN2", "modes": ["tube"], "icsCode": "1000220", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUSGN", "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": "940GZZLUSGN", "lineIdentifier": ["hammersmith-city", "district"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["hammersmith-city", "district"]}], "status": true, "id": "9400ZZLUSGN2", "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": "Help Points", "sourceSystemKey": "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": "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": "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": "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": "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": "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": "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.521772, "lon": -0.046815}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUSGP", "modes": ["tube"], "icsCode": "1000224", "stopType": "NaptanMetroAccessArea", "stationNaptan": "940GZZLUSGP", "hubNaptanCode": "HUBSBP", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "9400ZZLUSGP", "commonName": "Stonebridge Park 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": "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": "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": "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": "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": "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"}], "children": [], "lat": 51.543959, "lon": -0.275892}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUSGP1", "modes": ["tube"], "icsCode": "1000224", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUSGP", "hubNaptanCode": "HUBSBP", "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": "940GZZLUSGP", "lineIdentifier": ["bakerloo"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["bakerloo"]}], "status": true, "id": "9400ZZLUSGP1", "commonName": "Stonebridge 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": "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": "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 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": "Stonebridge Park,London Overground Ltd.,North Circular Road,London,NW10 0RL"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "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": "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"}], "children": [], "lat": 51.543976, "lon": -0.275848}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUSGP2", "indicator": "northbound", "modes": ["tube"], "icsCode": "1000224", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUSGP", "hubNaptanCode": "HUBSBP", "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": "940GZZLUSGP", "lineIdentifier": ["bakerloo"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["bakerloo"]}], "status": true, "id": "9400ZZLUSGP2", "commonName": "Stonebridge Park Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$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": "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": "Help Points", "sourceSystemKey": "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 601 4867"}, {"$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": "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": "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": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "0"}], "children": [], "lat": 51.543913, "lon": -0.275807}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUSGT", "modes": ["tube"], "icsCode": "1000210", "stopType": "NaptanMetroAccessArea", "stationNaptan": "940GZZLUSGT", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "9400ZZLUSGT", "commonName": "Southgate 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": "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": "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": "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": "Help Points", "sourceSystemKey": "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": "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": "4"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "no"}], "children": [], "lat": 51.632315, "lon": -0.127816}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUSGT1", "modes": ["tube"], "icsCode": "1000210", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUSGT", "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": "940GZZLUSGT", "lineIdentifier": ["piccadilly"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["piccadilly"]}], "status": true, "id": "9400ZZLUSGT1", "commonName": "Southgate 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": "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": "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": "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": "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": "Help Points", "sourceSystemKey": "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": "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": "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": "Gates", "sourceSystemKey": "StaticObjects", "value": "7"}], "children": [], "lat": 51.632179, "lon": -0.12772}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUSGT2", "modes": ["tube"], "icsCode": "1000210", "stopType": "NaptanRailAccessArea", "stationNaptan": "940GZZLUSGT", "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": "940GZZLUSGT", "lineIdentifier": ["piccadilly"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["piccadilly"]}], "status": true, "id": "9400ZZLUSGT2", "commonName": "Southgate", "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": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$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": "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": "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": "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": "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.632188, "lon": -0.127734}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUSHH", "modes": ["tube"], "icsCode": "1000211", "stopType": "NaptanMetroAccessArea", "stationNaptan": "940GZZLUSHH", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "9400ZZLUSHH", "commonName": "South Harrow 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": "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": "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": "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": "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": "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": "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": "Help Points", "sourceSystemKey": "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": "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.564888, "lon": -0.352492}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUSHH1", "modes": ["tube"], "icsCode": "1000211", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUSHH", "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": "940GZZLUSHH", "lineIdentifier": ["piccadilly"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["piccadilly"]}], "status": true, "id": "9400ZZLUSHH1", "commonName": "South Harrow Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$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": "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": "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": "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": "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": "Bridge", "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": "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": "Help Points", "sourceSystemKey": "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": "Payphones", "sourceSystemKey": "StaticObjects", "value": "1"}], "children": [], "lat": 51.564526, "lon": -0.352332}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUSHH2", "modes": ["tube"], "icsCode": "1000211", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUSHH", "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": "940GZZLUSHH", "lineIdentifier": ["piccadilly"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["piccadilly"]}], "status": true, "id": "9400ZZLUSHH2", "commonName": "South Harrow 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": "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"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.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": "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": "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": "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": "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.564471, "lon": -0.352277}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUSJP", "modes": ["tube"], "icsCode": "1000221", "stopType": "NaptanMetroAccessArea", "stationNaptan": "940GZZLUSJP", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "9400ZZLUSJP", "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": "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": "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": "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": "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": "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": "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": "none"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "0"}], "children": [], "lat": 51.499544, "lon": -0.133608}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUSJP1", "modes": ["tube"], "icsCode": "1000221", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUSJP", "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": "940GZZLUSJP", "lineIdentifier": ["district", "circle"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["district", "circle"]}], "status": true, "id": "9400ZZLUSJP1", "commonName": "St. James's Park 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": "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": "St. James's Park,London Underground Ltd.,Petty France,London,SW1H 0BD"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.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": "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": "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": "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": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "2"}], "children": [], "lat": 51.499377, "lon": -0.134421}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUSJP2", "modes": ["tube"], "icsCode": "1000221", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUSJP", "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": "940GZZLUSJP", "lineIdentifier": ["district", "circle"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["district", "circle"]}], "status": true, "id": "9400ZZLUSJP2", "commonName": "St. James's 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": "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": "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": "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": "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": "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": "Other Facilities", "sourceSystemKey": "StaticObjects", "value": "none"}, {"$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": "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.499343, "lon": -0.134509}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUSJW", "modes": ["tube"], "icsCode": "1000222", "stopType": "NaptanMetroAccessArea", "stationNaptan": "940GZZLUSJW", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "9400ZZLUSJW", "commonName": "St. John's Wood Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$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": "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": "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": "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": "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": "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": "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.534521, "lon": -0.173948}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUSJW1", "modes": ["tube"], "icsCode": "1000222", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUSJW", "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": "940GZZLUSJW", "lineIdentifier": ["jubilee"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["jubilee"]}], "status": true, "id": "9400ZZLUSJW1", "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": "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": "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": "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": "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": "Lifts", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$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": "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.534761, "lon": -0.174876}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUSJW2", "modes": ["tube"], "icsCode": "1000222", "stopType": "NaptanRailAccessArea", "stationNaptan": "940GZZLUSJW", "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": "940GZZLUSJW", "lineIdentifier": ["jubilee"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["jubilee"]}], "status": true, "id": "9400ZZLUSJW2", "commonName": "St John's Wood 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": "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": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$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": "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": "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": "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": "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": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "2"}], "children": [], "lat": 51.534778, "lon": -0.174861}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUSKS", "modes": ["tube"], "icsCode": "1000212", "stopType": "NaptanMetroAccessArea", "stationNaptan": "940GZZLUSKS", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "9400ZZLUSKS", "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": "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": "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": "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": "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": "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": "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": "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": "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.494094, "lon": -0.174138}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUSKS1", "modes": ["tube"], "icsCode": "1000212", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUSKS", "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": "940GZZLUSKS", "lineIdentifier": ["district", "circle"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["district", "circle"]}], "status": true, "id": "9400ZZLUSKS1", "commonName": "South Kensington 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": "South Kensington Station,London Underground Ltd.,Pelham St,London,SW7 2NB"}, {"$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": "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": "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": "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": "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": "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": "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"}], "children": [], "lat": 51.494104, "lon": -0.173057}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUSKS2", "modes": ["tube"], "icsCode": "1000212", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUSKS", "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": "940GZZLUSKS", "lineIdentifier": ["piccadilly"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["piccadilly"]}], "status": true, "id": "9400ZZLUSKS2", "commonName": "South Kensington 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": "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": "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": "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": "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": "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": "Euro Cash Machines", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$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"}], "children": [], "lat": 51.494019, "lon": -0.173363}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUSKS3", "modes": ["tube"], "icsCode": "1000212", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUSKS", "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": "940GZZLUSKS", "lineIdentifier": ["piccadilly"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["piccadilly"]}], "status": true, "id": "9400ZZLUSKS3", "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": "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": "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": "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": "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": "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": "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": "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.494018, "lon": -0.173262}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUSKS4", "indicator": "westbound", "modes": ["tube"], "icsCode": "1000212", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUSKS", "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": "940GZZLUSKS", "lineIdentifier": ["district", "circle"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["district", "circle"]}], "status": true, "id": "9400ZZLUSKS4", "commonName": "South Kensington 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": "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 (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": "Photo Booths", "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": "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": "South Kensington Station,London Underground Ltd.,Pelham St,London,SW7 2NB"}, {"$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": "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": "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": "Lifts", "sourceSystemKey": "StaticObjects", "value": "0"}], "children": [], "lat": 51.494102, "lon": -0.172913}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUSKT", "modes": ["tube"], "icsCode": "1000213", "stopType": "NaptanMetroAccessArea", "stationNaptan": "940GZZLUSKT", "hubNaptanCode": "HUBSOK", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "9400ZZLUSKT", "commonName": "South Kenton 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": "Escalators", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$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": "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": "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": "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": "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": "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"}], "children": [], "lat": 51.570232, "lon": -0.308433}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUSKT1", "modes": ["tube"], "icsCode": "1000213", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUSKT", "hubNaptanCode": "HUBSOK", "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": "940GZZLUSKT", "lineIdentifier": ["bakerloo"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["bakerloo"]}], "status": true, "id": "9400ZZLUSKT1", "commonName": "South Kenton Underground 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": "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": "Photo 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": "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": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 601 4867"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.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": "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": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}], "children": [], "lat": 51.570341, "lon": -0.308559}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUSKT2", "modes": ["tube"], "icsCode": "1000213", "stopType": "NaptanRailAccessArea", "stationNaptan": "940GZZLUSKT", "hubNaptanCode": "HUBSOK", "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": "940GZZLUSKT", "lineIdentifier": ["bakerloo"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["bakerloo"]}], "status": true, "id": "9400ZZLUSKT2", "commonName": "South Kenton 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": "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": "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": "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": "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": "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": "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": "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.570359, "lon": -0.308572}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUSKW", "modes": ["tube"], "icsCode": "1000223", "stopType": "NaptanMetroAccessArea", "stationNaptan": "940GZZLUSKW", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "9400ZZLUSKW", "commonName": "Stockwell 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": "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": "Toilets", "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": "Facility", "key": "Help Points", "sourceSystemKey": "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": "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": "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": "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": "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.472184, "lon": -0.122644}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUSKW1", "modes": ["tube"], "icsCode": "1000223", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUSKW", "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": "940GZZLUSKW", "lineIdentifier": ["northern"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["northern"]}], "status": true, "id": "9400ZZLUSKW1", "commonName": "Stockwell 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": "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": "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": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$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": "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": "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": "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": "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"}], "children": [], "lat": 51.471829, "lon": -0.122917}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUSKW2", "modes": ["tube"], "icsCode": "1000223", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUSKW", "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": "940GZZLUSKW", "lineIdentifier": ["northern"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["northern"]}], "status": true, "id": "9400ZZLUSKW2", "commonName": "Stockwell 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": "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": "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": "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": "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": "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": "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": "Stockwell Station,London Underground Ltd.,Clapham Rd,London,SW9 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"}], "children": [], "lat": 51.471811, "lon": -0.122933}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUSKW3", "modes": ["tube"], "icsCode": "1000223", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUSKW", "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": "940GZZLUSKW", "lineIdentifier": ["victoria"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["victoria"]}], "status": true, "id": "9400ZZLUSKW3", "commonName": "Stockwell 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": "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": "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": "Payphones", "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": "Help Points", "sourceSystemKey": "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": "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": "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": "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.471935, "lon": -0.122783}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUSKW4", "modes": ["tube"], "icsCode": "1000223", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUSKW", "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": "940GZZLUSKW", "lineIdentifier": ["victoria"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["victoria"]}], "status": true, "id": "9400ZZLUSKW4", "commonName": "Stockwell 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": "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": "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": "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": "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": "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": "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.4719, "lon": -0.122828}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUSNB", "modes": ["tube"], "icsCode": "1000207", "stopType": "NaptanMetroAccessArea", "stationNaptan": "940GZZLUSNB", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "9400ZZLUSNB", "commonName": "Snaresbrook 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": "Car park", "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": "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": "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": "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": "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": "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": "WiFi", "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.580678, "lon": 0.02144}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUSNB1", "modes": ["tube"], "icsCode": "1000207", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUSNB", "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": "940GZZLUSNB", "lineIdentifier": ["central"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["central"]}], "status": true, "id": "9400ZZLUSNB1", "commonName": "Snaresbrook 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": "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": "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": "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": "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": "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": "Bridge", "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.580705, "lon": 0.021441}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUSNB2", "modes": ["tube"], "icsCode": "1000207", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUSNB", "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": "940GZZLUSNB", "lineIdentifier": ["central"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["central"]}], "status": true, "id": "9400ZZLUSNB2", "commonName": "Snaresbrook 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": "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": "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": "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": "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": "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": "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": "Other Facilities", "sourceSystemKey": "StaticObjects", "value": "post office style queuing for tickets."}], "children": [], "lat": 51.580651, "lon": 0.02141}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUSPU", "modes": ["tube"], "icsCode": "1000225", "stopType": "NaptanMetroAccessArea", "stationNaptan": "940GZZLUSPU", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "9400ZZLUSPU", "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": "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": "Lifts", "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": "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": "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": "St. Paul's,London Underground Ltd.,Cheapside,London,EC1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "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": "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.514936, "lon": -0.097567}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUSPU1", "modes": ["tube"], "icsCode": "1000225", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUSPU", "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": "940GZZLUSPU", "lineIdentifier": ["central"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["central"]}], "status": true, "id": "9400ZZLUSPU1", "commonName": "St. Paul's 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": "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": "Photo 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": "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": "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": "Facility", "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": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "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": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}], "children": [], "lat": 51.515173, "lon": -0.098321}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUSPU2", "modes": ["tube"], "icsCode": "1000225", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUSPU", "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": "940GZZLUSPU", "lineIdentifier": ["central"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["central"]}], "status": true, "id": "9400ZZLUSPU2", "commonName": "St. Paul's 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": "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": "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": "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": "Payphones", "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": "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": "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": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}], "children": [], "lat": 51.515192, "lon": -0.098392}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUSRP", "modes": ["tube"], "icsCode": "1000214", "stopType": "NaptanMetroAccessArea", "stationNaptan": "940GZZLUSRP", "hubNaptanCode": "HUBSRU", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "9400ZZLUSRP", "commonName": "South Ruislip 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": "South Ruislip Station,London Underground Ltd.,Station Approach,Ruislip,Middx,HA4 6TP"}, {"$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": "Help Points", "sourceSystemKey": "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": "Toilets", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$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": "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": "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.556853, "lon": -0.398915}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUSRP1", "modes": ["tube"], "icsCode": "1000214", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUSRP", "hubNaptanCode": "HUBSRU", "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": "940GZZLUSRP", "lineIdentifier": ["central"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["central"]}], "status": true, "id": "9400ZZLUSRP1", "commonName": "South Ruislip 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": "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": "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": "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": "South Ruislip Station,London Underground Ltd.,Station Approach,Ruislip,Middx,HA4 6TP"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo 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": "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"}], "children": [], "lat": 51.556967, "lon": -0.399373}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUSRP2", "modes": ["tube"], "icsCode": "1000214", "stopType": "NaptanRailAccessArea", "stationNaptan": "940GZZLUSRP", "hubNaptanCode": "HUBSRU", "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": "940GZZLUSRP", "lineIdentifier": ["central"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["central"]}], "status": true, "id": "9400ZZLUSRP2", "commonName": "South Ruislip 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": "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": "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": "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": "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": "South Ruislip Station,London Underground Ltd.,Station Approach,Ruislip,Middx,HA4 6TP"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.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": "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.556958, "lon": -0.399373}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUSSQ", "modes": ["tube"], "icsCode": "1000206", "stopType": "NaptanMetroAccessArea", "stationNaptan": "940GZZLUSSQ", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "9400ZZLUSSQ", "commonName": "Sloane Square 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": "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": "Sloane Square Station,London Underground Ltd.,Sloane Square,London,SW1W 8BB"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.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": "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": "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": "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": "Gates", "sourceSystemKey": "StaticObjects", "value": "7"}], "children": [], "lat": 51.49227, "lon": -0.156377}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUSSQ1", "modes": ["tube"], "icsCode": "1000206", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUSSQ", "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": "940GZZLUSSQ", "lineIdentifier": ["circle", "district"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["circle", "district"]}], "status": true, "id": "9400ZZLUSSQ1", "commonName": "Sloane Square 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, 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": "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": "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": "Sloane Square Station,London Underground Ltd.,Sloane Square,London,SW1W 8BB"}, {"$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": "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": "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.492338, "lon": -0.156144}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUSSQ2", "modes": ["tube"], "icsCode": "1000206", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUSSQ", "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": "940GZZLUSSQ", "lineIdentifier": ["circle", "district"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["circle", "district"]}], "status": true, "id": "9400ZZLUSSQ2", "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": "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": "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": "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": "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": "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": "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": "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": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "0"}], "children": [], "lat": 51.492309, "lon": -0.15603}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUSTD", "modes": ["tube"], "icsCode": "1000226", "stopType": "NaptanMetroAccessArea", "stationNaptan": "940GZZLUSTD", "hubNaptanCode": "HUBSRA", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "9400ZZLUSTD", "commonName": "Stratford Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$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": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$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": "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": "Lifts", "sourceSystemKey": "StaticObjects", "value": "5"}, {"$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": "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": "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": "Photo 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"}], "children": [], "lat": 51.541806, "lon": -0.003458}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUSTD1", "indicator": "Platform 3A", "stopLetter": "3A", "modes": ["tube"], "icsCode": "1000226", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUSTD", "hubNaptanCode": "HUBSRA", "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": "940GZZLUSTD", "lineIdentifier": ["central"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["central"]}], "status": true, "id": "9400ZZLUSTD1", "commonName": "Stratford 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"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.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": "Lifts", "sourceSystemKey": "StaticObjects", "value": "5"}, {"$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": "Cash Machines", "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": "Euro Cash Machines", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$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": "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"}, {"$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": "Help 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.542326, "lon": -0.002311}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUSTD2", "indicator": "Platform 3", "stopLetter": "3", "modes": ["tube"], "icsCode": "1000226", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUSTD", "hubNaptanCode": "HUBSRA", "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": "940GZZLUSTD", "lineIdentifier": ["central"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["central"]}], "status": true, "id": "9400ZZLUSTD2", "commonName": "Stratford 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": "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": "Payphones", "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": "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": "Stratford Station BR Station St,London,E15 1DE"}, {"$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": "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": "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"}], "children": [], "lat": 51.542328, "lon": -0.002426}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUSTD3", "indicator": "Platform 6", "stopLetter": "6", "modes": ["tube"], "icsCode": "1000226", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUSTD", "hubNaptanCode": "HUBSRA", "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": "940GZZLUSTD", "lineIdentifier": ["jubilee"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["jubilee"]}], "status": true, "id": "9400ZZLUSTD3", "commonName": "Stratford 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": "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": "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": "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": "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": "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": "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": "Cash Machines", "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": "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": "Escalators", "sourceSystemKey": "StaticObjects", "value": "2"}], "children": [], "lat": 51.54233, "lon": -0.002541}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUSTD4", "indicator": "Platform 13", "stopLetter": "13", "modes": ["tube"], "icsCode": "1000226", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUSTD", "hubNaptanCode": "HUBSRA", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "9400ZZLUSTD4", "commonName": "Stratford Underground 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": "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": "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": "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": "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": "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": "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": "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"}, {"$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"}], "children": [], "lat": 51.540512, "lon": -0.0035}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUSTD5", "indicator": "Platform 14", "stopLetter": "14", "modes": ["tube"], "icsCode": "1000226", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUSTD", "hubNaptanCode": "HUBSRA", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "9400ZZLUSTD5", "commonName": "Stratford Underground 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": "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": "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": "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": "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": "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": "Help Points", "sourceSystemKey": "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": "Ticket Halls", "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": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "4"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "5"}], "children": [], "lat": 51.54051, "lon": -0.003356}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUSTD6", "indicator": "Platform 15", "stopLetter": "15", "modes": ["tube"], "icsCode": "1000226", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUSTD", "hubNaptanCode": "HUBSRA", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "9400ZZLUSTD6", "commonName": "Stratford Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$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": "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": "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": "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": "23"}, {"$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": "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": "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": "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.540507, "lon": -0.003212}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUSTM", "modes": ["tube"], "icsCode": "1000219", "stopType": "NaptanMetroAccessArea", "stationNaptan": "940GZZLUSTM", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "9400ZZLUSTM", "commonName": "Stanmore 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": "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": "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": "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": "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": "Help Points", "sourceSystemKey": "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": "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": "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, disabled/baby-changing facilities)"}], "children": [], "lat": 51.619839, "lon": -0.303266}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUSTM1", "modes": ["tube"], "icsCode": "1000219", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUSTM", "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": "940GZZLUSTM", "lineIdentifier": ["jubilee"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["jubilee"]}], "status": true, "id": "9400ZZLUSTM1", "commonName": "Stanmore 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": "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": "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": "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, 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": "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": "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": "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": "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.619175, "lon": -0.302742}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUSUH", "modes": ["tube"], "icsCode": "1000227", "stopType": "NaptanMetroAccessArea", "stationNaptan": "940GZZLUSUH", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "9400ZZLUSUH", "commonName": "Sudbury 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": "Help Points", "sourceSystemKey": "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"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.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": "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": "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": "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": "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"}], "children": [], "lat": 51.556946, "lon": -0.336435}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUSUH1", "modes": ["tube"], "icsCode": "1000227", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUSUH", "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": "940GZZLUSUH", "lineIdentifier": ["piccadilly"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["piccadilly"]}], "status": true, "id": "9400ZZLUSUH1", "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": "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": "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": "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": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$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"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.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": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}], "children": [], "lat": 51.557043, "lon": -0.336951}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUSUH2", "modes": ["tube"], "icsCode": "1000227", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUSUH", "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": "940GZZLUSUH", "lineIdentifier": ["piccadilly"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["piccadilly"]}], "status": true, "id": "9400ZZLUSUH2", "commonName": "Sudbury Hill Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$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": "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": "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": "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": "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": "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.557005, "lon": -0.336837}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUSUT", "modes": ["tube"], "icsCode": "1000228", "stopType": "NaptanMetroAccessArea", "stationNaptan": "940GZZLUSUT", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "9400ZZLUSUT", "commonName": "Sudbury 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": "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": "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": "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": "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": "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"}], "children": [], "lat": 51.550815, "lon": -0.315745}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUSUT1", "modes": ["tube"], "icsCode": "1000228", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUSUT", "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": "940GZZLUSUT", "lineIdentifier": ["piccadilly"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["piccadilly"]}], "status": true, "id": "9400ZZLUSUT1", "commonName": "Sudbury 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": "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": "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": "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": "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": "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": "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": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "4"}], "children": [], "lat": 51.550797, "lon": -0.315774}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUSUT2", "modes": ["tube"], "icsCode": "1000228", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUSUT", "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": "940GZZLUSUT", "lineIdentifier": ["piccadilly"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["piccadilly"]}], "status": true, "id": "9400ZZLUSUT2", "commonName": "Sudbury Town 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": "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": "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": "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": "Help Points", "sourceSystemKey": "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": "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.55076, "lon": -0.315689}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUSVS", "modes": ["tube"], "icsCode": "1000201", "stopType": "NaptanMetroAccessArea", "stationNaptan": "940GZZLUSVS", "hubNaptanCode": "HUBSVS", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "9400ZZLUSVS", "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": "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": "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": "Photo 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": "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": "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": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "2"}], "children": [], "lat": 51.58333, "lon": -0.072584}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUSVS1", "modes": ["tube"], "icsCode": "1000201", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUSVS", "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"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "940GZZLUSVS", "lineIdentifier": ["victoria"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["victoria"]}], "status": true, "id": "9400ZZLUSVS1", "commonName": "Seven Sisters 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": "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": "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"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.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": "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": "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": "Help 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"}], "children": [], "lat": 51.582433, "lon": -0.073863}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUSVS2", "modes": ["tube"], "icsCode": "1000201", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUSVS", "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"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "940GZZLUSVS", "lineIdentifier": ["victoria"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["victoria"]}], "status": true, "id": "9400ZZLUSVS2", "commonName": "Seven Sisters 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": "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": "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": "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": "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": "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": "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": "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": "13"}], "children": [], "lat": 51.58239, "lon": -0.07398}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUSWC", "modes": ["tube"], "icsCode": "1000230", "stopType": "NaptanMetroAccessArea", "stationNaptan": "940GZZLUSWC", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "9400ZZLUSWC", "commonName": "Swiss Cottage 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": "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"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo 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": "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": "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": "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"}, {"$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": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "2"}], "children": [], "lat": 51.543681, "lon": -0.174894}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUSWC1", "modes": ["tube"], "icsCode": "1000230", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUSWC", "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": "940GZZLUSWC", "lineIdentifier": ["jubilee"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["jubilee"]}], "status": true, "id": "9400ZZLUSWC1", "commonName": "Swiss Cottage 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": "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": "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": "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": "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": "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": "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"}], "children": [], "lat": 51.543606, "lon": -0.175229}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUSWC2", "modes": ["tube"], "icsCode": "1000230", "stopType": "NaptanRailAccessArea", "stationNaptan": "940GZZLUSWC", "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": "940GZZLUSWC", "lineIdentifier": ["jubilee"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["jubilee"]}], "status": true, "id": "9400ZZLUSWC2", "commonName": "Swiss Cottage 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": "Bridge", "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": "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": "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": "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": "Payphones", "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": "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": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}], "children": [], "lat": 51.543597, "lon": -0.175244}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUSWF", "modes": ["tube"], "icsCode": "1000217", "stopType": "NaptanMetroAccessArea", "stationNaptan": "940GZZLUSWF", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "9400ZZLUSWF", "commonName": "South Woodford 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": "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 Eastbound 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": "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": "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": "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": "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": "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": "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.591907, "lon": 0.027338}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUSWF1", "modes": ["tube"], "icsCode": "1000217", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUSWF", "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": "940GZZLUSWF", "lineIdentifier": ["central"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["central"]}], "status": true, "id": "9400ZZLUSWF1", "commonName": "South Woodford Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$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": "Boarding Ramps", "sourceSystemKey": "StaticObjects", "value": "yes Eastbound 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": "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": "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": "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": "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": "Toilets", "sourceSystemKey": "StaticObjects", "value": "yes (male, female)"}, {"$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": "2"}], "children": [], "lat": 51.591753, "lon": 0.02736}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUSWF2", "modes": ["tube"], "icsCode": "1000217", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUSWF", "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": "940GZZLUSWF", "lineIdentifier": ["central"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["central"]}], "status": true, "id": "9400ZZLUSWF2", "commonName": "South Woodford 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": "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": "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": "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": "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": "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": "South Woodford Station,London Underground Ltd.,George Lane,London,E18 1JJ"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, 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": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "7"}], "children": [], "lat": 51.591682, "lon": 0.027342}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUSWK", "modes": ["tube"], "icsCode": "1000215", "stopType": "NaptanMetroAccessArea", "stationNaptan": "940GZZLUSWK", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "9400ZZLUSWK", "commonName": "Southwark 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": "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": "Help Points", "sourceSystemKey": "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": "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": "2"}, {"$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": "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": "Gates", "sourceSystemKey": "StaticObjects", "value": "19"}], "children": [], "lat": 51.503976, "lon": -0.10494}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUSWK1", "indicator": "Eastbound", "modes": ["tube"], "icsCode": "1000215", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUSWK", "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": "940GZZLUSWK", "lineIdentifier": ["jubilee"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["jubilee"]}], "status": true, "id": "9400ZZLUSWK1", "commonName": "Southwark 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": "Payphones", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$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": "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": "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": "Escalators", "sourceSystemKey": "StaticObjects", "value": "8"}, {"$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": "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.504302, "lon": -0.105632}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUSWK2", "indicator": "Westbound", "modes": ["tube"], "icsCode": "1000215", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUSWK", "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": "940GZZLUSWK", "lineIdentifier": ["jubilee"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["jubilee"]}], "status": true, "id": "9400ZZLUSWK2", "commonName": "Southwark Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$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": "Help Points", "sourceSystemKey": "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": "Toilets", "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": "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": "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": "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": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "2"}], "children": [], "lat": 51.50427, "lon": -0.105331}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUSWN", "modes": ["tube"], "icsCode": "1000216", "stopType": "NaptanMetroAccessArea", "stationNaptan": "940GZZLUSWN", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "9400ZZLUSWN", "commonName": "South Wimbledon 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": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$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"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.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": "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": "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": "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"}], "children": [], "lat": 51.415309, "lon": -0.192005}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUSWN1", "modes": ["tube"], "icsCode": "1000216", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUSWN", "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": "940GZZLUSWN", "lineIdentifier": ["northern"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["northern"]}], "status": true, "id": "9400ZZLUSWN1", "commonName": "South Wimbledon 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": "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": "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": "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": "Help 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": "South Wimbledon Station,London Underground Ltd.,High St,London,SW19 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": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "3+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": "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.415078, "lon": -0.19282}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUSWN2", "modes": ["tube"], "icsCode": "1000216", "stopType": "NaptanRailAccessArea", "stationNaptan": "940GZZLUSWN", "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": "940GZZLUSWN", "lineIdentifier": ["northern"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["northern"]}], "status": true, "id": "9400ZZLUSWN2", "commonName": "South Wimbledon 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": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$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"}, {"$type": "Tfl.Api.Presentation.Entities.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": "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": "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": "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": "Photo 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.41525, "lon": -0.192856}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUTAW", "modes": ["tube"], "icsCode": "1000237", "stopType": "NaptanMetroAccessArea", "stationNaptan": "940GZZLUTAW", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "9400ZZLUTAW", "commonName": "Totteridge & Whetstone 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": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$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": "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": "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": "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": "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"}], "children": [], "lat": 51.630597, "lon": -0.17921}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUTAW1", "modes": ["tube"], "icsCode": "1000237", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUTAW", "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": "940GZZLUTAW", "lineIdentifier": ["northern"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["northern"]}], "status": true, "id": "9400ZZLUTAW1", "commonName": "Totteridge & Whetstone 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": "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": "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": "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": "Totteridge & Whetstone Station,London Underground Ltd.,Totteridge Lane,London,N20 9QP"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.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"}], "children": [], "lat": 51.63057, "lon": -0.179226}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUTAW2", "modes": ["tube"], "icsCode": "1000237", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUTAW", "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": "940GZZLUTAW", "lineIdentifier": ["northern"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["northern"]}], "status": true, "id": "9400ZZLUTAW2", "commonName": "Totteridge & Whetstone 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": "Totteridge & Whetstone Station,London Underground Ltd.,Totteridge Lane,London,N20 9QP"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.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": "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": "Facility", "key": "Help Points", "sourceSystemKey": "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": "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": "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": "Escalators", "sourceSystemKey": "StaticObjects", "value": "0"}], "children": [], "lat": 51.630507, "lon": -0.179228}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUTBC", "modes": ["tube"], "icsCode": "1000233", "stopType": "NaptanMetroAccessArea", "stationNaptan": "940GZZLUTBC", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "9400ZZLUTBC", "commonName": "Tooting Bec 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": "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": "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": "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": "Facility", "key": "Help 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": "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, 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": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}], "children": [], "lat": 51.435678, "lon": -0.159736}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUTBC1", "modes": ["tube"], "icsCode": "1000233", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUTBC", "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": "940GZZLUTBC", "lineIdentifier": ["northern"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["northern"]}], "status": true, "id": "9400ZZLUTBC1", "commonName": "Tooting Bec 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": "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": "Photo 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": "Help Points", "sourceSystemKey": "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": "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": "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": "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": "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.435856, "lon": -0.159024}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUTBC2", "modes": ["tube"], "icsCode": "1000233", "stopType": "NaptanRailAccessArea", "stationNaptan": "940GZZLUTBC", "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": "940GZZLUTBC", "lineIdentifier": ["northern"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["northern"]}], "status": true, "id": "9400ZZLUTBC2", "commonName": "Tooting Bec 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": "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, 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": "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": "Help Points", "sourceSystemKey": "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": "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": "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": "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": "no"}], "children": [], "lat": 51.435847, "lon": -0.15901}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUTBY", "modes": ["tube"], "icsCode": "1000234", "stopType": "NaptanMetroAccessArea", "stationNaptan": "940GZZLUTBY", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "9400ZZLUTBY", "commonName": "Tooting Broadway 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": "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": "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": "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": "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": "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": "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, 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": "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": "6 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"}], "children": [], "lat": 51.42763, "lon": -0.168374}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUTBY1", "modes": ["tube"], "icsCode": "1000234", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUTBY", "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": "940GZZLUTBY", "lineIdentifier": ["northern"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["northern"]}], "status": true, "id": "9400ZZLUTBY1", "commonName": "Tooting Broadway 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": "Photo 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": "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": "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": "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": "6 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": "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": "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": "Tooting Broadway Station,London Underground Ltd.,Tooting High St,London,SW17 0SU"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.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"}], "children": [], "lat": 51.427843, "lon": -0.168178}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUTBY2", "modes": ["tube"], "icsCode": "1000234", "stopType": "NaptanRailAccessArea", "stationNaptan": "940GZZLUTBY", "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": "940GZZLUTBY", "lineIdentifier": ["northern"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["northern"]}], "status": true, "id": "9400ZZLUTBY2", "commonName": "Tooting Broadway 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": "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": "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": "3"}, {"$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": "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": "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": "Payphones", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$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": "Facility", "key": "Photo 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.427825, "lon": -0.168164}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUTCR", "modes": ["tube"], "icsCode": "1000235", "stopType": "NaptanMetroAccessArea", "stationNaptan": "940GZZLUTCR", "hubNaptanCode": "HUBTCR", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "9400ZZLUTCR", "commonName": "Tottenham Court Road Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$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": "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": "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": "Payphones", "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": "Ticket Halls", "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": "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": "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": "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.516426, "lon": -0.13041}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUTCR1", "modes": ["tube"], "icsCode": "1000235", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUTCR", "hubNaptanCode": "HUBTCR", "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": "940GZZLUTCR", "lineIdentifier": ["central"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["central"]}], "status": true, "id": "9400ZZLUTCR1", "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": "Lifts", "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": "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": "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": "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": "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": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}], "children": [], "lat": 51.516408, "lon": -0.131549}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUTCR2", "modes": ["tube"], "icsCode": "1000235", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUTCR", "hubNaptanCode": "HUBTCR", "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": "940GZZLUTCR", "lineIdentifier": ["northern"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["northern"]}], "status": true, "id": "9400ZZLUTCR2", "commonName": "Tottenham Court Road 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": "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": "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": "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": "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": "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": "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": "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": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "no"}], "children": [], "lat": 51.515941, "lon": -0.13043}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUTCR3", "modes": ["tube"], "icsCode": "1000235", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUTCR", "hubNaptanCode": "HUBTCR", "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": "940GZZLUTCR", "lineIdentifier": ["northern"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["northern"]}], "status": true, "id": "9400ZZLUTCR3", "commonName": "Tottenham Court 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": "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": "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": "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": "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": "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": "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": "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"}], "children": [], "lat": 51.515904, "lon": -0.130402}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUTCR4", "modes": ["tube"], "icsCode": "1000235", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUTCR", "hubNaptanCode": "HUBTCR", "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": "940GZZLUTCR", "lineIdentifier": ["central"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["central"]}], "status": true, "id": "9400ZZLUTCR4", "commonName": "Tottenham Court Road 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": "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": "13"}, {"$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": "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": "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": "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": "Photo 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.51594, "lon": -0.130401}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUTFP", "modes": ["tube"], "icsCode": "1000239", "stopType": "NaptanMetroAccessArea", "stationNaptan": "940GZZLUTFP", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "9400ZZLUTFP", "commonName": "Tufnell 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": "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": "Photo 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": "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": "Tufnell Park Station,London Underground Ltd.,Fortess Rd,London,N19 5QB"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.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": "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": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}], "children": [], "lat": 51.556822, "lon": -0.138433}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUTFP1", "modes": ["tube"], "icsCode": "1000239", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUTFP", "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": "940GZZLUTFP", "lineIdentifier": ["northern"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["northern"]}], "status": true, "id": "9400ZZLUTFP1", "commonName": "Tufnell 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": "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": "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": "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": "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": "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": "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.556803, "lon": -0.138391}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUTFP2", "modes": ["tube"], "icsCode": "1000239", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUTFP", "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": "940GZZLUTFP", "lineIdentifier": ["northern"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["northern"]}], "status": true, "id": "9400ZZLUTFP2", "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": "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": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$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": "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": "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": "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.556741, "lon": -0.138422}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUTHB", "modes": ["tube"], "icsCode": "1000232", "stopType": "NaptanMetroAccessArea", "stationNaptan": "940GZZLUTHB", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "9400ZZLUTHB", "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": "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": "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": "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": "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": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "6"}, {"$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": "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": "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": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}], "children": [], "lat": 51.671759, "lon": 0.103085}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUTHB1", "modes": ["tube"], "icsCode": "1000232", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUTHB", "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": "940GZZLUTHB", "lineIdentifier": ["central"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["central"]}], "status": true, "id": "9400ZZLUTHB1", "commonName": "Theydon Bois Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$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": "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": "Boarding Ramps", "sourceSystemKey": "StaticObjects", "value": "yes Eastbound 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": "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": "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": "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": "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": "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.671479, "lon": 0.103651}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUTHB2", "modes": ["tube"], "icsCode": "1000232", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUTHB", "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": "940GZZLUTHB", "lineIdentifier": ["central"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["central"]}], "status": true, "id": "9400ZZLUTHB2", "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": "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 (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": "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": "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": "Lifts", "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": "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 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.671426, "lon": 0.10362}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUTMH", "modes": ["tube"], "icsCode": "1000236", "stopType": "NaptanMetroAccessArea", "stationNaptan": "940GZZLUTMH", "hubNaptanCode": "HUBTOM", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "9400ZZLUTMH", "commonName": "Tottenham Hale 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": "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": "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": "Payphones", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Tottenham Hale Underground Station,London Underground Ltd.,Station Rd,London,N17 9LR"}, {"$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": "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": "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"}], "children": [], "lat": 51.588108, "lon": -0.060241}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUTMH1", "modes": ["tube"], "icsCode": "1000236", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUTMH", "hubNaptanCode": "HUBTOM", "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": "940GZZLUTMH", "lineIdentifier": ["victoria"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["victoria"]}], "status": true, "id": "9400ZZLUTMH1", "commonName": "Tottenham Hale 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": "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": "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": "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": "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": "Address", "sourceSystemKey": "StaticObjects", "value": "Tottenham Hale Underground Station,London Underground Ltd.,Station Rd,London,N17 9LR"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.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": "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": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}], "children": [], "lat": 51.588309, "lon": -0.061532}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUTMH2", "modes": ["tube"], "icsCode": "1000236", "stopType": "NaptanRailAccessArea", "stationNaptan": "940GZZLUTMH", "hubNaptanCode": "HUBTOM", "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": "940GZZLUTMH", "lineIdentifier": ["victoria"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["victoria"]}], "status": true, "id": "9400ZZLUTMH2", "commonName": "Tottenham Hale", "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": "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": "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": "Tottenham Hale Underground Station,London Underground Ltd.,Station Rd,London,N17 9LR"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.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": "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": "Car park", "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, 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": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "3"}], "children": [], "lat": 51.588318, "lon": -0.061502}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUTMP", "modes": ["tube"], "icsCode": "1000231", "stopType": "NaptanMetroAccessArea", "stationNaptan": "940GZZLUTMP", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "9400ZZLUTMP", "commonName": "Temple 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": "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": "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": "Temple Station,London Underground Ltd.,Victoria Embankment,London,WC2R 2PH"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.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": "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": "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"}], "children": [], "lat": 51.511006, "lon": -0.11426}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUTMP1", "modes": ["tube"], "icsCode": "1000231", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUTMP", "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": "940GZZLUTMP", "lineIdentifier": ["district", "circle"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["district", "circle"]}], "status": true, "id": "9400ZZLUTMP1", "commonName": "Temple 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": "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": "Facility", "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": "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": "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": "Temple Station,London Underground Ltd.,Victoria Embankment,London,WC2R 2PH"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}], "children": [], "lat": 51.510861, "lon": -0.114756}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUTMP2", "modes": ["tube"], "icsCode": "1000231", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUTMP", "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": "940GZZLUTMP", "lineIdentifier": ["district", "circle"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["district", "circle"]}], "status": true, "id": "9400ZZLUTMP2", "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": "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": "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": "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": "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": "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"}], "children": [], "lat": 51.510877, "lon": -0.114669}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUTNG", "modes": ["tube"], "icsCode": "1000240", "stopType": "NaptanMetroAccessArea", "stationNaptan": "940GZZLUTNG", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "9400ZZLUTNG", "commonName": "Turnham Green Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$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": "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": "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": "Bridge", "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": "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": "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": "4"}, {"$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": "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.495148, "lon": -0.254555}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUTNG1", "modes": ["tube"], "icsCode": "1000240", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUTNG", "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": "940GZZLUTNG", "lineIdentifier": ["piccadilly"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["piccadilly"]}], "status": true, "id": "9400ZZLUTNG1", "commonName": "Turnham 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": "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": "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": "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": "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": "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": "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": "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": "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.495275, "lon": -0.254622}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUTNG2", "modes": ["tube"], "icsCode": "1000240", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUTNG", "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": "940GZZLUTNG", "lineIdentifier": ["district", "piccadilly"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["district", "piccadilly"]}], "status": true, "id": "9400ZZLUTNG2", "commonName": "Turnham Green 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": "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": "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": "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": "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": "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": "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": "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.495265, "lon": -0.25455}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUTNG3", "modes": ["tube"], "icsCode": "1000240", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUTNG", "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": "940GZZLUTNG", "lineIdentifier": ["district"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["district"]}], "status": true, "id": "9400ZZLUTNG3", "commonName": "Turnham 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": "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": "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": "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": "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": "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": "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": "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": "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": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}], "children": [], "lat": 51.495263, "lon": -0.254464}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUTNG4", "modes": ["tube"], "icsCode": "1000240", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUTNG", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "9400ZZLUTNG4", "commonName": "Turnham 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": "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": "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": "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": "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": "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": "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": "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": "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.495262, "lon": -0.254377}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUTPN", "modes": ["tube"], "icsCode": "1000241", "stopType": "NaptanMetroAccessArea", "stationNaptan": "940GZZLUTPN", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "9400ZZLUTPN", "commonName": "Turnpike Lane 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": "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": "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": "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": "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": "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": "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": "Other Facilities", "sourceSystemKey": "StaticObjects", "value": "post office style queuing for tickets, subway to street, routeways platform to ticket hall."}], "children": [], "lat": 51.590272, "lon": -0.102953}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUTPN1", "modes": ["tube"], "icsCode": "1000241", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUTPN", "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": "940GZZLUTPN", "lineIdentifier": ["piccadilly"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["piccadilly"]}], "status": true, "id": "9400ZZLUTPN1", "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": "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": "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": "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, 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": "Turnpike Lane Station,London Underground Ltd.,Westbury Avenue,London,N15 3NX"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.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": "5"}], "children": [], "lat": 51.590046, "lon": -0.10289}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUTPN2", "modes": ["tube"], "icsCode": "1000241", "stopType": "NaptanRailAccessArea", "stationNaptan": "940GZZLUTPN", "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": "940GZZLUTPN", "lineIdentifier": ["piccadilly"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["piccadilly"]}], "status": true, "id": "9400ZZLUTPN2", "commonName": "Turnpike Lane 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": "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": "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": "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": "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": "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": "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": "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": "Bridge", "sourceSystemKey": "StaticObjects", "value": "no"}], "children": [], "lat": 51.590046, "lon": -0.102876}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUTWH", "modes": ["tube"], "icsCode": "1000238", "stopType": "NaptanMetroAccessArea", "stationNaptan": "940GZZLUTWH", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "9400ZZLUTWH", "commonName": "Tower 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": "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": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$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": "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": "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": "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": "15"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}], "children": [], "lat": 51.509971, "lon": -0.076546}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUTWH1", "modes": ["tube"], "icsCode": "1000238", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUTWH", "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": "940GZZLUTWH", "lineIdentifier": ["circle", "district"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["circle", "district"]}], "status": true, "id": "9400ZZLUTWH1", "commonName": "Tower Hill Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$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": "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": "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": "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": "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": "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"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "1"}], "children": [], "lat": 51.509663, "lon": -0.076991}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUTWH2", "modes": ["tube"], "icsCode": "1000238", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUTWH", "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": "940GZZLUTWH", "lineIdentifier": ["circle", "district"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["circle", "district"]}], "status": true, "id": "9400ZZLUTWH2", "commonName": "Tower Hill Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$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": "Gates", "sourceSystemKey": "StaticObjects", "value": "15"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.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": "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": "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": "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": "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": "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.50962, "lon": -0.077108}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUTWH3", "indicator": "westbound", "modes": ["tube"], "icsCode": "1000238", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUTWH", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "9400ZZLUTWH3", "commonName": "Tower Hill 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": "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": "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": "Help Points", "sourceSystemKey": "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": "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": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "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": "Tower Hill Station,London Underground Ltd.,Trinity Square,London,EC3N 4DJ"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "15"}], "children": [], "lat": 51.509707, "lon": -0.076917}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUUPB", "modes": ["tube"], "icsCode": "1000243", "stopType": "NaptanMetroAccessArea", "stationNaptan": "940GZZLUUPB", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "9400ZZLUUPB", "commonName": "Upminster Bridge 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 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": "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": "canopies over platform."}, {"$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": "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": "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": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "0"}], "children": [], "lat": 51.55856, "lon": 0.235809}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUUPB1", "modes": ["tube"], "icsCode": "1000243", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUUPB", "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": "940GZZLUUPB", "lineIdentifier": ["district"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["district"]}], "status": true, "id": "9400ZZLUUPB1", "commonName": "Upminster Bridge 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": "Help Points", "sourceSystemKey": "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": "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": "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": "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": "Other Facilities", "sourceSystemKey": "StaticObjects", "value": "canopies over platform."}, {"$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 Bridge Station,London Underground Ltd.,Upminster Rd,Hornchurch,Essex,RM12 6PL"}], "children": [], "lat": 51.558254, "lon": 0.234857}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUUPB2", "modes": ["tube"], "icsCode": "1000243", "stopType": "NaptanRailAccessArea", "stationNaptan": "940GZZLUUPB", "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": "940GZZLUUPB", "lineIdentifier": ["district"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["district"]}], "status": true, "id": "9400ZZLUUPB2", "commonName": "Upminster Bridge", "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": "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": "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": "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": "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": "0"}, {"$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": "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"}], "children": [], "lat": 51.558263, "lon": 0.234872}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUUPK", "modes": ["tube"], "icsCode": "1000245", "stopType": "NaptanMetroAccessArea", "stationNaptan": "940GZZLUUPK", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "9400ZZLUUPK", "commonName": "Upton Park Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$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": "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": "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": "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": "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": "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"}], "children": [], "lat": 51.53534, "lon": 0.035263}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUUPK1", "modes": ["tube"], "icsCode": "1000245", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUUPK", "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": "940GZZLUUPK", "lineIdentifier": ["district", "hammersmith-city"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["district", "hammersmith-city"]}], "status": true, "id": "9400ZZLUUPK1", "commonName": "Upton 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": "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": "Other Facilities", "sourceSystemKey": "StaticObjects", "value": "canopies over platform."}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.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": "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": "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": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$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"}], "children": [], "lat": 51.53516, "lon": 0.034274}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUUPK2", "modes": ["tube"], "icsCode": "1000245", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUUPK", "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": "940GZZLUUPK", "lineIdentifier": ["district", "hammersmith-city"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["district", "hammersmith-city"]}], "status": true, "id": "9400ZZLUUPK2", "commonName": "Upton Park 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": "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": "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": "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": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.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": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}], "children": [], "lat": 51.53516, "lon": 0.034289}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUUPM", "modes": ["tube"], "icsCode": "1000242", "stopType": "NaptanMetroAccessArea", "stationNaptan": "940GZZLUUPM", "hubNaptanCode": "HUBUPM", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "9400ZZLUUPM", "commonName": "Upminster 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": "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": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$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": "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": "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": "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": "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": "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"}], "children": [], "lat": 51.559063, "lon": 0.250882}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUUPM1", "modes": ["tube"], "icsCode": "1000242", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUUPM", "hubNaptanCode": "HUBUPM", "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": "940GZZLUUPM", "lineIdentifier": ["district"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["district"]}], "status": true, "id": "9400ZZLUUPM1", "commonName": "Upminster 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": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$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": "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": "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": "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": "Opening Time", "key": "MonFriTo", "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": "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": "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": "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": "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": "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": "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"}], "children": [], "lat": 51.559335, "lon": 0.25127}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUUPM2", "modes": ["tube"], "icsCode": "1000242", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUUPM", "hubNaptanCode": "HUBUPM", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "9400ZZLUUPM2", "commonName": "Upminster Underground 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": "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": "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": "Opening Time", "key": "MonFriTo", "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": "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": "Gates", "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": "Refreshment facilities"}, {"$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": "Facility", "key": "Help 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": "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": "22:00"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Opening Time", "key": "SunFrom", "sourceSystemKey": "StaticObjects", "value": "06:45"}], "children": [], "lat": 51.559333, "lon": 0.251357}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUUPY", "modes": ["tube"], "icsCode": "1000244", "stopType": "NaptanMetroAccessArea", "stationNaptan": "940GZZLUUPY", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "9400ZZLUUPY", "commonName": "Upney 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": "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": "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": "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": "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": "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": "Opening Time", "key": "MonFriTo", "sourceSystemKey": "StaticObjects", "value": "09:45"}, {"$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": "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": "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": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "yes"}], "children": [], "lat": 51.538372, "lon": 0.10153}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUUPY1", "modes": ["tube"], "icsCode": "1000244", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUUPY", "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": "940GZZLUUPY", "lineIdentifier": ["district"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["district"]}], "status": true, "id": "9400ZZLUUPY1", "commonName": "Upney 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": "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": "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": "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": "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": "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": "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": "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": "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": "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"}], "children": [], "lat": 51.538371, "lon": 0.100045}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUUPY2", "modes": ["tube"], "icsCode": "1000244", "stopType": "NaptanRailAccessArea", "stationNaptan": "940GZZLUUPY", "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": "940GZZLUUPY", "lineIdentifier": ["district"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["district"]}], "status": true, "id": "9400ZZLUUPY2", "commonName": "Upney Station", "placeType": "StopPoint", "additionalProperties": [{"$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": "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": "Opening Time", "key": "SatFrom", "sourceSystemKey": "StaticObjects", "value": "13:30"}, {"$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": "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": "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": "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": "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": "Other Facilities", "sourceSystemKey": "StaticObjects", "value": "canopies over platform."}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Opening Time", "key": "SatTo", "sourceSystemKey": "StaticObjects", "value": "14:30"}], "children": [], "lat": 51.538371, "lon": 0.10003}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUUXB", "modes": ["tube"], "icsCode": "1000246", "stopType": "NaptanMetroAccessArea", "stationNaptan": "940GZZLUUXB", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "9400ZZLUUXB", "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": "Help Points", "sourceSystemKey": "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": "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": "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": "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": "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": "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": "Boarding Ramps", "sourceSystemKey": "StaticObjects", "value": "yes Metropolitan only"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, 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": "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": "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.546565, "lon": -0.477949}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUUXB1", "modes": ["tube"], "icsCode": "1000246", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUUXB", "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": "940GZZLUUXB", "lineIdentifier": ["piccadilly", "metropolitan"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["piccadilly", "metropolitan"]}], "status": true, "id": "9400ZZLUUXB1", "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": "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": "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": "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": "Help 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": "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": "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": "Uxbridge Station,London Underground Ltd.,High St,Uxbridge,Middx,UB8 1JZ"}, {"$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": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}], "children": [], "lat": 51.546807, "lon": -0.477191}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUUXB2", "modes": ["tube"], "icsCode": "1000246", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUUXB", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "9400ZZLUUXB2", "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": "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": "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": "Facility", "key": "Help 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": "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": "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": "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"}], "children": [], "lat": 51.546833, "lon": -0.477132}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUVIC", "modes": ["tube"], "icsCode": "1000248", "stopType": "NaptanMetroAccessArea", "stationNaptan": "940GZZLUVIC", "hubNaptanCode": "HUBVIC", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "9400ZZLUVIC", "commonName": "Victoria 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": "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": "Boarding Ramps", "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": "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": "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": "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": "Help Points", "sourceSystemKey": "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, taxi ranks outside station, 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": "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"}], "children": [], "lat": 51.496359, "lon": -0.143102}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUVIC1", "modes": ["tube"], "icsCode": "1000248", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUVIC", "hubNaptanCode": "HUBVIC", "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": "940GZZLUVIC", "lineIdentifier": ["district", "circle"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["district", "circle"]}], "status": true, "id": "9400ZZLUVIC1", "commonName": "Victoria 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": "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": "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": "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"}, {"$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": "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": "Help 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": "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": "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": "Payphones", "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"}], "children": [], "lat": 51.49645, "lon": -0.144899}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUVIC2", "modes": ["tube"], "icsCode": "1000248", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUVIC", "hubNaptanCode": "HUBVIC", "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": "940GZZLUVIC", "lineIdentifier": ["victoria"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["victoria"]}], "status": true, "id": "9400ZZLUVIC2", "commonName": "Victoria 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": "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": "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": "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": "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": "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": "Toilets", "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": "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"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}], "children": [], "lat": 51.49712, "lon": -0.14346}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUVIC3", "modes": ["tube"], "icsCode": "1000248", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUVIC", "hubNaptanCode": "HUBVIC", "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": "940GZZLUVIC", "lineIdentifier": ["victoria"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["victoria"]}], "status": true, "id": "9400ZZLUVIC3", "commonName": "Victoria 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": "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": "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": "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": "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": "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": "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": "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": "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": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Victoria Underground Station,London Underground Ltd.,Victoria St,London,SW1E 5ND"}], "children": [], "lat": 51.497031, "lon": -0.143536}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUVIC4", "modes": ["tube"], "icsCode": "1000248", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUVIC", "hubNaptanCode": "HUBVIC", "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": "940GZZLUVIC", "lineIdentifier": ["district", "circle"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["district", "circle"]}], "status": true, "id": "9400ZZLUVIC4", "commonName": "Victoria 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": "Facility", "key": "Help Points", "sourceSystemKey": "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": "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"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.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": "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": "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": "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": "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, 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": "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": "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.496969, "lon": -0.143596}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUVXL", "modes": ["tube"], "icsCode": "1000247", "stopType": "NaptanMetroAccessArea", "stationNaptan": "940GZZLUVXL", "hubNaptanCode": "HUBVXH", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "9400ZZLUVXL", "commonName": "Vauxhall 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": "Escalators", "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": "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": "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": "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": "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": "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": "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": "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"}], "children": [], "lat": 51.485743, "lon": -0.124204}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUVXL1", "modes": ["tube"], "icsCode": "1000247", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUVXL", "hubNaptanCode": "HUBVXH", "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": "940GZZLUVXL", "lineIdentifier": ["victoria"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["victoria"]}], "status": true, "id": "9400ZZLUVXL1", "commonName": "Vauxhall Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$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": "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": "1+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": "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"}, {"$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": "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": "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": "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": "Waiting Room", "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.486216, "lon": -0.12453}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUVXL2", "modes": ["tube"], "icsCode": "1000247", "stopType": "NaptanRailAccessArea", "stationNaptan": "940GZZLUVXL", "hubNaptanCode": "HUBVXH", "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": "940GZZLUVXL", "lineIdentifier": ["victoria"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["victoria"]}], "status": true, "id": "9400ZZLUVXL2", "commonName": "Vauxhall", "placeType": "StopPoint", "additionalProperties": [{"$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": "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": "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, 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": "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": "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": "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": "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": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}], "children": [], "lat": 51.486216, "lon": -0.124516}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUWAF", "modes": ["tube"], "icsCode": "1000255", "stopType": "NaptanMetroAccessArea", "stationNaptan": "940GZZLUWAF", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "9400ZZLUWAF", "commonName": "Watford 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": "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": "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": "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": "7 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": "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": "Car park", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$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": "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": "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.657446, "lon": -0.417377}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUWAF1", "modes": ["tube"], "icsCode": "1000255", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUWAF", "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": "940GZZLUWAF", "lineIdentifier": ["metropolitan"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["metropolitan"]}], "status": true, "id": "9400ZZLUWAF1", "commonName": "Watford 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": "Ticket Halls", "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": "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": "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": "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": "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": "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": "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": "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": "7"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "0"}], "children": [], "lat": 51.657327, "lon": -0.41861}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUWBN", "modes": ["tube"], "icsCode": "1000260", "stopType": "NaptanMetroAccessArea", "stationNaptan": "940GZZLUWBN", "hubNaptanCode": "HUBWBP", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "9400ZZLUWBN", "commonName": "West Brompton 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": "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"}, {"$type": "Tfl.Api.Presentation.Entities.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)."}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.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": "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": "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": "Gates", "sourceSystemKey": "StaticObjects", "value": "3"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "2"}], "children": [], "lat": 51.487268, "lon": -0.195599}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUWBN1", "modes": ["tube"], "icsCode": "1000260", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUWBN", "hubNaptanCode": "HUBWBP", "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": "940GZZLUWBN", "lineIdentifier": ["district"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["district"]}], "status": true, "id": "9400ZZLUWBN1", "commonName": "West Brompton 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": "Help Points", "sourceSystemKey": "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": "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": "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": "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": "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": "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"}], "children": [], "lat": 51.486962, "lon": -0.195006}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUWBN2", "modes": ["tube"], "icsCode": "1000260", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUWBN", "hubNaptanCode": "HUBWBP", "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": "940GZZLUWBN", "lineIdentifier": ["district"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["district"]}], "status": true, "id": "9400ZZLUWBN2", "commonName": "West Brompton 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": "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": "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": "Facility", "key": "Photo 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": "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": "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": "Car park", "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.486916, "lon": -0.194921}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUWCY", "modes": ["tube"], "icsCode": "1000269", "stopType": "NaptanMetroAccessArea", "stationNaptan": "940GZZLUWCY", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "9400ZZLUWCY", "commonName": "White City 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": "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": "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": "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": "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": "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": "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.511959, "lon": -0.224297}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUWCY1", "modes": ["tube"], "icsCode": "1000269", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUWCY", "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": "940GZZLUWCY", "lineIdentifier": ["central"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["central"]}], "status": true, "id": "9400ZZLUWCY1", "commonName": "White City 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": "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": "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": "White City Station,London Underground Ltd.,Wood Lane,London,W12 7RH"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.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": "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": "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": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}], "children": [], "lat": 51.511991, "lon": -0.224022}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUWCY2", "modes": ["tube"], "icsCode": "1000269", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUWCY", "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": "940GZZLUWCY", "lineIdentifier": ["central"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["central"]}], "status": true, "id": "9400ZZLUWCY2", "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": "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": "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": "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": "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": "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": "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": "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.511967, "lon": -0.224239}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUWFN", "modes": ["tube"], "icsCode": "1000261", "stopType": "NaptanMetroAccessArea", "stationNaptan": "940GZZLUWFN", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "9400ZZLUWFN", "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": "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 Finchley Station,London Underground Ltd.,Nether Street,London,N3 1NT"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.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": "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": "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": "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": "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": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}], "children": [], "lat": 51.609426, "lon": -0.188362}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUWFN1", "modes": ["tube"], "icsCode": "1000261", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUWFN", "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": "940GZZLUWFN", "lineIdentifier": ["northern"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["northern"]}], "status": true, "id": "9400ZZLUWFN1", "commonName": "West Finchley 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": "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": "Boarding Ramps", "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": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "4"}, {"$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": "Help Points", "sourceSystemKey": "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": "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"}], "children": [], "lat": 51.60941, "lon": -0.188449}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUWFN2", "modes": ["tube"], "icsCode": "1000261", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUWFN", "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": "940GZZLUWFN", "lineIdentifier": ["northern"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["northern"]}], "status": true, "id": "9400ZZLUWFN2", "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": "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": "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": "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": "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": "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"}], "children": [], "lat": 51.609356, "lon": -0.188466}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUWHM", "modes": ["tube"], "icsCode": "1000262", "stopType": "NaptanMetroAccessArea", "stationNaptan": "940GZZLUWHM", "hubNaptanCode": "HUBWEH", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "9400ZZLUWHM", "commonName": "West Ham 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": "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": "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": "2/3"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "West Ham Underground Station,London Underground Ltd.,Manor Rd,London,E15 3BN"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.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": "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": "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": "Photo 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.528136, "lon": 0.005055}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUWHM1", "indicator": "Platform 1", "stopLetter": "1", "modes": ["tube"], "icsCode": "1000262", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUWHM", "hubNaptanCode": "HUBWEH", "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": "940GZZLUWHM", "lineIdentifier": ["district", "hammersmith-city"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["district", "hammersmith-city"]}], "status": true, "id": "9400ZZLUWHM1", "commonName": "West Ham Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "West Ham Underground Station,London Underground Ltd.,Manor Rd,London,E15 3BN"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.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": "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": "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": "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": "Photo 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": "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": "Escalators", "sourceSystemKey": "StaticObjects", "value": "6"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "2"}], "children": [], "lat": 51.528558, "lon": 0.005593}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUWHM2", "indicator": "Platform 2", "stopLetter": "2", "modes": ["tube"], "icsCode": "1000262", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUWHM", "hubNaptanCode": "HUBWEH", "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": "940GZZLUWHM", "lineIdentifier": ["jubilee"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["jubilee"]}], "status": true, "id": "9400ZZLUWHM2", "commonName": "West Ham 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": "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": "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": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "West Ham Underground Station,London Underground Ltd.,Manor Rd,London,E15 3BN"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.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": "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": "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": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "0"}], "children": [], "lat": 51.528648, "lon": 0.005597}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUWHM3", "indicator": "Platform 5", "stopLetter": "5", "modes": ["tube"], "icsCode": "1000262", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUWHM", "hubNaptanCode": "HUBWEH", "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": "940GZZLUWHM", "lineIdentifier": ["district", "hammersmith-city"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["district", "hammersmith-city"]}], "status": true, "id": "9400ZZLUWHM3", "commonName": "West Ham 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": "Facility", "key": "Toilets", "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": "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": "Photo 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": "West Ham Underground Station,London Underground Ltd.,Manor Rd,London,E15 3BN"}, {"$type": "Tfl.Api.Presentation.Entities.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/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": "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.527511, "lon": 0.004264}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUWHM4", "indicator": "Platform 6", "stopLetter": "6", "modes": ["tube"], "icsCode": "1000262", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUWHM", "hubNaptanCode": "HUBWEH", "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": "940GZZLUWHM", "lineIdentifier": ["jubilee"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["jubilee"]}], "status": true, "id": "9400ZZLUWHM4", "commonName": "West Ham 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": "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": "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": "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/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": "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": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "West Ham Underground Station,London Underground Ltd.,Manor Rd,London,E15 3BN"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}], "children": [], "lat": 51.527514, "lon": 0.00412}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUWHP", "modes": ["tube"], "icsCode": "1000263", "stopType": "NaptanMetroAccessArea", "stationNaptan": "940GZZLUWHP", "hubNaptanCode": "HUBWHD", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "9400ZZLUWHP", "commonName": "West Hampstead 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": "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": "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": "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": "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": "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": "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.546638, "lon": -0.191059}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUWHP1", "modes": ["tube"], "icsCode": "1000263", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUWHP", "hubNaptanCode": "HUBWHD", "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": "940GZZLUWHP", "lineIdentifier": ["jubilee"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["jubilee"]}], "status": true, "id": "9400ZZLUWHP1", "commonName": "West Hampstead 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": "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": "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": "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": "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": "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": "Escalators", "sourceSystemKey": "StaticObjects", "value": "0"}], "children": [], "lat": 51.5468, "lon": -0.190475}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUWHP2", "modes": ["tube"], "icsCode": "1000263", "stopType": "NaptanRailAccessArea", "stationNaptan": "940GZZLUWHP", "hubNaptanCode": "HUBWHD", "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": "940GZZLUWHP", "lineIdentifier": ["jubilee"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["jubilee"]}], "status": true, "id": "9400ZZLUWHP2", "commonName": "West Hampstead 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": "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": "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": "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": "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": "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": "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": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$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"}], "children": [], "lat": 51.546809, "lon": -0.190475}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUWHW", "modes": ["tube"], "icsCode": "1000264", "stopType": "NaptanMetroAccessArea", "stationNaptan": "940GZZLUWHW", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "9400ZZLUWHW", "commonName": "West Harrow Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$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": "Gates", "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": "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": "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": "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": "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"}], "children": [], "lat": 51.57971, "lon": -0.3534}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUWHW1", "modes": ["tube"], "icsCode": "1000264", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUWHW", "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": "940GZZLUWHW", "lineIdentifier": ["metropolitan"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["metropolitan"]}], "status": true, "id": "9400ZZLUWHW1", "commonName": "West Harrow 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": "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": "5"}, {"$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": "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": "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": "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": "Payphones", "sourceSystemKey": "StaticObjects", "value": "1"}], "children": [], "lat": 51.579811, "lon": -0.353497}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUWHW2", "modes": ["tube"], "icsCode": "1000264", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUWHW", "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": "940GZZLUWHW", "lineIdentifier": ["metropolitan"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["metropolitan"]}], "status": true, "id": "9400ZZLUWHW2", "commonName": "West Harrow 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": "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": "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": "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": "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": "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"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.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"}], "children": [], "lat": 51.579767, "lon": -0.353585}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUWIG", "modes": ["tube"], "icsCode": "1000270", "stopType": "NaptanMetroAccessArea", "stationNaptan": "940GZZLUWIG", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "9400ZZLUWIG", "commonName": "Willesden Green 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": "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": "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": "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": "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": "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": "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": "Help Points", "sourceSystemKey": "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": "0"}], "children": [], "lat": 51.549146, "lon": -0.221537}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUWIG1", "modes": ["tube"], "icsCode": "1000270", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUWIG", "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": "940GZZLUWIG", "lineIdentifier": ["jubilee"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["jubilee"]}], "status": true, "id": "9400ZZLUWIG1", "commonName": "Willesden Green 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": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$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": "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": "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": "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": "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": "2+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": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}], "children": [], "lat": 51.549348, "lon": -0.221846}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUWIG2", "modes": ["tube"], "icsCode": "1000270", "stopType": "NaptanRailAccessArea", "stationNaptan": "940GZZLUWIG", "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": "940GZZLUWIG", "lineIdentifier": ["jubilee"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["jubilee"]}], "status": true, "id": "9400ZZLUWIG2", "commonName": "Willesden Green 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": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$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": "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": "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": "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": "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": "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.549348, "lon": -0.221846}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUWIM", "modes": ["tube"], "icsCode": "1000272", "stopType": "NaptanMetroAccessArea", "stationNaptan": "940GZZLUWIM", "hubNaptanCode": "HUBWIM", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "9400ZZLUWIM", "commonName": "Wimbledon 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": "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": "Payphones", "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)"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.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": "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": "Wimbledon,London Underground Ltd.,The Broadway,London,SW19 7NL"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.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"}], "children": [], "lat": 51.421207, "lon": -0.206573}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUWIM1", "modes": ["tube"], "icsCode": "1000272", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUWIM", "hubNaptanCode": "HUBWIM", "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": "940GZZLUWIM", "lineIdentifier": ["district"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["district"]}], "status": true, "id": "9400ZZLUWIM1", "commonName": "Wimbledon Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Wimbledon,London Underground Ltd.,The Broadway,London,SW19 7NL"}, {"$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": "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": "Toilets", "sourceSystemKey": "StaticObjects", "value": "yes (male, female)"}, {"$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": "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": "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": "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": "Lifts", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "0"}], "children": [], "lat": 51.421342, "lon": -0.206625}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUWIP", "modes": ["tube"], "icsCode": "1000273", "stopType": "NaptanMetroAccessArea", "stationNaptan": "940GZZLUWIP", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "9400ZZLUWIP", "commonName": "Wimbledon 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": "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": "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": "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": "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": "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": "3"}], "children": [], "lat": 51.434573, "lon": -0.199719}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUWIP1", "modes": ["tube"], "icsCode": "1000273", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUWIP", "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": "940GZZLUWIP", "lineIdentifier": ["district"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["district"]}], "status": true, "id": "9400ZZLUWIP1", "commonName": "Wimbledon Park 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": "no"}, {"$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": "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": "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": "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.434323, "lon": -0.199311}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUWJN", "modes": ["tube"], "icsCode": "1000271", "stopType": "NaptanMetroAccessArea", "stationNaptan": "940GZZLUWJN", "hubNaptanCode": "HUBWIJ", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "9400ZZLUWJN", "commonName": "Willesden Junction 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": "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": "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": "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": "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": "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": "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": "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": "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"}], "children": [], "lat": 51.532259, "lon": -0.244283}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUWJN1", "modes": ["tube"], "icsCode": "1000271", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUWJN", "hubNaptanCode": "HUBWIJ", "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": "940GZZLUWJN", "lineIdentifier": ["bakerloo"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["bakerloo"]}], "status": true, "id": "9400ZZLUWJN1", "commonName": "Willesden Junction 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": "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": "Willesden Junction,London Overground Ltd.,Station Approach,Harlesden,NW10 4UY"}, {"$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": "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": "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": "Lifts", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$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": "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": "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": "18: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": "Car park", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$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": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "no"}], "children": [], "lat": 51.532496, "lon": -0.24449}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUWJN2", "modes": ["tube"], "icsCode": "1000271", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUWJN", "hubNaptanCode": "HUBWIJ", "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": "940GZZLUWJN", "lineIdentifier": ["bakerloo"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["bakerloo"]}], "status": true, "id": "9400ZZLUWJN2", "commonName": "Willesden Junction 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": "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": "Opening Time", "key": "MonFriFrom", "sourceSystemKey": "StaticObjects", "value": "06: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": "Opening Time", "key": "SunFrom", "sourceSystemKey": "StaticObjects", "value": "09:15"}, {"$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": "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": "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": "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": "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": "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": "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": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}], "children": [], "lat": 51.532398, "lon": -0.244537}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUWJN3", "modes": ["tube"], "icsCode": "1000271", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUWJN", "hubNaptanCode": "HUBWIJ", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "9400ZZLUWJN3", "commonName": "Willesden Junction 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": "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": "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": "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": "Help Points", "sourceSystemKey": "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": "09:15"}, {"$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": "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 London Overground only"}, {"$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": "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": "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": "Opening Time", "key": "MonFriFrom", "sourceSystemKey": "StaticObjects", "value": "06:30"}], "children": [], "lat": 51.532325, "lon": -0.244468}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUWKA", "modes": ["tube"], "icsCode": "1000253", "stopType": "NaptanMetroAccessArea", "stationNaptan": "940GZZLUWKA", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "9400ZZLUWKA", "commonName": "Warwick Avenue 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": "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": "Photo 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": "Warwick Avenue Station,London Underground Ltd.,Warwick Avenue,London,W9 2PT"}, {"$type": "Tfl.Api.Presentation.Entities.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": "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": "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": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}], "children": [], "lat": 51.523263, "lon": -0.183783}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUWKA1", "modes": ["tube"], "icsCode": "1000253", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUWKA", "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": "940GZZLUWKA", "lineIdentifier": ["bakerloo"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["bakerloo"]}], "status": true, "id": "9400ZZLUWKA1", "commonName": "Warwick Avenue Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$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": "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": "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": "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": "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": "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": "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.522973, "lon": -0.183103}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUWKA2", "modes": ["tube"], "icsCode": "1000253", "stopType": "NaptanRailAccessArea", "stationNaptan": "940GZZLUWKA", "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": "940GZZLUWKA", "lineIdentifier": ["bakerloo"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["bakerloo"]}], "status": true, "id": "9400ZZLUWKA2", "commonName": "Warwick Avenue", "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": "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": "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": "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": "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": "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": "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": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "no"}], "children": [], "lat": 51.522973, "lon": -0.183103}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUWKN", "modes": ["tube"], "icsCode": "1000265", "stopType": "NaptanMetroAccessArea", "stationNaptan": "940GZZLUWKN", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "9400ZZLUWKN", "commonName": "West Kensington 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": "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": "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": "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": "Help 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": "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, post office style queuing for tickets, routeways platform to ticket hall."}], "children": [], "lat": 51.490459, "lon": -0.206636}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUWKN1", "modes": ["tube"], "icsCode": "1000265", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUWKN", "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": "940GZZLUWKN", "lineIdentifier": ["district"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["district"]}], "status": true, "id": "9400ZZLUWKN1", "commonName": "West Kensington 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": "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": "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": "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": "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": "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": "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": "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"}], "children": [], "lat": 51.49083, "lon": -0.20619}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUWKN2", "modes": ["tube"], "icsCode": "1000265", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUWKN", "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": "940GZZLUWKN", "lineIdentifier": ["district"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["district"]}], "status": true, "id": "9400ZZLUWKN2", "commonName": "West Kensington 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": "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": "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": "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": "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": "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": "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": "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.490846, "lon": -0.206088}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUWLA", "modes": ["tube"], "icsCode": "1000278", "stopType": "NaptanMetroAccessArea", "stationNaptan": "940GZZLUWLA", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "9400ZZLUWLA", "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": "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": "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": "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": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.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": "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": "Lifts", "sourceSystemKey": "StaticObjects", "value": "2"}], "children": [], "lat": 51.509669, "lon": -0.22453}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUWLA1", "modes": ["tube"], "icsCode": "1000278", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUWLA", "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": "940GZZLUWLA", "lineIdentifier": ["circle", "hammersmith-city"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["circle", "hammersmith-city"]}], "status": true, "id": "9400ZZLUWLA1", "commonName": "Wood Lane 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": "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": "Car park", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$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": "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": "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": "Toilets", "sourceSystemKey": "StaticObjects", "value": "no"}], "children": [], "lat": 51.509658, "lon": -0.224401}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUWLA2", "modes": ["tube"], "icsCode": "1000278", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUWLA", "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": "940GZZLUWLA", "lineIdentifier": ["circle", "hammersmith-city"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["circle", "hammersmith-city"]}], "status": true, "id": "9400ZZLUWLA2", "commonName": "Wood Lane 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": "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": "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": "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": "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": "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": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}], "children": [], "lat": 51.509639, "lon": -0.224329}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUWLO", "modes": ["tube"], "icsCode": "1000254", "stopType": "NaptanMetroAccessArea", "stationNaptan": "940GZZLUWLO", "hubNaptanCode": "HUBWAT", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "9400ZZLUWLO", "commonName": "Waterloo 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": "Escalators", "sourceSystemKey": "StaticObjects", "value": "23"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.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": "46"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo 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": "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": "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": "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": "Help 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": "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": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "3"}], "children": [], "lat": 51.503299, "lon": -0.11478}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUWLO1", "modes": ["tube"], "icsCode": "1000254", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUWLO", "hubNaptanCode": "HUBWAT", "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": "940GZZLUWLO", "lineIdentifier": ["bakerloo"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["bakerloo"]}], "status": true, "id": "9400ZZLUWLO1", "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": "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": "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": "Help Points", "sourceSystemKey": "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": "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": "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": "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": "Ticket Halls", "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": "yes"}], "children": [], "lat": 51.503097, "lon": -0.11512}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUWLO2", "modes": ["tube"], "icsCode": "1000254", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUWLO", "hubNaptanCode": "HUBWAT", "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": "940GZZLUWLO", "lineIdentifier": ["bakerloo"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["bakerloo"]}], "status": true, "id": "9400ZZLUWLO2", "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": "Photo 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": "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": "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": "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": "Help Points", "sourceSystemKey": "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": "Payphones", "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": "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.503052, "lon": -0.115093}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUWLO3", "modes": ["tube"], "icsCode": "1000254", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUWLO", "hubNaptanCode": "HUBWAT", "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": "940GZZLUWLO", "lineIdentifier": ["northern"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["northern"]}], "status": true, "id": "9400ZZLUWLO3", "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": "Facility", "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": "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": "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": "Help 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": "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": "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": "Escalators", "sourceSystemKey": "StaticObjects", "value": "23"}, {"$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": "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": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}], "children": [], "lat": 51.503189, "lon": -0.113574}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUWLO4", "modes": ["tube"], "icsCode": "1000254", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUWLO", "hubNaptanCode": "HUBWAT", "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": "940GZZLUWLO", "lineIdentifier": ["jubilee"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["jubilee"]}], "status": true, "id": "9400ZZLUWLO4", "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": "Photo 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": "Waterloo Underground Station,London Underground Ltd.,York Rd,London,SE1 7ND"}, {"$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": "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, 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": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$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": "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": "0 on platforms, 0 in ticket halls, 0 elsewhere"}], "children": [], "lat": 51.503333, "lon": -0.113021}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUWLO5", "modes": ["tube"], "icsCode": "1000254", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUWLO", "hubNaptanCode": "HUBWAT", "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": "940GZZLUWLO", "lineIdentifier": ["waterloo-city"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["waterloo-city"]}], "status": true, "id": "9400ZZLUWLO5", "commonName": "Waterloo 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": "Payphones", "sourceSystemKey": "StaticObjects", "value": "6"}, {"$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": "Gates", "sourceSystemKey": "StaticObjects", "value": "46"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo 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": "Waterloo Underground Station,London Underground Ltd.,York Rd,London,SE1 7ND"}, {"$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": "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": "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, post office style queuing for tickets, routeways platform to ticket hall."}], "children": [], "lat": 51.502683, "lon": -0.112875}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUWLO6", "modes": ["tube"], "icsCode": "1000254", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUWLO", "hubNaptanCode": "HUBWAT", "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": "940GZZLUWLO", "lineIdentifier": ["waterloo-city"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["waterloo-city"]}], "status": true, "id": "9400ZZLUWLO6", "commonName": "Waterloo Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$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": "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": "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": "Payphones", "sourceSystemKey": "StaticObjects", "value": "6"}, {"$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": "Help Points", "sourceSystemKey": "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": "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": "23"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "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.502738, "lon": -0.11293}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUWOF", "modes": ["tube"], "icsCode": "1000274", "stopType": "NaptanMetroAccessArea", "stationNaptan": "940GZZLUWOF", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "9400ZZLUWOF", "commonName": "Woodford Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$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": "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": "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": "Help Points", "sourceSystemKey": "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": "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": "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": "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": "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": "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": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "yes"}], "children": [], "lat": 51.606899, "lon": 0.03397}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUWOF1", "modes": ["tube"], "icsCode": "1000274", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUWOF", "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": "940GZZLUWOF", "lineIdentifier": ["central"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["central"]}], "status": true, "id": "9400ZZLUWOF1", "commonName": "Woodford 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": "post office style queuing for tickets, subway to street."}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, 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": "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": "Payphones", "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": "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": "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": "Ticket Halls", "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": "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": "Woodford Station,London Underground Ltd.,Snakes Lane,Woodford Green,Essex"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}], "children": [], "lat": 51.607181, "lon": 0.033781}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUWOF2", "modes": ["tube"], "icsCode": "1000274", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUWOF", "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": "940GZZLUWOF", "lineIdentifier": ["central"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["central"]}], "status": true, "id": "9400ZZLUWOF2", "commonName": "Woodford 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": "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": "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": "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": "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": "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": "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": "Help Points", "sourceSystemKey": "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": "Woodford Station,London Underground Ltd.,Snakes Lane,Woodford Green,Essex"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.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"}], "children": [], "lat": 51.607128, "lon": 0.03375}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUWOG", "modes": ["tube"], "icsCode": "1000275", "stopType": "NaptanMetroAccessArea", "stationNaptan": "940GZZLUWOG", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "9400ZZLUWOG", "commonName": "Wood Green 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": "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": "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": "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": "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": "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": "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": "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, 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.597479, "lon": -0.109886}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUWOG1", "modes": ["tube"], "icsCode": "1000275", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUWOG", "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": "940GZZLUWOG", "lineIdentifier": ["piccadilly"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["piccadilly"]}], "status": true, "id": "9400ZZLUWOG1", "commonName": "Wood Green Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$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": "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": "Help Points", "sourceSystemKey": "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"}, {"$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": "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": "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": "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": "Gates", "sourceSystemKey": "StaticObjects", "value": "7"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "no"}], "children": [], "lat": 51.597437, "lon": -0.11009}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUWOG2", "modes": ["tube"], "icsCode": "1000275", "stopType": "NaptanRailAccessArea", "stationNaptan": "940GZZLUWOG", "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": "940GZZLUWOG", "lineIdentifier": ["piccadilly"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["piccadilly"]}], "status": true, "id": "9400ZZLUWOG2", "commonName": "Wood Green Station", "placeType": "StopPoint", "additionalProperties": [{"$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": "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": "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": "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": "Help Points", "sourceSystemKey": "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": "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": "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": "WiFi", "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.597428, "lon": -0.110091}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUWOP", "modes": ["tube"], "icsCode": "1000276", "stopType": "NaptanMetroAccessArea", "stationNaptan": "940GZZLUWOP", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "9400ZZLUWOP", "commonName": "Woodside 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": "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": "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": "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": "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": "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": "Payphones", "sourceSystemKey": "StaticObjects", "value": "0"}], "children": [], "lat": 51.618014, "lon": -0.18542}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUWOP1", "modes": ["tube"], "icsCode": "1000276", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUWOP", "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": "940GZZLUWOP", "lineIdentifier": ["northern"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["northern"]}], "status": true, "id": "9400ZZLUWOP1", "commonName": "Woodside 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": "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"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.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": "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": "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": "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": "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.617783, "lon": -0.185602}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUWOP2", "modes": ["tube"], "icsCode": "1000276", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUWOP", "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": "940GZZLUWOP", "lineIdentifier": ["northern"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["northern"]}], "status": true, "id": "9400ZZLUWOP2", "commonName": "Woodside 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": "Escalators", "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": "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": "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": "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": "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"}], "children": [], "lat": 51.61787, "lon": -0.185454}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUWPL", "modes": ["tube"], "icsCode": "1000268", "stopType": "NaptanMetroAccessArea", "stationNaptan": "940GZZLUWPL", "hubNaptanCode": "HUBZWL", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "9400ZZLUWPL", "commonName": "Whitechapel 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": "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": "Help Points", "sourceSystemKey": "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": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.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": "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": "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": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "2"}], "children": [], "lat": 51.519518, "lon": -0.059971}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUWPL1", "modes": ["tube"], "icsCode": "1000268", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUWPL", "hubNaptanCode": "HUBZWL", "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": "940GZZLUWPL", "lineIdentifier": ["hammersmith-city", "district"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["hammersmith-city", "district"]}], "status": true, "id": "9400ZZLUWPL1", "commonName": "Whitechapel 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, 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": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$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": "Help 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": "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": "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": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}], "children": [], "lat": 51.519398, "lon": -0.060884}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUWPL2", "modes": ["tube"], "icsCode": "1000268", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUWPL", "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"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "940GZZLUWPL", "lineIdentifier": ["district", "hammersmith-city"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["district", "hammersmith-city"]}], "status": true, "id": "9400ZZLUWPL2", "commonName": "Whitechapel 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": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.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, 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": "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": "Whitechapel Station,London Underground Ltd.,277 Whitechapel Rd,London,E1 1BY"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.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"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.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": "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.519414, "lon": -0.060797}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUWPL3", "modes": ["tube"], "stopType": "NaptanMetroPlatform", "lines": [], "lineGroup": [], "lineModeGroups": [], "id": "9400ZZLUWPL3", "commonName": "Whitechapel Underground Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.519715, "lon": -0.05992}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUWPL4", "modes": ["tube"], "stopType": "NaptanMetroPlatform", "lines": [], "lineGroup": [], "lineModeGroups": [], "id": "9400ZZLUWPL4", "commonName": "Whitechapel Underground Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.519659, "lon": -0.05985}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUWR1", "modes": ["tube"], "stopType": "NaptanMetroPlatform", "lines": [], "lineGroup": [], "lineModeGroups": [], "id": "9400ZZLUWR1", "commonName": "Bow Road Underground Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.526956, "lon": -0.025026}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUWRP", "modes": ["tube"], "icsCode": "1000267", "stopType": "NaptanMetroAccessArea", "stationNaptan": "940GZZLUWRP", "hubNaptanCode": "HUBWRU", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "9400ZZLUWRP", "commonName": "West Ruislip 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": "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": "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": "Toilets", "sourceSystemKey": "StaticObjects", "value": "yes (male, female)"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "West Ruislip Station,London Underground Ltd.,Ickenham Rd,West Ruislip,Middlesex"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.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, 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": "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": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "6"}], "children": [], "lat": 51.569688, "lon": -0.437886}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUWRP1", "modes": ["tube"], "icsCode": "1000267", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUWRP", "hubNaptanCode": "HUBWRU", "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": "940GZZLUWRP", "lineIdentifier": ["central"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["central"]}], "status": true, "id": "9400ZZLUWRP1", "commonName": "West Ruislip 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": "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": "Bridge", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "West Ruislip Station,London Underground Ltd.,Ickenham Rd,West Ruislip,Middlesex"}, {"$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 (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": "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": "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"}], "children": [], "lat": 51.56951, "lon": -0.437343}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUWRR", "modes": ["tube"], "icsCode": "1000252", "stopType": "NaptanMetroAccessArea", "stationNaptan": "940GZZLUWRR", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "9400ZZLUWRR", "commonName": "Warren Street 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": "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, 5 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": "Gates", "sourceSystemKey": "StaticObjects", "value": "10"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.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": "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": "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": "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": "Car park", "sourceSystemKey": "StaticObjects", "value": "no"}], "children": [], "lat": 51.524951, "lon": -0.138321}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUWRR1", "modes": ["tube"], "icsCode": "1000252", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUWRR", "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": "940GZZLUWRR", "lineIdentifier": ["northern"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["northern"]}], "status": true, "id": "9400ZZLUWRR1", "commonName": "Warren Street 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": "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": "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": "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": "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": "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": "Toilets", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$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": "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": "1"}], "children": [], "lat": 51.524331, "lon": -0.137784}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUWRR2", "modes": ["tube"], "icsCode": "1000252", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUWRR", "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": "940GZZLUWRR", "lineIdentifier": ["northern"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["northern"]}], "status": true, "id": "9400ZZLUWRR2", "commonName": "Warren 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": "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, 5 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": "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": "10"}, {"$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": "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": "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": "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"}], "children": [], "lat": 51.524276, "lon": -0.137757}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUWRR3", "modes": ["tube"], "icsCode": "1000252", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUWRR", "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": "940GZZLUWRR", "lineIdentifier": ["victoria"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["victoria"]}], "status": true, "id": "9400ZZLUWRR3", "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": "Facility", "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": "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": "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": "Escalators", "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": "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": "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": "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": "Gates", "sourceSystemKey": "StaticObjects", "value": "10"}], "children": [], "lat": 51.524084, "lon": -0.138688}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUWRR4", "modes": ["tube"], "icsCode": "1000252", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUWRR", "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": "940GZZLUWRR", "lineIdentifier": ["victoria"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["victoria"]}], "status": true, "id": "9400ZZLUWRR4", "commonName": "Warren Street 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": "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": "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": "Escalators", "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": "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": "1"}, {"$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": "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": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "no"}], "children": [], "lat": 51.524031, "lon": -0.138719}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUWSD", "modes": ["tube"], "icsCode": "1000250", "stopType": "NaptanMetroAccessArea", "stationNaptan": "940GZZLUWSD", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "9400ZZLUWSD", "commonName": "Wanstead 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": "Escalators", "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": "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": "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": "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": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "4"}, {"$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"}], "children": [], "lat": 51.575501, "lon": 0.028527}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUWSD1", "modes": ["tube"], "icsCode": "1000250", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUWSD", "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": "940GZZLUWSD", "lineIdentifier": ["central"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["central"]}], "status": true, "id": "9400ZZLUWSD1", "commonName": "Wanstead 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": "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": "Wanstead Underground Station,London Underground Ltd.,The Green,London,E11 2NT"}, {"$type": "Tfl.Api.Presentation.Entities.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": "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": "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": "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": "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.575663, "lon": 0.029069}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUWSD2", "modes": ["tube"], "icsCode": "1000250", "stopType": "NaptanRailAccessArea", "stationNaptan": "940GZZLUWSD", "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": "940GZZLUWSD", "lineIdentifier": ["central"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["central"]}], "status": true, "id": "9400ZZLUWSD2", "commonName": "Wanstead 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": "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": "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": "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": "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": "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": "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": "Payphones", "sourceSystemKey": "StaticObjects", "value": "0"}], "children": [], "lat": 51.575672, "lon": 0.029069}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUWSM", "modes": ["tube"], "icsCode": "1000266", "stopType": "NaptanMetroAccessArea", "stationNaptan": "940GZZLUWSM", "hubNaptanCode": "HUBWSM", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "9400ZZLUWSM", "commonName": "Westminster 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": "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": "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": "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": "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 Circle and District lines only"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, 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": "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": "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": "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": "4"}], "children": [], "lat": 51.50132, "lon": -0.124861}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUWSM1", "modes": ["tube"], "icsCode": "1000266", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUWSM", "hubNaptanCode": "HUBWSM", "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": "940GZZLUWSM", "lineIdentifier": ["district", "circle"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["district", "circle"]}], "status": true, "id": "9400ZZLUWSM1", "commonName": "Westminster 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": "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": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "4"}, {"$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": "Facility", "key": "WiFi", "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": "Facility", "key": "Help 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": "Westminster Station,London Underground Ltd.,Bridge St,London,SW1A 2JR"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.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": "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": "15"}], "children": [], "lat": 51.501284, "lon": -0.124877}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUWSM2", "modes": ["tube"], "icsCode": "1000266", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUWSM", "hubNaptanCode": "HUBWSM", "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": "940GZZLUWSM", "lineIdentifier": ["circle", "district"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["circle", "district"]}], "status": true, "id": "9400ZZLUWSM2", "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": "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": "Help 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": "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": "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": "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": "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": "Euro Cash Machines", "sourceSystemKey": "StaticObjects", "value": "yes"}], "children": [], "lat": 51.501185, "lon": -0.124838}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUWSM3", "modes": ["tube"], "icsCode": "1000266", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUWSM", "hubNaptanCode": "HUBWSM", "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": "940GZZLUWSM", "lineIdentifier": ["jubilee"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["jubilee"]}], "status": true, "id": "9400ZZLUWSM3", "commonName": "Westminster 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": "Boarding Ramps", "sourceSystemKey": "StaticObjects", "value": "yes Circle and District lines 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": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$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": "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": "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": "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": "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": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$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": "subway to street, routeways platform to ticket hall."}], "children": [], "lat": 51.501004, "lon": -0.124773}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUWSM4", "modes": ["tube"], "icsCode": "1000266", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUWSM", "hubNaptanCode": "HUBWSM", "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": "940GZZLUWSM", "lineIdentifier": ["jubilee"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["jubilee"]}], "status": true, "id": "9400ZZLUWSM4", "commonName": "Westminster 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": "17"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.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": "4"}, {"$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": "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": "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": "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": "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"}], "children": [], "lat": 51.501006, "lon": -0.124932}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUWSP", "modes": ["tube"], "icsCode": "1000259", "stopType": "NaptanMetroAccessArea", "stationNaptan": "940GZZLUWSP", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "9400ZZLUWSP", "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": "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": "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": "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": "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": "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": "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.52111, "lon": -0.201065}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUWSP1", "modes": ["tube"], "icsCode": "1000259", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUWSP", "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": "940GZZLUWSP", "lineIdentifier": ["circle", "hammersmith-city"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["circle", "hammersmith-city"]}], "status": true, "id": "9400ZZLUWSP1", "commonName": "Westbourne Park 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": "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": "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": "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": "Westbourne Park Station,London Underground Ltd.,Western Rd,London,W11 1AB"}, {"$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": "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": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "2"}], "children": [], "lat": 51.520984, "lon": -0.201647}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUWSP2", "modes": ["tube"], "icsCode": "1000259", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUWSP", "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": "940GZZLUWSP", "lineIdentifier": ["circle", "hammersmith-city"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["circle", "hammersmith-city"]}], "status": true, "id": "9400ZZLUWSP2", "commonName": "Westbourne 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": "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": "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"}, {"$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": "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": "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": "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.520973, "lon": -0.201546}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUWTA", "modes": ["tube"], "icsCode": "1000258", "stopType": "NaptanMetroAccessArea", "stationNaptan": "940GZZLUWTA", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "9400ZZLUWTA", "commonName": "West Acton 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": "3"}, {"$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": "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": "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": "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": "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": "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"}], "children": [], "lat": 51.518001, "lon": -0.28098}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUWTA1", "modes": ["tube"], "icsCode": "1000258", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUWTA", "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": "940GZZLUWTA", "lineIdentifier": ["central"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["central"]}], "status": true, "id": "9400ZZLUWTA1", "commonName": "West Acton 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": "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": "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": "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": "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": "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": "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": "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.518194, "lon": -0.280641}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUWTA2", "modes": ["tube"], "icsCode": "1000258", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUWTA", "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": "940GZZLUWTA", "lineIdentifier": ["central"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["central"]}], "status": true, "id": "9400ZZLUWTA2", "commonName": "West Acton 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": "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": "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"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.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": "Help Points", "sourceSystemKey": "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": "West Acton Station,London Underground Ltd.,Princes Gardens,London,W3 0LG"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}], "children": [], "lat": 51.518159, "lon": -0.2807}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUWWL", "modes": ["tube"], "icsCode": "1000249", "stopType": "NaptanMetroAccessArea", "stationNaptan": "940GZZLUWWL", "hubNaptanCode": "HUBWHC", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "9400ZZLUWWL", "commonName": "Walthamstow Central 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": "Toilets", "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": "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": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.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": "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": "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": "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"}], "children": [], "lat": 51.582965, "lon": -0.019885}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUWWL1", "modes": ["tube"], "icsCode": "1000249", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUWWL", "hubNaptanCode": "HUBWHC", "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": "940GZZLUWWL", "lineIdentifier": ["victoria"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["victoria"]}], "status": true, "id": "9400ZZLUWWL1", "commonName": "Walthamstow Central 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": "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 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, 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": "Lifts", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$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": "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": "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": "Help Points", "sourceSystemKey": "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"}], "children": [], "lat": 51.583067, "lon": -0.01952}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUWYC", "modes": ["tube"], "icsCode": "1000256", "stopType": "NaptanMetroAccessArea", "stationNaptan": "940GZZLUWYC", "hubNaptanCode": "HUBWMB", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "9400ZZLUWYC", "commonName": "Wembley Central Underground 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": "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": "12"}, {"$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": "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": "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": "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": "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": "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": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "yes"}], "children": [], "lat": 51.552304, "lon": -0.296852}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUWYC1", "modes": ["tube"], "icsCode": "1000256", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUWYC", "hubNaptanCode": "HUBWMB", "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": "940GZZLUWYC", "lineIdentifier": ["bakerloo"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["bakerloo"]}], "status": true, "id": "9400ZZLUWYC1", "commonName": "Wembley Central 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": "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": "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": "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": "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"}, {"$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": "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": "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": "Car park", "sourceSystemKey": "StaticObjects", "value": "no"}], "children": [], "lat": 51.551739, "lon": -0.29631}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUWYC2", "indicator": "southbound", "modes": ["tube"], "icsCode": "1000256", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUWYC", "hubNaptanCode": "HUBWMB", "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": "940GZZLUWYC", "lineIdentifier": ["bakerloo"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["bakerloo"]}], "status": true, "id": "9400ZZLUWYC2", "commonName": "Wembley Central 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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "yes"}], "children": [], "lat": 51.552312, "lon": -0.296794}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUWYP", "modes": ["tube"], "icsCode": "1000257", "stopType": "NaptanMetroAccessArea", "stationNaptan": "940GZZLUWYP", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "9400ZZLUWYP", "commonName": "Wembley 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": "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": "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": "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": "5"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, 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": "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": "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": "Boarding Ramps", "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": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}], "children": [], "lat": 51.563198, "lon": -0.279262}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUWYP1", "modes": ["tube"], "icsCode": "1000257", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUWYP", "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": "940GZZLUWYP", "lineIdentifier": ["jubilee"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["jubilee"]}], "status": true, "id": "9400ZZLUWYP1", "commonName": "Wembley 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": "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": "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": "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": "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": "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": "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": "4"}], "children": [], "lat": 51.563518, "lon": -0.279596}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUWYP2", "modes": ["tube"], "icsCode": "1000257", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUWYP", "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": "940GZZLUWYP", "lineIdentifier": ["jubilee"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["jubilee"]}], "status": true, "id": "9400ZZLUWYP2", "commonName": "Wembley Park Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$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": "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": "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": "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": "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": "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": "Facility", "key": "Help Points", "sourceSystemKey": "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": "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, disabled/baby-changing facilities)"}], "children": [], "lat": 51.563518, "lon": -0.279581}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUWYP3", "modes": ["tube"], "icsCode": "1000257", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUWYP", "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": "940GZZLUWYP", "lineIdentifier": ["metropolitan"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["metropolitan"]}], "status": true, "id": "9400ZZLUWYP3", "commonName": "Wembley 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": "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": "Gates", "sourceSystemKey": "StaticObjects", "value": "33"}, {"$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": "5"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.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": "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": "Help Points", "sourceSystemKey": "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": "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)"}], "children": [], "lat": 51.563509, "lon": -0.279596}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUWYP4", "modes": ["tube"], "icsCode": "1000257", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUWYP", "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": "940GZZLUWYP", "lineIdentifier": ["metropolitan"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["metropolitan"]}], "status": true, "id": "9400ZZLUWYP4", "commonName": "Wembley 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": "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": "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": "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": "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": "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": "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": "Waiting Room", "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": "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": "2"}], "children": [], "lat": 51.563517, "lon": -0.279567}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUWYP6", "indicator": "southbound", "modes": ["tube"], "icsCode": "1000257", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUWYP", "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": "940GZZLUWYP", "lineIdentifier": ["metropolitan"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["metropolitan"]}], "status": true, "id": "9400ZZLUWYP6", "commonName": "Wembley 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": "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": "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": "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": "Lifts", "sourceSystemKey": "StaticObjects", "value": "5"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.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": "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": "4"}, {"$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": "Boarding Ramps", "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": "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.565944, "lon": -0.279504}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZNEUGST", "indicator": "N/A", "stopLetter": "N/A", "modes": ["tube"], "icsCode": "1002196", "stopType": "NaptanMetroAccessArea", "stationNaptan": "940GZZNEUGST", "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": "940GZZNEUGST", "lineIdentifier": ["northern"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["northern"]}], "status": true, "id": "9400ZZNEUGST", "commonName": "Nine Elms Underground Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.479912, "lon": -0.128476}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "940GZZBPSUST", "modes": ["tube", "bus"], "icsCode": "1002195", "stopType": "NaptanMetroStation", "stationNaptan": "940GZZBPSUST", "lines": [{"$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": "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": "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": "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": "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", "naptanIdReference": "490012196S", "stationAtcoCode": "490G02195E", "lineIdentifier": ["211", "436", "156", "344"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "940GZZBPSUST", "lineIdentifier": ["northern"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490012196E", "stationAtcoCode": "490G02195E", "lineIdentifier": ["344", "156", "436", "211"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "bus", "lineIdentifier": ["211", "436", "156", "344"]}, {"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["northern"]}], "status": true, "id": "940GZZBPSUST", "commonName": "Battersea Power Station Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$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_183"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_631"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_800"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_817"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_834"}], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490G02195E", "modes": ["bus"], "icsCode": "1002195", "stopType": "NaptanOnstreetBusCoachStopCluster", "stationNaptan": "490G02195E", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490G02195E", "commonName": "Battersea Power Station", "placeType": "StopPoint", "additionalProperties": [], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490012196E", "indicator": "Stop A", "stopLetter": "A", "modes": ["bus"], "icsCode": "1002195", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G02195E", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490012196E", "commonName": "Battersea Power Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.479872, "lon": -0.141309}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490012196S", "indicator": "Stop F", "stopLetter": "F", "modes": ["bus"], "icsCode": "1002195", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G02195E", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490012196S", "commonName": "Battersea Power Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.479735, "lon": -0.141156}], "lat": 51.479735, "lon": -0.141156}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "4900ZZBPSUST", "indicator": "Entrance 1", "stopLetter": "1", "modes": ["bus"], "icsCode": "1002195", "stopType": "NaptanMetroEntrance", "stationNaptan": "940GZZBPSUST", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "4900ZZBPSUST", "commonName": "Battersea Power Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.479745, "lon": -0.14238}, {"$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}], "lat": 51.479932, "lon": -0.142142}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "940GZZLUACT", "modes": ["bus", "tube"], "icsCode": "1000002", "stopType": "NaptanMetroStation", "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"}, {"$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": "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": "e3", "name": "E3", "uri": "/Line/e3", "type": "Line", "crowding": {"$type": "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": "940GZZLUACT", "lineIdentifier": ["piccadilly"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490000002B", "stationAtcoCode": "490G0000S", "lineIdentifier": ["n11", "70", "e3"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "940GZZLUACT", "lineIdentifier": ["district"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490000002A", "stationAtcoCode": "490G0000S", "lineIdentifier": ["n11", "e3"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["piccadilly", "district"]}, {"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "bus", "lineIdentifier": ["n11", "70", "e3"]}], "status": true, "id": "940GZZLUACT", "commonName": "Acton Town 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": "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": "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": "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": "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": "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": "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": "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": "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": "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": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490G0000S", "modes": ["bus"], "icsCode": "1000002", "stopType": "NaptanOnstreetBusCoachStopCluster", "stationNaptan": "490G0000S", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490G0000S", "commonName": "Acton Town Station", "placeType": "StopPoint", "additionalProperties": [], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000002A", "indicator": "Stop R", "stopLetter": "R", "modes": ["bus"], "icsCode": "1000002", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G0000S", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000002A", "commonName": "Acton Town Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.502731, "lon": -0.281007}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000002B", "indicator": "Stop S", "stopLetter": "S", "modes": ["bus"], "icsCode": "1000002", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G0000S", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000002B", "commonName": "Acton Town Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.504018, "lon": -0.279864}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000002RB7", "indicator": "->S", "stopLetter": "->S", "modes": ["bus"], "icsCode": "1000002", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G0000S", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000002RB7", "commonName": "Acton Town Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.502933, "lon": -0.280711}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "49000002SE", "indicator": "->SE", "modes": ["bus"], "icsCode": "1000002", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G0000S", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "49000002SE", "commonName": "Acton Town Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.502804, "lon": -0.279246}], "lat": 51.504018, "lon": -0.279864}, {"$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": "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": "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": "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": "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": "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": "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": "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": "Accessibility", "key": "Toilet", "sourceSystemKey": "LRAD", "value": "Yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}], "children": [], "lat": 51.503236, "lon": -0.279907}, {"$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": "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": "Help 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": "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": "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": "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": "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": "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": "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": "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"}], "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": "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"}, {"$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"}], "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}], "lat": 51.503057, "lon": -0.280462}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "940GZZLUACY", "modes": ["tube", "bus"], "icsCode": "1000008", "stopType": "NaptanMetroStation", "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"}, {"$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": "w5", "name": "W5", "uri": "/Line/w5", "type": "Line", "crowding": {"$type": "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": "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": "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": "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": "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": "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": "n20", "name": "N20", "uri": "/Line/n20", "type": "Line", "crowding": {"$type": "Tfl.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"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490000008NW", "stationAtcoCode": "490G00008O", "lineIdentifier": ["c11", "w5", "263", "n271", "4", "143"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490000008W", "stationAtcoCode": "490G00008O", "lineIdentifier": ["210", "234", "41", "134", "390", "n20"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490000008C", "stationAtcoCode": "490G00008O", "lineIdentifier": ["w5", "263", "c11", "n271", "143", "210", "4"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490000008U", "stationAtcoCode": "490G00008O", "lineIdentifier": ["390", "n20", "134"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490000008Z", "stationAtcoCode": "490G00008O", "lineIdentifier": ["234", "41", "w5"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["northern"]}, {"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "bus", "lineIdentifier": ["c11", "w5", "263", "n271", "4", "143", "210", "234", "41", "134", "390", "n20"]}], "status": true, "id": "940GZZLUACY", "commonName": "Archway 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": "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."}, {"$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": "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": "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": "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": "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": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5786"}], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490G00008O", "modes": ["bus"], "icsCode": "1000008", "stopType": "NaptanOnstreetBusCoachStopCluster", "stationNaptan": "490G00008O", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490G00008O", "commonName": "Archway Station", "placeType": "StopPoint", "additionalProperties": [], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000008C", "indicator": "Stop C", "stopLetter": "C", "modes": ["bus"], "icsCode": "1000008", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00008O", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000008C", "commonName": "Archway Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.566436, "lon": -0.136338}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000008NW", "indicator": "Stop E", "stopLetter": "E", "modes": ["bus"], "icsCode": "1000008", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00008O", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000008NW", "commonName": "Archway Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.566103, "lon": -0.135197}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000008RR", "indicator": "Stop G", "stopLetter": "G", "modes": ["bus"], "icsCode": "1000008", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00008O", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000008RR", "commonName": "Archway Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.564909, "lon": -0.134785}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000008U", "indicator": "Stop U", "stopLetter": "U", "modes": ["bus"], "icsCode": "1000008", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00008O", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000008U", "commonName": "Archway Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.56493, "lon": -0.134957}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000008W", "indicator": "Stop W", "stopLetter": "W", "modes": ["bus"], "icsCode": "1000008", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00008O", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000008W", "commonName": "Archway Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.564829, "lon": -0.134817}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000008Z", "indicator": "Stop G", "stopLetter": "G", "modes": ["bus"], "icsCode": "1000008", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00008O", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000008Z", "commonName": "Archway Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.56639, "lon": -0.135142}], "lat": 51.566436, "lon": -0.136338}, {"$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": "Photo 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": "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": "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": "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": "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": "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": "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": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}], "children": [], "lat": 51.564625, "lon": -0.134897}], "lat": 51.565478, "lon": -0.134819}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "940GZZLUADE", "modes": ["tube", "bus"], "icsCode": "1000004", "stopType": "NaptanMetroStation", "stationNaptan": "940GZZLUADE", "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"}, {"$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": "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": "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": "115", "name": "115", "uri": "/Line/115", "type": "Line", "crowding": {"$type": "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": "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": "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": "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": "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": "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": "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": "n15", "name": "N15", "uri": "/Line/n15", "type": "Line", "crowding": {"$type": "Tfl.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": ["hammersmith-city", "district"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490000004W", "stationAtcoCode": "490G00004G", "lineIdentifier": ["n253", "135", "254", "115", "205", "242", "25", "n205", "n25", "15", "n550", "n15"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490000004E", "stationAtcoCode": "490G00004G", "lineIdentifier": ["254", "n253", "205", "25", "n205", "n25"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490000004N", "stationAtcoCode": "490G00004G", "lineIdentifier": ["242"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490000004Z", "stationAtcoCode": "490G00004G", "lineIdentifier": ["n550", "n15", "15", "115", "135"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490019414S", "stationAtcoCode": "490G00004G", "lineIdentifier": ["242"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["hammersmith-city", "district"]}, {"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "bus", "lineIdentifier": ["n253", "135", "254", "115", "205", "242", "25", "n205", "n25", "15", "n550", "n15"]}], "status": true, "id": "940GZZLUADE", "commonName": "Aldgate East Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_102"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_236"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_202"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_200"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_115"}, {"$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": "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": "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": "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"}, {"$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": "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": "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"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_33"}, {"$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_5902"}, {"$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": "BikePoints_537"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_506"}], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490G00004G", "modes": ["bus"], "icsCode": "1000004", "stopType": "NaptanOnstreetBusCoachStopCluster", "stationNaptan": "490G00004G", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490G00004G", "commonName": "Aldgate East Station", "placeType": "StopPoint", "additionalProperties": [], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000004E", "indicator": "Stop E", "stopLetter": "E", "modes": ["bus"], "icsCode": "1000004", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00004G", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000004E", "commonName": "Aldgate East Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.515496, "lon": -0.071427}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000004N", "indicator": "Stop F", "stopLetter": "F", "modes": ["bus"], "icsCode": "1000004", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00004G", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000004N", "commonName": "Aldgate East Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.515719, "lon": -0.072384}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000004W", "indicator": "Stop J", "stopLetter": "J", "modes": ["bus"], "icsCode": "1000004", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00004G", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000004W", "commonName": "Aldgate East Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.514653, "lon": -0.073207}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000004Y", "indicator": "->S", "stopLetter": "->S", "modes": ["bus"], "icsCode": "1000004", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00004G", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000004Y", "commonName": "Aldgate East Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.514922, "lon": -0.071509}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000004Z", "indicator": "Stop H", "stopLetter": "H", "modes": ["bus"], "icsCode": "1000004", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00004G", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000004Z", "commonName": "Aldgate East Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.515324, "lon": -0.070238}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490019414S", "indicator": "Stop C", "stopLetter": "C", "modes": ["bus"], "icsCode": "1000004", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00004G", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490019414S", "commonName": "Aldgate East Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.515769, "lon": -0.072165}], "lat": 51.514653, "lon": -0.073207}, {"$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": "Gates", "sourceSystemKey": "StaticObjects", "value": "9"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.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": "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": "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}], "lat": 51.515037, "lon": -0.072384}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "940GZZLUAGL", "modes": ["bus", "tube"], "icsCode": "1000007", "stopType": "NaptanMetroStation", "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"}, {"$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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "n19", "name": "N19", "uri": "/Line/n19", "type": "Line", "crowding": {"$type": "Tfl.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"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490000007G", "stationAtcoCode": "490G00007G", "lineIdentifier": ["4", "43", "56"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490000007X", "stationAtcoCode": "490G00007G", "lineIdentifier": ["56", "341", "n277", "n73", "476", "38", "73", "n38"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490015108S", "stationAtcoCode": "490G00007G", "lineIdentifier": ["n205", "214", "205"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490000007Y", "stationAtcoCode": "490G00007G", "lineIdentifier": ["4", "19", "43", "30", "n41", "n19"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490000007F", "stationAtcoCode": "490G00007G", "lineIdentifier": ["38", "73", "19", "30", "476", "n38", "341", "n19", "n41", "n277", "n73"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["northern"]}, {"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "bus", "lineIdentifier": ["4", "43", "56", "341", "n277", "n73", "476", "38", "73", "n38", "n205", "214", "205", "19", "30", "n41", "n19"]}], "status": true, "id": "940GZZLUAGL", "commonName": "Angel 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": "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": "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": "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": "Angel Station,London Underground Ltd.,High Street,London,N1 9LQ"}, {"$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": "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": "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": "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": "Photo 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": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_75"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_93"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_123"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_189"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_234"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_254"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_326"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_339"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_365"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_695"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5720"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5384"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5435"}], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490G00007G", "modes": ["bus"], "icsCode": "1000007", "stopType": "NaptanOnstreetBusCoachStopCluster", "stationNaptan": "490G00007G", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490G00007G", "commonName": "Angel Station", "placeType": "StopPoint", "additionalProperties": [], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000007F", "indicator": "Stop F", "stopLetter": "F", "modes": ["bus"], "icsCode": "1000007", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00007G", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000007F", "commonName": "Angel Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.533739, "lon": -0.105463}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000007G", "indicator": "Stop G", "stopLetter": "G", "modes": ["bus"], "icsCode": "1000007", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00007G", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000007G", "commonName": "Angel Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.533373, "lon": -0.105637}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000007X", "indicator": "Stop X", "stopLetter": "X", "modes": ["bus"], "icsCode": "1000007", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00007G", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000007X", "commonName": "Angel Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.533957, "lon": -0.105584}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000007Y", "indicator": "Stop Y", "stopLetter": "Y", "modes": ["bus"], "icsCode": "1000007", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00007G", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000007Y", "commonName": "Angel Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.534304, "lon": -0.105367}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490015108S", "indicator": "Stop S", "stopLetter": "S", "modes": ["bus"], "icsCode": "1000007", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00007G", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490015108S", "commonName": "Angel Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.531914, "lon": -0.107673}], "lat": 51.534304, "lon": -0.105367}, {"$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": "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": "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": "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": "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": "Payphones", "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, 4 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": "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": "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": "Angel Station,London Underground Ltd.,High Street,London,N1 9LQ"}, {"$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": "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": "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": "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": "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.531869, "lon": -0.105944}], "lat": 51.532624, "lon": -0.105898}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "940GZZLUALD", "modes": ["bus", "tube"], "icsCode": "1000003", "stopType": "NaptanMetroStation", "stationNaptan": "940GZZLUALD", "lines": [{"$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": "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": "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": "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": "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": "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": "115", "name": "115", "uri": "/Line/115", "type": "Line", "crowding": {"$type": "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": "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": "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": "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": "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": "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": "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", "naptanIdReference": "490000003Y", "stationAtcoCode": "490G00003N", "lineIdentifier": ["n25", "25", "n550"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490000003DS", "stationAtcoCode": "490G00003N", "lineIdentifier": ["343"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "940GZZLUALD", "lineIdentifier": ["circle"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490000003R", "stationAtcoCode": "490G00003N", "lineIdentifier": ["n253", "254", "100", "n25", "115", "343", "242", "25", "42", "78", "n551", "15", "n550", "n15"]}, {"$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": "bus", "lineIdentifier": ["n25", "25", "n550", "343", "n253", "254", "100", "115", "242", "42", "78", "n551", "15", "n15"]}, {"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["circle", "metropolitan"]}], "status": true, "id": "940GZZLUALD", "commonName": "Aldgate 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."}, {"$type": "Tfl.Api.Presentation.Entities.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": "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": "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": "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": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$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": "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_33"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_102"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_104"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_115"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_202"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_236"}, {"$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_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_5900"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5905"}, {"$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_5902"}, {"$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_5941"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5269"}, {"$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_5917"}], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490G00003N", "modes": ["bus"], "icsCode": "1000003", "stopType": "NaptanOnstreetBusCoachStopCluster", "stationNaptan": "490G00003N", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490G00003N", "commonName": "Aldgate Station", "placeType": "StopPoint", "additionalProperties": [], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000003DS", "indicator": "Stop", "modes": ["bus"], "icsCode": "1000003", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00003N", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000003DS", "commonName": "Aldgate Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.513556, "lon": -0.075357}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000003R", "indicator": "Stop R", "stopLetter": "R", "modes": ["bus"], "icsCode": "1000003", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00003N", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000003R", "commonName": "Aldgate Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.514079, "lon": -0.074932}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000003Y", "indicator": "Stop D", "stopLetter": "D", "modes": ["bus"], "icsCode": "1000003", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00003N", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000003Y", "commonName": "Aldgate Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.514292, "lon": -0.074735}], "lat": 51.513556, "lon": -0.075357}, {"$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": "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": "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"}, {"$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"}], "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": "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": "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"}], "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}], "lat": 51.514246, "lon": -0.075689}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "940GZZLUALP", "modes": ["bus", "tube"], "icsCode": "1000005", "stopType": "NaptanMetroStation", "stationNaptan": "940GZZLUALP", "lines": [{"$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": "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": "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": "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": "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": "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": "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", "naptanIdReference": "490000005A", "stationAtcoCode": "490G00005N2", "lineIdentifier": ["297", "224", "83", "n83", "483"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490000005B", "stationAtcoCode": "490G00005N2", "lineIdentifier": ["297", "224", "83", "n83", "483"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490003264D", "stationAtcoCode": "490G00005N2", "lineIdentifier": ["245", "487"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "940GZZLUALP", "lineIdentifier": ["piccadilly"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490003264C", "stationAtcoCode": "490G00005N2", "lineIdentifier": ["487", "245"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "bus", "lineIdentifier": ["297", "224", "83", "n83", "483", "245", "487"]}, {"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["piccadilly"]}], "status": true, "id": "940GZZLUALP", "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": "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": "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": "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": "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"}, {"$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": "Gates", "sourceSystemKey": "StaticObjects", "value": "3"}, {"$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": "490G00005N2", "modes": ["bus"], "icsCode": "1000005", "stopType": "NaptanOnstreetBusCoachStopCluster", "stationNaptan": "490G00005N2", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490G00005N2", "commonName": "Alperton Station", "placeType": "StopPoint", "additionalProperties": [], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000005A", "indicator": "Stop A", "stopLetter": "A", "modes": ["bus"], "icsCode": "1000005", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00005N2", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000005A", "commonName": "Alperton Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.540544, "lon": -0.298935}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000005B", "indicator": "Stop B", "stopLetter": "B", "modes": ["bus"], "icsCode": "1000005", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00005N2", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000005B", "commonName": "Alperton Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.540838, "lon": -0.298751}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490003264C", "indicator": "Stop C", "stopLetter": "C", "modes": ["bus"], "icsCode": "1000005", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00005N2", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490003264C", "commonName": "Alperton Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.540442, "lon": -0.301217}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490003264D", "indicator": "Stop D", "stopLetter": "D", "modes": ["bus"], "icsCode": "1000005", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00005N2", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490003264D", "commonName": "Alperton Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.540319, "lon": -0.301395}], "lat": 51.540442, "lon": -0.301217}, {"$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": "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": "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": "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": "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": "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": "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}], "lat": 51.540627, "lon": -0.29961}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "940GZZLUAMS", "modes": ["tube"], "icsCode": "1000006", "stopType": "NaptanMetroStation", "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": "940GZZLUAMS", "commonName": "Amersham 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": "Amersham Station,Stn Approach,Amersham,Bucks HP6 5AZ"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.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": "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 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": "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": "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": "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": "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": "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": "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": [{"$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": "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}], "lat": 51.674126, "lon": -0.607714}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "940GZZLUASG", "modes": ["tube", "bus"], "icsCode": "1000009", "stopType": "NaptanMetroStation", "stationNaptan": "940GZZLUASG", "lines": [{"$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": "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": "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": "sl1", "name": "SL1", "uri": "/Line/sl1", "type": "Line", "crowding": {"$type": "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": "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": "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": "298", "name": "298", "uri": "/Line/298", "type": "Line", "crowding": {"$type": "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", "naptanIdReference": "490000009A", "stationAtcoCode": "490G00009E1", "lineIdentifier": ["232", "34", "382", "sl1", "184", "n91"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490000009W1", "stationAtcoCode": "490G00009E1", "lineIdentifier": ["251", "298"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490000009W", "stationAtcoCode": "490G00009E1", "lineIdentifier": ["n91", "184", "34", "sl1", "232"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490000009E1", "stationAtcoCode": "490G00009E1", "lineIdentifier": ["251", "298"]}, {"$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": "bus", "lineIdentifier": ["232", "34", "382", "sl1", "184", "n91", "251", "298"]}, {"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["piccadilly"]}], "status": true, "id": "940GZZLUASG", "commonName": "Arnos Grove 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": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5422"}, {"$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": "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": "Bridge", "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": "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": "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": "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": "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"}], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490G00009E1", "modes": ["bus"], "icsCode": "1000009", "stopType": "NaptanOnstreetBusCoachStopCluster", "stationNaptan": "490G00009E1", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490G00009E1", "commonName": "Arnos Grove Station", "placeType": "StopPoint", "additionalProperties": [], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000009A", "indicator": "Stop T", "stopLetter": "T", "modes": ["bus"], "icsCode": "1000009", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00009E1", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000009A", "commonName": "Arnos Grove Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.616181, "lon": -0.133463}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000009E1", "indicator": "Stop U", "stopLetter": "U", "modes": ["bus"], "icsCode": "1000009", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00009E1", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000009E1", "commonName": "Arnos Grove Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.616215, "lon": -0.133881}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000009W", "indicator": "Stop A", "stopLetter": "A", "modes": ["bus"], "icsCode": "1000009", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00009E1", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000009W", "commonName": "Arnos Grove Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.615957, "lon": -0.132952}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000009W1", "indicator": "Stop B", "stopLetter": "B", "modes": ["bus"], "icsCode": "1000009", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00009E1", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000009W1", "commonName": "Arnos Grove Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.615988, "lon": -0.13376}], "lat": 51.616215, "lon": -0.133881}, {"$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": "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": "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"}], "children": [], "lat": 51.616063, "lon": -0.133396}, {"$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}], "lat": 51.616446, "lon": -0.133062}, {"$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": "490G00010W", "modes": ["bus"], "icsCode": "1000010", "stopType": "NaptanOnstreetBusCoachStopCluster", "stationNaptan": "940GZZLUASL", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490G00010W", "commonName": "Arsenal", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.558655, "lon": -0.107457}, {"$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": "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": "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"}, {"$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": "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": "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": "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"}], "children": [], "lat": 51.558699, "lon": -0.107931}], "lat": 51.558655, "lon": -0.107457}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "940GZZLUBBB", "modes": ["tube", "bus"], "icsCode": "1000032", "stopType": "NaptanMetroStation", "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"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "323", "name": "323", "uri": "/Line/323", "type": "Line", "crowding": {"$type": "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": "d8", "name": "D8", "uri": "/Line/d8", "type": "Line", "crowding": {"$type": "Tfl.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"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490000032RP", "stationAtcoCode": "490G00032DS", "lineIdentifier": ["323"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490015276W", "stationAtcoCode": "490G00032MO", "lineIdentifier": ["488", "d8"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490000032MO", "stationAtcoCode": "490G00032DS", "lineIdentifier": ["323"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490000032X", "stationAtcoCode": "490G0032NB", "lineIdentifier": ["d8", "488"]}], "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": "bus", "lineIdentifier": ["323", "488", "d8"]}], "status": true, "id": "940GZZLUBBB", "commonName": "Bromley-by-Bow 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": "Help Points", "sourceSystemKey": "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": "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": "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": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "5"}, {"$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": "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": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_484"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_496"}], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490G00032DS", "modes": ["bus"], "icsCode": "1000032", "stopType": "NaptanOnstreetBusCoachStopCluster", "stationNaptan": "490G00032DS", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490G00032DS", "commonName": "Bromley By Bow Station", "placeType": "StopPoint", "additionalProperties": [], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000032MO", "indicator": "Stop BH", "stopLetter": "BH", "modes": ["bus"], "icsCode": "1000032", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00032DS", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000032MO", "commonName": "Bromley By Bow Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.523309, "lon": -0.012095}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000032RP", "indicator": "Stop BN", "stopLetter": "BN", "modes": ["bus"], "icsCode": "1000032", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00032DS", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000032RP", "commonName": "Bromley By Bow Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.523277, "lon": -0.01286}], "lat": 51.523309, "lon": -0.012095}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490G00032MO", "modes": ["bus"], "icsCode": "1000032", "stopType": "NaptanOnstreetBusCoachStopCluster", "stationNaptan": "490G00032MO", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490G00032MO", "commonName": "Bromley By Bow Station", "placeType": "StopPoint", "additionalProperties": [], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490015276W", "indicator": "Stop BA", "stopLetter": "BA", "modes": ["bus"], "icsCode": "1000032", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00032MO", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490015276W", "commonName": "Bromley By Bow Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.524278, "lon": -0.010871}], "lat": 51.524278, "lon": -0.010871}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490G0032NB", "modes": ["bus"], "icsCode": "1000032", "stopType": "NaptanOnstreetBusCoachStopCluster", "stationNaptan": "490G0032NB", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490G0032NB", "commonName": "Bromley By Bow Station", "placeType": "StopPoint", "additionalProperties": [], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000032X", "indicator": "Stop BE", "stopLetter": "BE", "modes": ["bus"], "icsCode": "1000032", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G0032NB", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000032X", "commonName": "Bromley By Bow Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.52422, "lon": -0.011162}], "lat": 51.52422, "lon": -0.011162}, {"$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": "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"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.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": "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": "Gates", "sourceSystemKey": "StaticObjects", "value": "5"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "2"}], "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": "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": "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": "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": "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": "Car park", "sourceSystemKey": "StaticObjects", "value": "no"}], "children": [], "lat": 51.524612, "lon": -0.011937}], "lat": 51.524839, "lon": -0.011538}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "940GZZLUBBN", "modes": ["tube", "bus"], "icsCode": "1000014", "stopType": "NaptanMetroStation", "stationNaptan": "940GZZLUBBN", "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": "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": "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": "4", "name": "4", "uri": "/Line/4", "type": "Line", "crowding": {"$type": "Tfl.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": ["circle", "hammersmith-city", "metropolitan"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490000014A", "stationAtcoCode": "490G00014W", "lineIdentifier": ["153", "56", "4"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490000014B", "stationAtcoCode": "490G00014W", "lineIdentifier": ["56", "4", "153"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["circle", "hammersmith-city", "metropolitan"]}, {"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "bus", "lineIdentifier": ["153", "56", "4"]}], "status": true, "id": "940GZZLUBBN", "commonName": "Barbican Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$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": "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": "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": "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": "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": "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": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_52"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_54"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_95"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_126"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_127"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_203"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_246"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_275"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_557"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5929"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5873"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5791"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5906"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5923"}, {"$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": "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"}], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490G00014W", "modes": ["bus"], "icsCode": "1000014", "stopType": "NaptanOnstreetBusCoachStopCluster", "stationNaptan": "490G00014W", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490G00014W", "commonName": "Barbican Station", "placeType": "StopPoint", "additionalProperties": [], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000014A", "indicator": "Stop BA", "stopLetter": "BA", "modes": ["bus"], "icsCode": "1000014", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00014W", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000014A", "commonName": "Barbican Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.520305, "lon": -0.097703}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000014B", "indicator": "Stop BB", "stopLetter": "BB", "modes": ["bus"], "icsCode": "1000014", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00014W", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000014B", "commonName": "Barbican Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.520902, "lon": -0.097376}], "lat": 51.520902, "lon": -0.097376}, {"$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": "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"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.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"}], "children": [], "lat": 51.520311, "lon": -0.09753}, {"$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": "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": "940GZZLUBBN", "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": "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": "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": "940GZZLUBBN", "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": "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": "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": "Barbican Station,London Underground Ltd.,Aldersgate St,London,EC1A 4JA"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.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"}], "children": [], "lat": 51.520303, "lon": -0.098049}], "lat": 51.520275, "lon": -0.097993}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "940GZZLUBDS", "modes": ["tube", "bus"], "icsCode": "1000028", "stopType": "NaptanMetroStation", "stationNaptan": "940GZZLUBDS", "lines": [{"$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": "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": "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": "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": "299", "name": "299", "uri": "/Line/299", "type": "Line", "crowding": {"$type": "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", "naptanIdReference": "490000028A", "stationAtcoCode": "490G00028A", "lineIdentifier": ["n91", "221"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490000028C", "stationAtcoCode": "490G00028C", "lineIdentifier": ["184", "102", "299"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490000028B", "stationAtcoCode": "490G00028A", "lineIdentifier": ["221", "n91"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "940GZZLUBDS", "lineIdentifier": ["piccadilly"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490000028D", "stationAtcoCode": "490G00028C", "lineIdentifier": ["299", "102", "184"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "bus", "lineIdentifier": ["n91", "221", "184", "102", "299"]}, {"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["piccadilly"]}], "status": true, "id": "940GZZLUBDS", "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": "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": "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": "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": "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": "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": "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": "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": "Help Points", "sourceSystemKey": "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": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490G00028A", "modes": ["bus"], "icsCode": "1000028", "stopType": "NaptanOnstreetBusCoachStopCluster", "stationNaptan": "490G00028A", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490G00028A", "commonName": "Bounds Green Station", "placeType": "StopPoint", "additionalProperties": [], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000028A", "indicator": "Stop BA", "stopLetter": "BA", "modes": ["bus"], "icsCode": "1000028", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00028A", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000028A", "commonName": "Bounds Green Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.607038, "lon": -0.124567}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000028B", "indicator": "Stop BM", "stopLetter": "BM", "modes": ["bus"], "icsCode": "1000028", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00028A", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000028B", "commonName": "Bounds Green Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.607266, "lon": -0.125352}], "lat": 51.607266, "lon": -0.125352}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490G00028C", "modes": ["bus"], "icsCode": "1000028", "stopType": "NaptanOnstreetBusCoachStopCluster", "stationNaptan": "490G00028C", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490G00028C", "commonName": "Bounds Green Station", "placeType": "StopPoint", "additionalProperties": [], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000028C", "indicator": "Stop BN", "stopLetter": "BN", "modes": ["bus"], "icsCode": "1000028", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00028C", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000028C", "commonName": "Bounds Green Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.608056, "lon": -0.123586}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000028D", "indicator": "Stop BB", "stopLetter": "BB", "modes": ["bus"], "icsCode": "1000028", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00028C", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000028D", "commonName": "Bounds Green Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.607545, "lon": -0.12365}], "lat": 51.607545, "lon": -0.12365}, {"$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": "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": "Facility", "key": "Help Points", "sourceSystemKey": "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": "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": "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"}, {"$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": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}], "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": "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": "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": "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": "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": "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": "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": "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": "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"}], "children": [], "lat": 51.606913, "lon": -0.1245}], "lat": 51.607034, "lon": -0.124235}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "940GZZLUBEC", "modes": ["bus", "tube"], "icsCode": "1000019", "stopType": "NaptanMetroStation", "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"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "145", "name": "145", "uri": "/Line/145", "type": "Line", "crowding": {"$type": "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"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "940GZZLUBEC", "lineIdentifier": ["district"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490000019B", "stationAtcoCode": "490G00019B", "lineIdentifier": ["145", "62"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490000019A", "stationAtcoCode": "490G00019B", "lineIdentifier": ["62", "145"]}], "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": "bus", "lineIdentifier": ["145", "62"]}], "status": true, "id": "940GZZLUBEC", "commonName": "Becontree 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": "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": "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": "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": "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": "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": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "5"}], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490G00019B", "modes": ["bus"], "icsCode": "1000019", "stopType": "NaptanOnstreetBusCoachStopCluster", "stationNaptan": "490G00019B", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490G00019B", "commonName": "Becontree Station", "placeType": "StopPoint", "additionalProperties": [], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000019A", "indicator": "Stop NC", "stopLetter": "NC", "modes": ["bus"], "icsCode": "1000019", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00019B", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000019A", "commonName": "Becontree Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.540134, "lon": 0.127382}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000019B", "indicator": "Stop SJ", "stopLetter": "SJ", "modes": ["bus"], "icsCode": "1000019", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00019B", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000019B", "commonName": "Becontree Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.539841, "lon": 0.1277}], "lat": 51.540134, "lon": 0.127382}, {"$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": "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}], "lat": 51.540331, "lon": 0.127016}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "940GZZLUBKE", "modes": ["tube", "bus"], "icsCode": "1000016", "stopType": "NaptanMetroStation", "stationNaptan": "940GZZLUBKE", "lines": [{"$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": "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": "169", "name": "169", "uri": "/Line/169", "type": "Line", "crowding": {"$type": "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": "490003623B", "stationAtcoCode": "490G00016SB", "lineIdentifier": ["247"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "940GZZLUBKE", "lineIdentifier": ["central"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490000016U", "stationAtcoCode": "490G00016SB", "lineIdentifier": ["169"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490000016S", "stationAtcoCode": "490G00016SB", "lineIdentifier": ["169", "247"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "bus", "lineIdentifier": ["247", "169"]}, {"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["central"]}], "status": true, "id": "940GZZLUBKE", "commonName": "Barkingside 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": "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": "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": "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": "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 (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": "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": "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": "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"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "CarParks_800491"}], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490G00016SB", "modes": ["bus"], "icsCode": "1000016", "stopType": "NaptanOnstreetBusCoachStopCluster", "stationNaptan": "490G00016SB", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490G00016SB", "commonName": "Barkingside Station", "placeType": "StopPoint", "additionalProperties": [], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000016S", "indicator": "Stop S", "stopLetter": "S", "modes": ["bus"], "icsCode": "1000016", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00016SB", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000016S", "commonName": "Barkingside Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.587251, "lon": 0.085105}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000016U", "indicator": "Stop U", "stopLetter": "U", "modes": ["bus"], "icsCode": "1000016", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00016SB", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000016U", "commonName": "Barkingside Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.587402, "lon": 0.085199}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490003623B", "indicator": "Stop W", "stopLetter": "W", "modes": ["bus"], "icsCode": "1000016", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00016SB", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490003623B", "commonName": "Barkingside Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.58777, "lon": 0.084234}], "lat": 51.58777, "lon": 0.084234}, {"$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": "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"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.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.585817, "lon": 0.08836}, {"$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}], "lat": 51.585689, "lon": 0.088585}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "940GZZLUBKF", "modes": ["tube"], "icsCode": "1000023", "stopType": "NaptanMetroStation", "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": "940GZZLUBKF", "commonName": "Blackfriars 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": "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": "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": "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": "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": "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": "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": "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": "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": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_27"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_48"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_136"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_659"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_703"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_773"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_839"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_842"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5926"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5814"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5928"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5911"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5924"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5922"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5909"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5920"}], "children": [{"$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": "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": "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": "9400ZZLUBKF1", "commonName": "Blackfriars Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$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": "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": "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": "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": "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": "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": "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}], "lat": 51.511581, "lon": -0.103659}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "940GZZLUBKG", "modes": ["tube"], "icsCode": "1000015", "stopType": "NaptanMetroStation", "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"}, {"$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": ["hammersmith-city"]}, {"$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": ["district"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["hammersmith-city", "district"]}], "status": true, "id": "940GZZLUBKG", "commonName": "Barking 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": "Gates", "sourceSystemKey": "StaticObjects", "value": "7"}, {"$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": "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": "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": "SunTo", "sourceSystemKey": "StaticObjects", "value": "23: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": "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": "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": "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": "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": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5722"}], "children": [{"$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": "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": "940GZZLUBKG", "lineIdentifier": ["hammersmith-city", "district"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["hammersmith-city", "district"]}], "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": "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": "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": "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": "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": "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"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.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"}], "children": [], "lat": 51.539574, "lon": 0.080978}], "lat": 51.539321, "lon": 0.081053}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "940GZZLUBKH", "modes": ["bus", "tube"], "icsCode": "1000033", "stopType": "NaptanMetroStation", "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"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "167", "name": "167", "uri": "/Line/167", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "677", "name": "677", "uri": "/Line/677", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "549", "name": "549", "uri": "/Line/549", "type": "Line", "crowding": {"$type": "Tfl.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"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "1500IM359", "stationAtcoCode": "150G00003292", "lineIdentifier": ["167", "677", "549"]}], "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": "bus", "lineIdentifier": ["167", "677", "549"]}], "status": true, "id": "940GZZLUBKH", "commonName": "Buckhurst Hill 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": "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": "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": "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": "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": "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": "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": "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": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "CarParks_800468"}], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "150G00003292", "modes": ["bus"], "icsCode": "1000317", "stopType": "NaptanOnstreetBusCoachStopPair", "stationNaptan": "150G00003292", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "150G00003292", "commonName": "Railway Station", "placeType": "StopPoint", "additionalProperties": [], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "1500IM359", "indicator": "o/s", "modes": ["bus"], "icsCode": "1000317", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "150G00003292", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "1500IM359", "commonName": "Buckhurst Hill Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.626505, "lon": 0.046204}], "lat": 51.626505, "lon": 0.046204}, {"$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": "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}], "lat": 51.626605, "lon": 0.046757}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "940GZZLUBLG", "modes": ["tube", "bus"], "icsCode": "1000022", "stopType": "NaptanMetroStation", "stationNaptan": "940GZZLUBLG", "lines": [{"$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": "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": "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": "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": "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": "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": "309", "name": "309", "uri": "/Line/309", "type": "Line", "crowding": {"$type": "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": "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": "8", "name": "8", "uri": "/Line/8", "type": "Line", "crowding": {"$type": "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": "490000022C", "stationAtcoCode": "490G00022C", "lineIdentifier": ["254", "n253", "106"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "940GZZLUBLG", "lineIdentifier": ["central"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490000022A", "stationAtcoCode": "490G00022A", "lineIdentifier": ["n253", "106", "254", "d3", "388", "309", "d6"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490000022B", "stationAtcoCode": "490G00022B", "lineIdentifier": ["n8", "309", "d6", "8"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490000022D", "stationAtcoCode": "490G00022D", "lineIdentifier": ["388", "8", "d3", "n8"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "bus", "lineIdentifier": ["254", "n253", "106", "d3", "388", "309", "d6", "n8", "8"]}, {"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["central"]}], "status": true, "id": "940GZZLUBLG", "commonName": "Bethnal Green 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": "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": "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": "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": "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": "Help Points", "sourceSystemKey": "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": "Other Facilities", "sourceSystemKey": "StaticObjects", "value": "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": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5642"}, {"$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": "Toilets", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$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_446"}, {"$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_507"}, {"$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"}], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490G00022A", "modes": ["bus"], "icsCode": "1000022", "stopType": "NaptanOnstreetBusCoachStopCluster", "stationNaptan": "490G00022A", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490G00022A", "commonName": "Bethnal Green Station", "placeType": "StopPoint", "additionalProperties": [], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000022A", "indicator": "Stop A", "stopLetter": "A", "modes": ["bus"], "icsCode": "1000022", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00022A", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000022A", "commonName": "Bethnal Green Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.528131, "lon": -0.055107}], "lat": 51.528131, "lon": -0.055107}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490G00022B", "modes": ["bus"], "icsCode": "1000022", "stopType": "NaptanOnstreetBusCoachStopCluster", "stationNaptan": "490G00022B", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490G00022B", "commonName": "Bethnal Green Station", "placeType": "StopPoint", "additionalProperties": [], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000022B", "indicator": "Stop B", "stopLetter": "B", "modes": ["bus"], "icsCode": "1000022", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00022B", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000022B", "commonName": "Bethnal Green Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.527402, "lon": -0.054547}], "lat": 51.527402, "lon": -0.054547}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490G00022C", "modes": ["bus"], "icsCode": "1000022", "stopType": "NaptanOnstreetBusCoachStopCluster", "stationNaptan": "490G00022C", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490G00022C", "commonName": "Bethnal Green Station", "placeType": "StopPoint", "additionalProperties": [], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000022C", "indicator": "Stop C", "stopLetter": "C", "modes": ["bus"], "icsCode": "1000022", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00022C", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000022C", "commonName": "Bethnal Green Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.526881, "lon": -0.055636}], "lat": 51.526881, "lon": -0.055636}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490G00022D", "modes": ["bus"], "icsCode": "1000022", "stopType": "NaptanOnstreetBusCoachStopCluster", "stationNaptan": "490G00022D", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490G00022D", "commonName": "Bethnal Green Station", "placeType": "StopPoint", "additionalProperties": [], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000022D", "indicator": "Stop D", "stopLetter": "D", "modes": ["bus"], "icsCode": "1000022", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00022D", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000022D", "commonName": "Bethnal Green Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.527464, "lon": -0.056649}], "lat": 51.527464, "lon": -0.056649}, {"$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": "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": "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": "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": "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": "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": "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.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": "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": "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": "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": "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": "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": "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": "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": "Help Points", "sourceSystemKey": "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.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}], "lat": 51.527222, "lon": -0.055506}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "940GZZLUBLM", "modes": ["tube"], "icsCode": "1000012", "stopType": "NaptanMetroStation", "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": "940GZZLUBLM", "commonName": "Balham 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": "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": "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": "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": "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": "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": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5665"}], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490G00012C", "modes": ["bus"], "icsCode": "1000012", "stopType": "NaptanOnstreetBusCoachStopCluster", "stationNaptan": "490G00012C", "hubNaptanCode": "HUBBAL", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490G00012C", "commonName": "Balham Station / Balham Station Road", "placeType": "StopPoint", "additionalProperties": [], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000012C", "indicator": "Stop C", "stopLetter": "C", "modes": ["bus"], "icsCode": "1000012", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00012C", "hubNaptanCode": "HUBBAL", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000012C", "commonName": "Balham Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.44391, "lon": -0.152066}], "lat": 51.44391, "lon": -0.152066}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490G00012S", "modes": ["bus"], "icsCode": "1000012", "stopType": "NaptanOnstreetBusCoachStopCluster", "stationNaptan": "490G00012S", "hubNaptanCode": "HUBBAL", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490G00012S", "commonName": "Balham Station", "placeType": "StopPoint", "additionalProperties": [], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000012A", "indicator": "Stop A", "stopLetter": "A", "modes": ["bus"], "icsCode": "1000012", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00012S", "hubNaptanCode": "HUBBAL", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000012A", "commonName": "Balham Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.443039, "lon": -0.151554}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000012B", "indicator": "Stop B", "stopLetter": "B", "modes": ["bus"], "icsCode": "1000012", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00012S", "hubNaptanCode": "HUBBAL", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000012B", "commonName": "Balham Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.442869, "lon": -0.15336}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000012J", "indicator": "Stop J", "stopLetter": "J", "modes": ["bus"], "icsCode": "1000012", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00012S", "hubNaptanCode": "HUBBAL", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000012J", "commonName": "Balham Station / Balham Station Road", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.443019, "lon": -0.150907}], "lat": 51.442869, "lon": -0.15336}, {"$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": "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": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$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": "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": "Payphones", "sourceSystemKey": "StaticObjects", "value": "2"}], "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": "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}], "lat": 51.443288, "lon": -0.152997}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "940GZZLUBLR", "modes": ["tube"], "icsCode": "1000024", "stopType": "NaptanMetroStation", "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": "940GZZLUBLR", "commonName": "Blackhorse Road 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": "Help Points", "sourceSystemKey": "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": "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": "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": "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": "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": "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": "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": "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": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "CarParks_800466"}], "children": [{"$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": "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": "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": "Escalators", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$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}], "lat": 51.586919, "lon": -0.04115}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "940GZZLUBMY", "modes": ["tube", "bus"], "icsCode": "1000021", "stopType": "NaptanMetroStation", "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"}, {"$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": "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": "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": "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": "n381", "name": "N381", "uri": "/Line/n381", "type": "Line", "crowding": {"$type": "Tfl.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"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490012729D", "stationAtcoCode": "490G00021W", "lineIdentifier": ["n199", "188", "381", "c10", "108", "n381"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490000021W", "stationAtcoCode": "490G00021W", "lineIdentifier": ["n381", "188", "n199", "c10", "381"]}], "lineModeGroups": [{"$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", "188", "381", "c10", "108", "n381"]}], "status": true, "id": "940GZZLUBMY", "commonName": "Bermondsey 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": "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": "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": "Help Points", "sourceSystemKey": "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": "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": "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": "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": "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": "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"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_687"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_840"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_845"}], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490G00021W", "modes": ["bus"], "stopType": "NaptanOnstreetBusCoachStopCluster", "stationNaptan": "490G00021W", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490G00021W", "commonName": "Bermondsey Station", "placeType": "StopPoint", "additionalProperties": [], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000021W", "indicator": "Stop A", "stopLetter": "A", "modes": ["bus"], "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00021W", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000021W", "commonName": "Bermondsey Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.498049, "lon": -0.064773}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490012729D", "indicator": "Stop D", "stopLetter": "D", "modes": ["bus"], "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00021W", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490012729D", "commonName": "Bermondsey Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.498088, "lon": -0.06552}], "lat": 51.498049, "lon": -0.064773}, {"$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": "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": "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": "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": "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": "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": "Help Points", "sourceSystemKey": "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": "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": "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": "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": "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": "Cash Machines", "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"}, {"$type": "Tfl.Api.Presentation.Entities.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"}], "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}], "lat": 51.49775, "lon": -0.063993}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "940GZZLUBND", "modes": ["tube"], "icsCode": "1000025", "stopType": "NaptanMetroStation", "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"}, {"$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": ["jubilee"]}, {"$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": ["jubilee", "central"]}], "status": true, "id": "940GZZLUBND", "commonName": "Bond Street 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": "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": "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"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.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": "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": "Lifts", "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": "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": "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": "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": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_106"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_141"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_180"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_210"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_301"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_348"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_366"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_400"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_514"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5633"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5302"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5139"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5576"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5668"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5607"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_4334"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5862"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_4171"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_4787"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_4802"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5195"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5617"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5239"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5820"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_4676"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5565"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_4871"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5611"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5104"}], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490G00025BV", "modes": ["bus"], "icsCode": "1000025", "stopType": "NaptanOnstreetBusCoachStopCluster", "stationNaptan": "940GZZLUBND", "hubNaptanCode": "HUBBDS", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490G00025BV", "commonName": "Bond Street Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.514304, "lon": -0.149723}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490G00025BW", "modes": ["bus"], "icsCode": "1000025", "stopType": "NaptanOnstreetBusCoachStopCluster", "stationNaptan": "940GZZLUBND", "hubNaptanCode": "HUBBDS", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490G00025BW", "commonName": "Bond Street Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.514304, "lon": -0.149723}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "4900BONDST0", "indicator": "Entrance 8", "stopLetter": "8", "modes": [], "icsCode": "1000025", "stopType": "NaptanRailEntrance", "stationNaptan": "940GZZLUBND", "hubNaptanCode": "HUBBDS", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "4900BONDST0", "commonName": "Bond Street Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.513416, "lon": -0.148836}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "4900BONDST1", "indicator": "Entrance 9", "stopLetter": "9", "modes": [], "icsCode": "1000025", "stopType": "NaptanRailEntrance", "stationNaptan": "940GZZLUBND", "hubNaptanCode": "HUBBDS", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "4900BONDST1", "commonName": "Bond Street Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.514045, "lon": -0.144775}, {"$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": "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": "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": "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": "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": "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": "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"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.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"}], "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": "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": "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": "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"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.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": "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": "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": "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": "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"}], "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": "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": "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": "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"}, {"$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": "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"}], "children": [], "lat": 51.514682, "lon": -0.14916}], "lat": 51.514304, "lon": -0.149723}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "940GZZLUBNK", "modes": ["tube"], "icsCode": "1000013", "stopType": "NaptanMetroStation", "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"}, {"$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"}, {"$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": ["northern"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "940GZZLUBNK", "lineIdentifier": ["waterloo-city"]}, {"$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": ["northern", "waterloo-city", "central"]}], "status": true, "id": "940GZZLUBNK", "commonName": "Bank 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": "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"}, {"$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": "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": "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": "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": "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": "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_101"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_120"}, {"$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_427"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_579"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_587"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5907"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5901"}, {"$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_5897"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5919"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5921"}], "children": [{"$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": "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": "Facility", "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": "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"}], "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": "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"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "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.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": "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"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "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.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": "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": "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"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "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": "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": "Cash Machines", "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"}], "children": [], "lat": 51.511197, "lon": -0.087836}, {"$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": "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": "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": "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": "Car park", "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.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": "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": "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": "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": "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": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "3"}, {"$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": "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": "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}], "lat": 51.513356, "lon": -0.088899}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "940GZZLUBOR", "modes": ["tube", "bus"], "icsCode": "1000026", "stopType": "NaptanMetroStation", "stationNaptan": "940GZZLUBOR", "lines": [{"$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": "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": "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": "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": "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": "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": "n343", "name": "N343", "uri": "/Line/n343", "type": "Line", "crowding": {"$type": "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": "490000026C", "stationAtcoCode": "490G00026B", "lineIdentifier": ["n133", "133"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "940GZZLUBOR", "lineIdentifier": ["northern"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490000026A", "stationAtcoCode": "490G00026B", "lineIdentifier": ["133", "343", "c10", "35", "n133", "n343"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490000026D", "stationAtcoCode": "490G00026B", "lineIdentifier": ["35", "343", "c10", "n343"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "bus", "lineIdentifier": ["n133", "133", "343", "c10", "35", "n343"]}, {"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["northern"]}], "status": true, "id": "940GZZLUBOR", "commonName": "Borough 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": "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": "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": "Help Points", "sourceSystemKey": "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": "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": "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 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"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_125"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_194"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_196"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_249"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_269"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_295"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_317"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_645"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5578"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5502"}], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490G00026B", "modes": ["bus"], "stopType": "NaptanOnstreetBusCoachStopCluster", "stationNaptan": "490G00026B", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490G00026B", "commonName": "Borough Station", "placeType": "StopPoint", "additionalProperties": [], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000026A", "indicator": "Stop A", "stopLetter": "A", "modes": ["bus"], "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00026B", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000026A", "commonName": "Borough Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.50064, "lon": -0.093926}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000026C", "indicator": "Stop C", "stopLetter": "C", "modes": ["bus"], "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00026B", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000026C", "commonName": "Borough Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.501103, "lon": -0.093662}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000026D", "indicator": "Stop D", "stopLetter": "D", "modes": ["bus"], "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00026B", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000026D", "commonName": "Borough Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.50084, "lon": -0.094091}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000026W", "indicator": "Stop", "modes": ["bus"], "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00026B", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000026W", "commonName": "Borough Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.501375, "lon": -0.09378}], "lat": 51.50064, "lon": -0.093926}, {"$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": "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}], "lat": 51.501199, "lon": -0.09337}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "940GZZLUBOS", "modes": ["tube", "bus"], "icsCode": "1000027", "stopType": "NaptanMetroStation", "stationNaptan": "940GZZLUBOS", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "195", "name": "195", "uri": "/Line/195", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "e8", "name": "E8", "uri": "/Line/e8", "type": "Line", "crowding": {"$type": "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", "naptanIdReference": "490000027B", "stationAtcoCode": "490G00027A", "lineIdentifier": ["195", "e8"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490000027A", "stationAtcoCode": "490G00027A", "lineIdentifier": ["195", "e8"]}, {"$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": "bus", "lineIdentifier": ["195", "e8"]}, {"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["piccadilly"]}], "status": true, "id": "940GZZLUBOS", "commonName": "Boston Manor 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": "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": "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": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "4"}, {"$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": "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": "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"}], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490G00027A", "modes": ["bus"], "icsCode": "1000027", "stopType": "NaptanOnstreetBusCoachStopCluster", "stationNaptan": "490G00027A", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490G00027A", "commonName": "Boston Manor Station", "placeType": "StopPoint", "additionalProperties": [], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000027A", "indicator": "Stop U", "stopLetter": "U", "modes": ["bus"], "icsCode": "1000027", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00027A", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000027A", "commonName": "Boston Manor Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.495921, "lon": -0.324972}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000027B", "indicator": "Stop N", "stopLetter": "N", "modes": ["bus"], "icsCode": "1000027", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00027A", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000027B", "commonName": "Boston Manor Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.495728, "lon": -0.324014}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000027S", "indicator": "->W", "stopLetter": "->W", "modes": ["bus"], "icsCode": "1000027", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00027A", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000027S", "commonName": "Boston Manor Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.49566, "lon": -0.324319}], "lat": 51.495921, "lon": -0.324972}, {"$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": "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": "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"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, 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"}], "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": "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"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.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"}], "children": [], "lat": 51.495605, "lon": -0.324724}], "lat": 51.495635, "lon": -0.324939}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "940GZZLUBSC", "modes": ["tube"], "icsCode": "1000017", "stopType": "NaptanMetroStation", "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"}, {"$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": ["piccadilly"]}, {"$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": ["piccadilly", "district"]}], "status": true, "id": "940GZZLUBSC", "commonName": "Barons Court 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": "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": "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": "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": "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": "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": "Toilets", "sourceSystemKey": "StaticObjects", "value": "yes - male & female coin op"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.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": "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": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_608"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_633"}, {"$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": "BikePoints_635"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_696"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_707"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_770"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_4595"}], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490G00017E", "modes": ["bus"], "icsCode": "1000017", "stopType": "NaptanOnstreetBusCoachStopCluster", "stationNaptan": "940GZZLUBSC", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490G00017E", "commonName": "Barons Court", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.490311, "lon": -0.213427}, {"$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": "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": "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"}], "children": [], "lat": 51.490374, "lon": -0.213554}, {"$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": "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": "Help 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": "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": "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": "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": "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": "Toilets", "sourceSystemKey": "StaticObjects", "value": "yes - male & female coin op"}, {"$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"}], "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": "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"}, {"$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": "Photo 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.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}], "lat": 51.490311, "lon": -0.213427}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "940GZZLUBST", "modes": ["bus", "tube"], "icsCode": "1000011", "stopType": "NaptanMetroStation", "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"}, {"$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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": ["metropolitan"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490000011B", "stationAtcoCode": "490G00011B", "lineIdentifier": ["139", "n113", "113"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490000011D", "stationAtcoCode": "490G00011D", "lineIdentifier": ["74", "n74", "n27", "n18", "n205", "205", "18", "27", "30", "453"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "940GZZLUBST", "lineIdentifier": ["bakerloo"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "940GZZLUBST", "lineIdentifier": ["circle", "hammersmith-city"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490000011E", "stationAtcoCode": "490G00011D", "lineIdentifier": ["n205", "205", "n18", "n27", "18", "27", "453", "30"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490000011A", "stationAtcoCode": "490G00011B", "lineIdentifier": ["74", "n74", "274", "189", "13"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490000011ZZ", "stationAtcoCode": "490G00011B", "lineIdentifier": ["13", "189", "274", "113", "n113", "139"]}, {"$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": ["metropolitan", "bakerloo", "circle", "hammersmith-city", "jubilee"]}, {"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "bus", "lineIdentifier": ["139", "n113", "113", "74", "n74", "n27", "n18", "n205", "205", "18", "27", "30", "453", "274", "189", "13"]}], "status": true, "id": "940GZZLUBST", "commonName": "Baker Street 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": "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": "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": "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": "Payphones", "sourceSystemKey": "StaticObjects", "value": "5"}, {"$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": "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": "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": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_43"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_45"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_56"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_114"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_121"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_201"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_242"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_257"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_315"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_4975"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5590"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_4404"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5823"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5894"}], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490G00011B", "modes": ["bus"], "icsCode": "1000011", "stopType": "NaptanOnstreetBusCoachStopCluster", "stationNaptan": "490G00011B", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490G00011B", "commonName": "Baker Street Station", "placeType": "StopPoint", "additionalProperties": [], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000011A", "indicator": "Stop A", "stopLetter": "A", "modes": ["bus"], "icsCode": "1000011", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00011B", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000011A", "commonName": "Baker Street Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.523508, "lon": -0.158129}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000011B", "indicator": "Stop B", "stopLetter": "B", "modes": ["bus"], "icsCode": "1000011", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00011B", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000011B", "commonName": "Baker Street Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.522566, "lon": -0.157705}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000011S1", "indicator": "->S1", "modes": ["bus"], "icsCode": "1000011", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00011B", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000011S1", "commonName": "Baker Street Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.523417, "lon": -0.158031}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000011S2", "indicator": "->S2", "modes": ["bus"], "icsCode": "1000011", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00011B", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000011S2", "commonName": "Baker Street Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.522529, "lon": -0.157606}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000011ZY", "indicator": "->S2", "modes": ["bus"], "icsCode": "1000011", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00011B", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000011ZY", "commonName": "Baker Street Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.524893, "lon": -0.159817}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000011ZZ", "indicator": "Stop C", "stopLetter": "C", "modes": ["bus"], "icsCode": "1000011", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00011B", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000011ZZ", "commonName": "Baker Street Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.522849, "lon": -0.157939}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490006135S", "indicator": "Stop S", "stopLetter": "S", "modes": ["bus"], "icsCode": "1000011", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00011B", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490006135S", "commonName": "Baker Street Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.522424, "lon": -0.160089}], "lat": 51.524893, "lon": -0.159817}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490G00011D", "modes": ["bus"], "icsCode": "1000011", "stopType": "NaptanOnstreetBusCoachStopCluster", "stationNaptan": "490G00011D", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490G00011D", "commonName": "Baker Street Station", "placeType": "StopPoint", "additionalProperties": [], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000011D", "indicator": "Stop D", "stopLetter": "D", "modes": ["bus"], "icsCode": "1000011", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00011D", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000011D", "commonName": "Baker Street Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.522418, "lon": -0.156284}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000011E", "indicator": "Stop E", "stopLetter": "E", "modes": ["bus"], "icsCode": "1000011", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00011D", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000011E", "commonName": "Baker Street Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.52222, "lon": -0.156263}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000011E1", "indicator": "Stop", "modes": ["bus"], "icsCode": "1000011", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00011D", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000011E1", "commonName": "Baker Street Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.522355, "lon": -0.156835}], "lat": 51.522418, "lon": -0.156284}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490G00011W", "modes": ["bus"], "icsCode": "1000011", "stopType": "NaptanOnstreetBusCoachStopCluster", "stationNaptan": "940GZZLUBST", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490G00011W", "commonName": "Baker Street Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.522883, "lon": -0.15713}, {"$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": "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": "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"}], "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": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "21"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.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": "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": "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": "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": "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": "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"}], "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": "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": "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": "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": "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": "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": "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}], "lat": 51.522883, "lon": -0.15713}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "940GZZLUBTK", "modes": ["bus", "tube"], "icsCode": "1000034", "stopType": "NaptanMetroStation", "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"}, {"$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": "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": "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": "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": "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"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "940GZZLUBTK", "lineIdentifier": ["northern"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490000034S", "stationAtcoCode": "490G00034M", "lineIdentifier": ["302", "114", "n5"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490000034R", "stationAtcoCode": "490G00034M", "lineIdentifier": ["605", "204", "251"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490000034N", "stationAtcoCode": "490G00034M", "lineIdentifier": ["114", "204", "251", "302", "605", "n5"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["northern"]}, {"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "bus", "lineIdentifier": ["302", "114", "n5", "605", "204", "251"]}], "status": true, "id": "940GZZLUBTK", "commonName": "Burnt Oak 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": "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": "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": "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": "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": "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": "Payphones", "sourceSystemKey": "StaticObjects", "value": "3"}], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490G00034M", "modes": ["bus"], "icsCode": "1000034", "stopType": "NaptanOnstreetBusCoachStopCluster", "stationNaptan": "490G00034M", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490G00034M", "commonName": "Burnt Oak Station", "placeType": "StopPoint", "additionalProperties": [], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000034N", "indicator": "Stop N", "stopLetter": "N", "modes": ["bus"], "icsCode": "1000034", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00034M", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000034N", "commonName": "Burnt Oak Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.602565, "lon": -0.264041}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000034R", "indicator": "Stop R", "stopLetter": "R", "modes": ["bus"], "icsCode": "1000034", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00034M", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000034R", "commonName": "Burnt Oak Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.601975, "lon": -0.264858}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000034S", "indicator": "Stop S", "stopLetter": "S", "modes": ["bus"], "icsCode": "1000034", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00034M", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000034S", "commonName": "Burnt Oak Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.602036, "lon": -0.264726}], "lat": 51.602036, "lon": -0.264726}, {"$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": "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}], "lat": 51.602774, "lon": -0.264048}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "940GZZLUBTX", "modes": ["bus", "tube"], "icsCode": "1000030", "stopType": "NaptanMetroStation", "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"}, {"$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": "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"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "940GZZLUBTX", "lineIdentifier": ["northern"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490007994Y", "stationAtcoCode": "490G00030Q", "lineIdentifier": ["232", "112"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490000030Q", "stationAtcoCode": "490G00030Q", "lineIdentifier": ["210"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490000030R", "stationAtcoCode": "490G00030Q", "lineIdentifier": ["210"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["northern"]}, {"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "bus", "lineIdentifier": ["232", "112", "210"]}], "status": true, "id": "940GZZLUBTX", "commonName": "Brent Cross 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": "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": "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": "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": "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_5851"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "CarParks_800467"}], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490G00030Q", "modes": ["bus"], "icsCode": "1000030", "stopType": "NaptanOnstreetBusCoachStopCluster", "stationNaptan": "490G00030Q", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490G00030Q", "commonName": "Brent Cross Station", "placeType": "StopPoint", "additionalProperties": [], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000030Q", "indicator": "Stop Q", "stopLetter": "Q", "modes": ["bus"], "icsCode": "1000030", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00030Q", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000030Q", "commonName": "Brent Cross Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.57648, "lon": -0.213225}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000030R", "indicator": "Stop R", "stopLetter": "R", "modes": ["bus"], "icsCode": "1000030", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00030Q", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000030R", "commonName": "Brent Cross Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.576379, "lon": -0.213041}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490007994Y", "indicator": "Stop Y", "stopLetter": "Y", "modes": ["bus"], "icsCode": "1000030", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00030Q", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490007994Y", "commonName": "Brent Cross Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.5778, "lon": -0.215425}], "lat": 51.5778, "lon": -0.215425}, {"$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": "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": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}], "children": [], "lat": 51.576741, "lon": -0.213186}, {"$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": "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"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.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.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}], "lat": 51.57665, "lon": -0.213622}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "940GZZLUBWR", "modes": ["bus", "tube"], "icsCode": "1000029", "stopType": "NaptanMetroStation", "stationNaptan": "940GZZLUBWR", "lines": [{"$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": "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": "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": "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": "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": "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": "490000029Q", "stationAtcoCode": "490G00029Q", "lineIdentifier": ["n205", "25", "n25", "425", "205"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "940GZZLUBWR", "lineIdentifier": ["district", "hammersmith-city"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490000029Z", "stationAtcoCode": "490G00029Q", "lineIdentifier": ["205", "n25", "425", "25", "n205"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "bus", "lineIdentifier": ["n205", "25", "n25", "425", "205"]}, {"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["district", "hammersmith-city"]}], "status": true, "id": "940GZZLUBWR", "commonName": "Bow Road 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": "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": "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": "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": "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": "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": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_470"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_472"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_495"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_497"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_498"}], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490G00029Q", "modes": ["bus"], "icsCode": "1000029", "stopType": "NaptanOnstreetBusCoachStopCluster", "stationNaptan": "490G00029Q", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490G00029Q", "commonName": "Bow Road Station", "placeType": "StopPoint", "additionalProperties": [], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000029Q", "indicator": "Stop Y", "stopLetter": "Y", "modes": ["bus"], "icsCode": "1000029", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00029Q", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000029Q", "commonName": "Bow Road Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.527016, "lon": -0.026033}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000029Z", "indicator": "Stop Z", "stopLetter": "Z", "modes": ["bus"], "icsCode": "1000029", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00029Q", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000029Z", "commonName": "Bow Road Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.527351, "lon": -0.024029}], "lat": 51.527016, "lon": -0.026033}, {"$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": "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": "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": "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": "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": "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": "2"}], "children": [], "lat": 51.527116, "lon": -0.025005}, {"$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": "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": "9400ZZLUBWR1", "commonName": "Bow 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": "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": "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": "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"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.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"}], "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}], "lat": 51.52694, "lon": -0.025128}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "940GZZLUBWT", "modes": ["bus", "tube"], "icsCode": "1000018", "stopType": "NaptanMetroStation", "stationNaptan": "940GZZLUBWT", "lines": [{"$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": "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", "naptanIdReference": "490000018P", "stationAtcoCode": "490G00018P", "lineIdentifier": ["70"]}, {"$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": "bus", "lineIdentifier": ["70"]}, {"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["district", "circle"]}], "status": true, "id": "940GZZLUBWT", "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": "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": "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": "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": "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": "Other Facilities", "sourceSystemKey": "StaticObjects", "value": "electronic whiteboards in ticket hall."}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_29"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_105"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_164"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_224"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_261"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_307"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_568"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_584"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5653"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5859"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_4213"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5975"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5036"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_4529"}], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490G00018P", "modes": ["bus"], "icsCode": "1000018", "stopType": "NaptanOnstreetBusCoachStopCluster", "stationNaptan": "490G00018P", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490G00018P", "commonName": "Bayswater Station", "placeType": "StopPoint", "additionalProperties": [], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000018P", "indicator": "Stop P", "stopLetter": "P", "modes": ["bus"], "icsCode": "1000018", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00018P", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000018P", "commonName": "Bayswater Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.512602, "lon": -0.18768}], "lat": 51.512602, "lon": -0.18768}, {"$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": "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": "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": "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": "Photo 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": "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": "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": "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"}], "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": "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": "9400ZZLUBWT2", "commonName": "Bayswater 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": "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"}], "children": [], "lat": 51.512342, "lon": -0.188209}], "lat": 51.512284, "lon": -0.187938}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "940GZZLUBXN", "modes": ["tube"], "icsCode": "1000031", "stopType": "NaptanMetroStation", "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": "940GZZLUBXN", "commonName": "Brixton 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": "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": "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": "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": "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": "Brixton Underground Station,London Underground Ltd.,Brixton Rd,London,SW9 8HE"}, {"$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": "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, 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": "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": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_831"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_832"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_833"}], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490G00031E", "modes": ["bus"], "icsCode": "1000031", "stopType": "NaptanOnstreetBusCoachStopCluster", "stationNaptan": "490G00031E", "hubNaptanCode": "HUBBRX", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490G00031E", "commonName": "Brixton Station", "placeType": "StopPoint", "additionalProperties": [], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000031E", "indicator": "Stop L", "stopLetter": "L", "modes": ["bus"], "icsCode": "1000031", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00031E", "hubNaptanCode": "HUBBRX", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000031E", "commonName": "Brixton Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.462973, "lon": -0.113592}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000031W", "indicator": "Stop LA", "stopLetter": "LA", "modes": ["bus"], "icsCode": "1000031", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00031E", "hubNaptanCode": "HUBBRX", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000031W", "commonName": "Brixton Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.463049, "lon": -0.114395}], "lat": 51.463049, "lon": -0.114395}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490G00031N", "modes": ["bus"], "icsCode": "1000031", "stopType": "NaptanOnstreetBusCoachStopCluster", "stationNaptan": "490G00031N", "hubNaptanCode": "HUBBRX", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490G00031N", "commonName": "Brixton Station", "placeType": "StopPoint", "additionalProperties": [], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000031N", "indicator": "Stop N", "stopLetter": "N", "modes": ["bus"], "icsCode": "1000031", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00031N", "hubNaptanCode": "HUBBRX", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000031N", "commonName": "Brixton Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.462117, "lon": -0.115139}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000031P", "indicator": "Stop P", "stopLetter": "P", "modes": ["bus"], "icsCode": "1000031", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00031N", "hubNaptanCode": "HUBBRX", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000031P", "commonName": "Brixton Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.461795, "lon": -0.115253}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000031Q", "indicator": "Stop Q", "stopLetter": "Q", "modes": ["bus"], "icsCode": "1000031", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00031N", "hubNaptanCode": "HUBBRX", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000031Q", "commonName": "Brixton Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.461617, "lon": -0.115361}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000031R", "indicator": "Stop R", "stopLetter": "R", "modes": ["bus"], "icsCode": "1000031", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00031N", "hubNaptanCode": "HUBBRX", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000031R", "commonName": "Brixton Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.462236, "lon": -0.115292}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000031S", "indicator": "Stop S", "stopLetter": "S", "modes": ["bus"], "icsCode": "1000031", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00031N", "hubNaptanCode": "HUBBRX", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000031S", "commonName": "Brixton Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.462137, "lon": -0.115282}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000031T", "indicator": "Stop T", "stopLetter": "T", "modes": ["bus"], "icsCode": "1000031", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00031N", "hubNaptanCode": "HUBBRX", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000031T", "commonName": "Brixton Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.461968, "lon": -0.115376}], "lat": 51.462117, "lon": -0.115139}, {"$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": "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}], "lat": 51.462618, "lon": -0.114888}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "940GZZLUBZP", "modes": ["tube", "bus"], "icsCode": "1000020", "stopType": "NaptanMetroStation", "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"}, {"$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"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "940GZZLUBZP", "lineIdentifier": ["northern"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490000020L", "stationAtcoCode": "490G00020L", "lineIdentifier": ["1", "c11", "n5"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490000020K", "stationAtcoCode": "490G00020L", "lineIdentifier": ["n5", "c11", "1"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["northern"]}, {"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "bus", "lineIdentifier": ["1", "c11", "n5"]}], "status": true, "id": "940GZZLUBZP", "commonName": "Belsize Park 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": "Photo 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": "Cash Machines", "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": "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": "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": "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": "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_5609"}], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490G00020L", "modes": ["bus"], "icsCode": "1000020", "stopType": "NaptanOnstreetBusCoachStopCluster", "stationNaptan": "490G00020L", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490G00020L", "commonName": "Belsize Park Station", "placeType": "StopPoint", "additionalProperties": [], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000020K", "indicator": "Stop K", "stopLetter": "K", "modes": ["bus"], "icsCode": "1000020", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00020L", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000020K", "commonName": "Belsize Park Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.550697, "lon": -0.165281}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000020L", "indicator": "Stop L", "stopLetter": "L", "modes": ["bus"], "icsCode": "1000020", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00020L", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000020L", "commonName": "Belsize Park Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.550749, "lon": -0.165192}], "lat": 51.550697, "lon": -0.165281}, {"$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": "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}], "lat": 51.550311, "lon": -0.164648}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "940GZZLUCAL", "modes": ["tube"], "icsCode": "1000042", "stopType": "NaptanMetroStation", "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": "940GZZLUCAL", "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": "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": "0"}, {"$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": "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": "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": "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": "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"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "CarParks_800440"}], "children": [{"$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": "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}], "lat": 51.667985, "lon": -0.560689}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "940GZZLUCAR", "modes": ["bus", "tube"], "icsCode": "1000035", "stopType": "NaptanMetroStation", "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"}, {"$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": "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": "259", "name": "259", "uri": "/Line/259", "type": "Line", "crowding": {"$type": "Tfl.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"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490000035A", "stationAtcoCode": "490G00035A", "lineIdentifier": ["n91", "91", "17", "259"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490000035D", "stationAtcoCode": "490G00035A", "lineIdentifier": ["259", "17", "91", "n91"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["piccadilly"]}, {"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "bus", "lineIdentifier": ["n91", "91", "17", "259"]}], "status": true, "id": "940GZZLUCAR", "commonName": "Caledonian Road 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": "Photo 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": "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": "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": "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": "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": "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": "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": "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": "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": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490G00035A", "modes": ["bus"], "icsCode": "1000035", "stopType": "NaptanOnstreetBusCoachStopCluster", "stationNaptan": "490G00035A", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490G00035A", "commonName": "Caledonian Road Station", "placeType": "StopPoint", "additionalProperties": [], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000035A", "indicator": "Stop A", "stopLetter": "A", "modes": ["bus"], "icsCode": "1000035", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00035A", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000035A", "commonName": "Caledonian Road Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.548104, "lon": -0.117962}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000035D", "indicator": "Stop D", "stopLetter": "D", "modes": ["bus"], "icsCode": "1000035", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00035A", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000035D", "commonName": "Caledonian Road Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.548125, "lon": -0.118149}], "lat": 51.548104, "lon": -0.117962}, {"$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": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$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"}], "children": [], "lat": 51.548574, "lon": -0.118116}, {"$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": "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": "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": "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": "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": "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": "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}], "lat": 51.548519, "lon": -0.118493}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "940GZZLUCFM", "modes": ["tube", "bus"], "icsCode": "1000043", "stopType": "NaptanMetroStation", "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"}, {"$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": "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": "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": "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": "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": "n28", "name": "N28", "uri": "/Line/n28", "type": "Line", "crowding": {"$type": "Tfl.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"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490000043CD", "stationAtcoCode": "490G00043CD", "lineIdentifier": ["n5", "393", "1"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490000043CA", "stationAtcoCode": "490G00043CD", "lineIdentifier": ["n31", "31", "n28"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490000043CC", "stationAtcoCode": "490G00043CD", "lineIdentifier": ["n5", "1", "393"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490000043CB", "stationAtcoCode": "490G00043CD", "lineIdentifier": ["n31", "31", "n28"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["northern"]}, {"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "bus", "lineIdentifier": ["n5", "393", "1", "n31", "31", "n28"]}], "status": true, "id": "940GZZLUCFM", "commonName": "Chalk Farm 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": "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": "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": "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": "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": "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": "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": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5772"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5818"}], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490G00043CD", "modes": ["bus"], "icsCode": "1000043", "stopType": "NaptanOnstreetBusCoachStopCluster", "stationNaptan": "490G00043CD", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490G00043CD", "commonName": "Chalk Farm Station", "placeType": "StopPoint", "additionalProperties": [], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000043CA", "indicator": "Stop CA", "stopLetter": "CA", "modes": ["bus"], "icsCode": "1000043", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00043CD", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000043CA", "commonName": "Chalk Farm Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.543974, "lon": -0.154029}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000043CB", "indicator": "Stop CB", "stopLetter": "CB", "modes": ["bus"], "icsCode": "1000043", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00043CD", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000043CB", "commonName": "Chalk Farm Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.543878, "lon": -0.15422}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000043CC", "indicator": "Stop CC", "stopLetter": "CC", "modes": ["bus"], "icsCode": "1000043", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00043CD", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000043CC", "commonName": "Chalk Farm Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.544368, "lon": -0.153926}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000043CD", "indicator": "Stop CD", "stopLetter": "CD", "modes": ["bus"], "icsCode": "1000043", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00043CD", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000043CD", "commonName": "Chalk Farm Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.544644, "lon": -0.153742}], "lat": 51.543878, "lon": -0.15422}, {"$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": "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": "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": "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": "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": "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"}], "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}], "lat": 51.544118, "lon": -0.153388}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "940GZZLUCGN", "modes": ["tube"], "icsCode": "1000056", "stopType": "NaptanMetroStation", "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": "940GZZLUCGN", "commonName": "Covent Garden 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": "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": "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": "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": "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": "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": "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": "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_18"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_64"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_244"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_283"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_335"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_338"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_358"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_383"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_386"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_388"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_562"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_594"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_751"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5506"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_3914"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5364"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5171"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5516"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5737"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5875"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5090"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5767"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5965"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5481"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_3915"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5395"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5867"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5264"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5365"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5758"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5331"}], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490G00056E", "modes": ["bus"], "icsCode": "1000056", "stopType": "NaptanOnstreetBusCoachStopCluster", "stationNaptan": "940GZZLUCGN", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490G00056E", "commonName": "Covent Garden Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.513093, "lon": -0.124436}, {"$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": "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": "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"}], "children": [], "lat": 51.513022, "lon": -0.124006}, {"$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": "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": "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": "Help Points", "sourceSystemKey": "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": "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": "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": "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": "Lifts", "sourceSystemKey": "StaticObjects", "value": "4"}], "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}], "lat": 51.513093, "lon": -0.124436}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "940GZZLUCGT", "modes": ["tube"], "icsCode": "1000039", "stopType": "NaptanMetroStation", "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": "940GZZLUCGT", "commonName": "Canning Town 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": "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": "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": "Accessibility", "key": "AccessViaLift", "sourceSystemKey": "LRAD", "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": "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": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "10"}, {"$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": "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": "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": "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": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5301"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "LimitedCapacityLift", "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": "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": "ToiletNote", "sourceSystemKey": "LRAD", "value": "(bus station)"}, {"$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": "AddtionalInformation", "sourceSystemKey": "LRAD", "value": "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 "}], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "4900ZZDLCGT2", "indicator": "Entrance 1", "stopLetter": "1", "modes": [], "icsCode": "1000039", "stopType": "NaptanMetroEntrance", "stationNaptan": "940GZZLUCGT", "hubNaptanCode": "HUBCAN", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "4900ZZDLCGT2", "commonName": "Canning Town Underground Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.514584, "lon": 0.008135}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "4900ZZDLCGT3", "indicator": "Entrance 2", "stopLetter": "2", "modes": [], "icsCode": "1000039", "stopType": "NaptanMetroEntrance", "stationNaptan": "940GZZLUCGT", "hubNaptanCode": "HUBCAN", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "4900ZZDLCGT3", "commonName": "Canning Town Underground Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.514464, "lon": 0.007251}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "4900ZZDLCGT4", "indicator": "Entrance 3", "stopLetter": "3", "modes": [], "icsCode": "1000039", "stopType": "NaptanMetroEntrance", "stationNaptan": "940GZZLUCGT", "hubNaptanCode": "HUBCAN", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "4900ZZDLCGT4", "commonName": "Canning Town Underground Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.514911, "lon": 0.007948}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "4900ZZDLCGT5", "indicator": "Entrance 4", "stopLetter": "4", "modes": [], "icsCode": "1000039", "stopType": "NaptanMetroEntrance", "stationNaptan": "940GZZLUCGT", "hubNaptanCode": "HUBCAN", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "4900ZZDLCGT5", "commonName": "Canning Town Underground Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.514671, "lon": 0.008312}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "4900ZZDLCGT6", "indicator": "Entrance 5", "stopLetter": "5", "modes": [], "icsCode": "1000039", "stopType": "NaptanMetroEntrance", "stationNaptan": "940GZZLUCGT", "hubNaptanCode": "HUBCAN", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "4900ZZDLCGT6", "commonName": "Canning Town Underground Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.513885, "lon": 0.008998}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "4900ZZDLCGT7", "indicator": "Entrance 6", "stopLetter": "6", "modes": [], "icsCode": "1000039", "stopType": "NaptanMetroEntrance", "stationNaptan": "940GZZLUCGT", "hubNaptanCode": "HUBCAN", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "4900ZZDLCGT7", "commonName": "Canning Town Underground Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.513314, "lon": 0.009276}, {"$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}], "lat": 51.513584, "lon": 0.008322}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "940GZZLUCHL", "modes": ["bus", "tube"], "icsCode": "1000044", "stopType": "NaptanMetroStation", "stationNaptan": "940GZZLUCHL", "lines": [{"$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": "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": "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": "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": "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": "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": "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", "naptanIdReference": "490000044F", "stationAtcoCode": "490G00044E", "lineIdentifier": ["59", "8", "n25", "133", "n242", "n8"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "940GZZLUCHL", "lineIdentifier": ["central"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490000044E", "stationAtcoCode": "490G00044E", "lineIdentifier": ["133", "59", "8", "n25", "n242", "n8"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "bus", "lineIdentifier": ["59", "8", "n25", "133", "n242", "n8"]}, {"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["central"]}], "status": true, "id": "940GZZLUCHL", "commonName": "Chancery Lane 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": "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": "Facility", "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": "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": "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": "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": "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": "Toilets", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_17"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_22"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_66"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_67"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_68"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_84"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_147"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_232"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_436"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_546"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_835"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5904"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_3528"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_4205"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5912"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5620"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_4204"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5676"}], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490G00044E", "modes": ["bus"], "icsCode": "1000044", "stopType": "NaptanOnstreetBusCoachStopCluster", "stationNaptan": "490G00044E", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490G00044E", "commonName": "Chancery Lane Station", "placeType": "StopPoint", "additionalProperties": [], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000044E", "indicator": "Stop E", "stopLetter": "E", "modes": ["bus"], "icsCode": "1000044", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00044E", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000044E", "commonName": "Chancery Lane Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.518384, "lon": -0.112413}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000044F", "indicator": "Stop F", "stopLetter": "F", "modes": ["bus"], "icsCode": "1000044", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00044E", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000044F", "commonName": "Chancery Lane Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.518165, "lon": -0.112177}], "lat": 51.518384, "lon": -0.112413}, {"$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": "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": "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": "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": "Help Points", "sourceSystemKey": "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": "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": "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": "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": "Payphones", "sourceSystemKey": "StaticObjects", "value": "1"}], "children": [], "lat": 51.518183, "lon": -0.11111}, {"$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": "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": "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"}], "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}], "lat": 51.518247, "lon": -0.111583}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "940GZZLUCHX", "modes": ["tube"], "icsCode": "1000045", "stopType": "NaptanMetroStation", "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"}, {"$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": ["northern"]}, {"$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": ["northern", "bakerloo"]}], "status": true, "id": "940GZZLUCHX", "commonName": "Charing Cross 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": "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": "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": "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": "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": "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": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_64"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_83"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_160"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_226"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_229"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_233"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_325"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_341"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_354"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5596"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5016"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5670"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5364"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5325"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5281"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5671"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5737"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_4470"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5855"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_4982"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5681"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5853"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5867"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5854"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5856"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5758"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5572"}], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490G00045", "modes": ["bus"], "icsCode": "1000045", "stopType": "NaptanOnstreetBusCoachStopCluster", "stationNaptan": "490G00045", "hubNaptanCode": "HUBCHX", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490G00045", "commonName": "Charing Cross Stn / Trafalgar Square", "placeType": "StopPoint", "additionalProperties": [], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490013766E", "indicator": "Stop E", "stopLetter": "E", "modes": ["bus"], "icsCode": "1000045", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00045", "hubNaptanCode": "HUBCHX", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490013766E", "commonName": "Charing Cross Stn / Trafalgar Square", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.508044, "lon": -0.126487}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490013766H", "indicator": "Stop H", "stopLetter": "H", "modes": ["bus"], "icsCode": "1000045", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00045", "hubNaptanCode": "HUBCHX", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490013766H", "commonName": "Charing Cross Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.508433, "lon": -0.12552}], "lat": 51.508044, "lon": -0.126487}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "4900CHRX0", "indicator": "Entrance 9", "stopLetter": "9", "modes": [], "icsCode": "1000045", "stopType": "NaptanRailEntrance", "stationNaptan": "940GZZLUCHX", "hubNaptanCode": "HUBCHX", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "4900CHRX0", "commonName": "London Charing Cross Rail Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.508118, "lon": -0.124971}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "4900CHRX1", "indicator": "Entrance 12", "stopLetter": "12", "modes": [], "icsCode": "1000045", "stopType": "NaptanRailEntrance", "stationNaptan": "940GZZLUCHX", "hubNaptanCode": "HUBCHX", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "4900CHRX1", "commonName": "London Charing Cross Rail Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.508061, "lon": -0.124224}, {"$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": "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": "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"}], "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": "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": "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": "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": "Car park", "sourceSystemKey": "StaticObjects", "value": "no"}], "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": "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"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.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"}], "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}], "lat": 51.50741, "lon": -0.127277}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "940GZZLUCKS", "modes": ["tube", "bus"], "icsCode": "1000053", "stopType": "NaptanMetroStation", "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"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "699", "name": "699", "uri": "/Line/699", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "298", "name": "298", "uri": "/Line/298", "type": "Line", "crowding": {"$type": "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": "299", "name": "299", "uri": "/Line/299", "type": "Line", "crowding": {"$type": "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"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "940GZZLUCKS", "lineIdentifier": ["piccadilly"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490000053A", "stationAtcoCode": "490G00053N2", "lineIdentifier": ["699", "298"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490000053N2", "stationAtcoCode": "490G00053N2", "lineIdentifier": ["n91", "299", "384"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490000053B", "stationAtcoCode": "490G00053N2", "lineIdentifier": ["298", "384", "299", "699", "n91"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["piccadilly"]}, {"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "bus", "lineIdentifier": ["699", "298", "n91", "299", "384"]}], "status": true, "id": "940GZZLUCKS", "commonName": "Cockfosters 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": "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": "Cockfosters Station,London Underground Ltd.,Cockfosters Rd,Barnet,Herts,EN4 0DZ"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, 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": "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": "Help Points", "sourceSystemKey": "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": "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": "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_5343"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "CarParks_800470"}], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490G00053N2", "modes": ["bus"], "icsCode": "1000053", "stopType": "NaptanOnstreetBusCoachStopCluster", "stationNaptan": "490G00053N2", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490G00053N2", "commonName": "Cockfosters Station", "placeType": "StopPoint", "additionalProperties": [], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000053A", "indicator": "Stop A", "stopLetter": "A", "modes": ["bus"], "icsCode": "1000053", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00053N2", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000053A", "commonName": "Cockfosters Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.651677, "lon": -0.150104}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000053B", "indicator": "Stop B", "stopLetter": "B", "modes": ["bus"], "icsCode": "1000053", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00053N2", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000053B", "commonName": "Cockfosters Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.651509, "lon": -0.149764}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000053N2", "indicator": "Stop", "modes": ["bus"], "icsCode": "1000053", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00053N2", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000053N2", "commonName": "Cockfosters Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.651476, "lon": -0.149939}], "lat": 51.651509, "lon": -0.149764}, {"$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": "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"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}], "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": "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}], "lat": 51.65152, "lon": -0.149171}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "940GZZLUCND", "modes": ["bus", "tube"], "icsCode": "1000054", "stopType": "NaptanMetroStation", "stationNaptan": "940GZZLUCND", "lines": [{"$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": "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": "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": "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": "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": "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", "naptanIdReference": "490000054CA", "stationAtcoCode": "490G00054CB", "lineIdentifier": ["n5", "642", "125", "303", "632", "204"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490000054CR", "stationAtcoCode": "490G00054CB", "lineIdentifier": ["125"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490000054ZT", "stationAtcoCode": "490G00054CB", "lineIdentifier": ["204", "303", "n5"]}, {"$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": "bus", "lineIdentifier": ["n5", "642", "125", "303", "632", "204"]}, {"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["northern"]}], "status": true, "id": "940GZZLUCND", "commonName": "Colindale 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": "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": "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": "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": "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": "Help 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": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "CarParks_800471"}], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490G00054CB", "modes": ["bus"], "icsCode": "1000054", "stopType": "NaptanOnstreetBusCoachStopCluster", "stationNaptan": "490G00054CB", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490G00054CB", "commonName": "Colindale Station", "placeType": "StopPoint", "additionalProperties": [], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000054CA", "indicator": "Stop CA", "stopLetter": "CA", "modes": ["bus"], "icsCode": "1000054", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00054CB", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000054CA", "commonName": "Colindale Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.595649, "lon": -0.248828}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000054CB", "indicator": "Stop CB", "stopLetter": "CB", "modes": ["bus"], "icsCode": "1000054", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00054CB", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000054CB", "commonName": "Colindale Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.59512, "lon": -0.250162}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000054CR", "indicator": "Stop", "modes": ["bus"], "icsCode": "1000054", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00054CB", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000054CR", "commonName": "Colindale Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.595281, "lon": -0.250661}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000054ZT", "indicator": "Stop", "modes": ["bus"], "icsCode": "1000054", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00054CB", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000054ZT", "commonName": "Colindale Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.594545, "lon": -0.251397}], "lat": 51.595649, "lon": -0.248828}, {"$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": "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": "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": "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": "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": "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": "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": "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"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help 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": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "4"}], "children": [], "lat": 51.595508, "lon": -0.250089}], "lat": 51.595424, "lon": -0.249919}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "940GZZLUCPC", "modes": ["tube", "bus"], "icsCode": "1000050", "stopType": "NaptanMetroStation", "stationNaptan": "940GZZLUCPC", "lines": [{"$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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "249", "name": "249", "uri": "/Line/249", "type": "Line", "crowding": {"$type": "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": "490000050K", "stationAtcoCode": "490G00050G", "lineIdentifier": ["35", "137", "88", "417", "n137", "322", "37", "345"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "940GZZLUCPC", "lineIdentifier": ["northern"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490015234A", "stationAtcoCode": "490G00050A", "lineIdentifier": ["137", "417", "n137"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490000050D", "stationAtcoCode": "490G00050G", "lineIdentifier": ["155", "n155", "88", "50"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490000050G", "stationAtcoCode": "490G00050G", "lineIdentifier": ["n155", "155", "50"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490000050E", "stationAtcoCode": "490G00050G", "lineIdentifier": ["35", "690", "345", "322", "37"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490015235R", "stationAtcoCode": "490G00050G", "lineIdentifier": ["249", "690"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "bus", "lineIdentifier": ["35", "137", "88", "417", "n137", "322", "37", "345", "155", "n155", "50", "690", "249"]}, {"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["northern"]}], "status": true, "id": "940GZZLUCPC", "commonName": "Clapham Common 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": "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": "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": "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": "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": "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": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_355"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5793"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5787"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "ServiceInfo", "key": "Night", "sourceSystemKey": "TransXchangeETL", "value": "yes"}], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490G00050A", "modes": ["bus"], "icsCode": "1000050", "stopType": "NaptanOnstreetBusCoachStopCluster", "stationNaptan": "490G00050A", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490G00050A", "commonName": "Clapham Common Station", "placeType": "StopPoint", "additionalProperties": [], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490015234A", "indicator": "Stop A", "stopLetter": "A", "modes": ["bus"], "icsCode": "1000050", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00050A", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490015234A", "commonName": "Clapham Common Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.461881, "lon": -0.138672}], "lat": 51.461881, "lon": -0.138672}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490G00050G", "modes": ["bus"], "icsCode": "1000050", "stopType": "NaptanOnstreetBusCoachStopCluster", "stationNaptan": "490G00050G", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490G00050G", "commonName": "Clapham Common Station", "placeType": "StopPoint", "additionalProperties": [], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000050D", "indicator": "Stop D", "stopLetter": "D", "modes": ["bus"], "icsCode": "1000050", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00050G", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000050D", "commonName": "Clapham Common Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.461519, "lon": -0.138514}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000050E", "indicator": "Stop E", "stopLetter": "E", "modes": ["bus"], "icsCode": "1000050", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00050G", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000050E", "commonName": "Clapham Common Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.461406, "lon": -0.138763}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000050G", "indicator": "Stop G", "stopLetter": "G", "modes": ["bus"], "icsCode": "1000050", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00050G", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000050G", "commonName": "Clapham Common Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.461198, "lon": -0.138685}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000050K", "indicator": "Stop K", "stopLetter": "K", "modes": ["bus"], "icsCode": "1000050", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00050G", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000050K", "commonName": "Clapham Common Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.461523, "lon": -0.138211}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490015235R", "indicator": "Stop Z", "stopLetter": "Z", "modes": ["bus"], "icsCode": "1000050", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00050G", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490015235R", "commonName": "Clapham Common Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.460645, "lon": -0.139542}], "lat": 51.461519, "lon": -0.138514}, {"$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": "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": "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": "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": "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}], "lat": 51.461742, "lon": -0.138317}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "940GZZLUCPK", "modes": ["bus", "tube"], "icsCode": "1000041", "stopType": "NaptanMetroStation", "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"}, {"$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": "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": "340", "name": "340", "uri": "/Line/340", "type": "Line", "crowding": {"$type": "Tfl.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"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490000041B", "stationAtcoCode": "490G00041B", "lineIdentifier": ["186", "79", "340"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490000041A", "stationAtcoCode": "490G00041B", "lineIdentifier": ["79", "186", "340"]}], "lineModeGroups": [{"$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": ["186", "79", "340"]}], "status": true, "id": "940GZZLUCPK", "commonName": "Canons Park 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": "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": "Facility", "key": "Help 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": "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": "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": "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": "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": "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": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "CarParks_800469"}], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490G00041B", "modes": ["bus"], "icsCode": "1000041", "stopType": "NaptanOnstreetBusCoachStopCluster", "stationNaptan": "490G00041B", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490G00041B", "commonName": "Canons Park Station", "placeType": "StopPoint", "additionalProperties": [], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000041A", "indicator": "Stop A", "stopLetter": "A", "modes": ["bus"], "icsCode": "1000041", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00041B", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000041A", "commonName": "Canons Park Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.607542, "lon": -0.294352}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000041B", "indicator": "Stop B", "stopLetter": "B", "modes": ["bus"], "icsCode": "1000041", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00041B", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000041B", "commonName": "Canons Park Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.607395, "lon": -0.295383}], "lat": 51.607395, "lon": -0.295383}, {"$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": "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": "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, 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": "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"}], "children": [], "lat": 51.608063, "lon": -0.294867}], "lat": 51.607701, "lon": -0.294693}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "940GZZLUCPN", "modes": ["bus", "tube"], "icsCode": "1000051", "stopType": "NaptanMetroStation", "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"}, {"$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": "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": "322", "name": "322", "uri": "/Line/322", "type": "Line", "crowding": {"$type": "Tfl.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"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490000051N1", "stationAtcoCode": "490G00051G", "lineIdentifier": ["p5"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490000051F", "stationAtcoCode": "490G00051G", "lineIdentifier": ["345"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490000051D", "stationAtcoCode": "490G00051G", "lineIdentifier": ["p5", "322"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["northern"]}, {"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "bus", "lineIdentifier": ["p5", "345", "322"]}], "status": true, "id": "940GZZLUCPN", "commonName": "Clapham North 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": "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": "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": "ServiceInfo", "key": "Night", "sourceSystemKey": "TransXchangeETL", "value": "yes"}, {"$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": "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": "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": "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": "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"}, {"$type": "Tfl.Api.Presentation.Entities.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": "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": "Accessibility", "key": "AccessViaLift", "sourceSystemKey": "LRAD", "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": "Accessibility", "key": "BlueBadgeCarParkSpaces", "sourceSystemKey": "LRAD", "value": "0"}], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490G00051G", "modes": ["bus"], "icsCode": "1000051", "stopType": "NaptanOnstreetBusCoachStopCluster", "stationNaptan": "490G00051G", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490G00051G", "commonName": "Clapham North Station", "placeType": "StopPoint", "additionalProperties": [], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000051D", "indicator": "Stop D", "stopLetter": "D", "modes": ["bus"], "icsCode": "1000051", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00051G", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000051D", "commonName": "Clapham North Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.46468, "lon": -0.129185}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000051F", "indicator": "Stop F", "stopLetter": "F", "modes": ["bus"], "icsCode": "1000051", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00051G", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000051F", "commonName": "Clapham North & High Street Stns", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.465033, "lon": -0.129905}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000051N1", "indicator": "Stop", "modes": ["bus"], "icsCode": "1000051", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00051G", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000051N1", "commonName": "Clapham North Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.46465, "lon": -0.12959}], "lat": 51.46465, "lon": -0.12959}, {"$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": "Facility", "key": "Escalators", "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": "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": "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": "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": "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": "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": "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": "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": "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"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.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": "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": "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": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}], "children": [], "lat": 51.465718, "lon": -0.129345}], "lat": 51.465135, "lon": -0.130016}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "940GZZLUCPS", "modes": ["tube", "bus"], "icsCode": "1000052", "stopType": "NaptanMetroStation", "stationNaptan": "940GZZLUCPS", "lines": [{"$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": "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": "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": "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": "n155", "name": "N155", "uri": "/Line/n155", "type": "Line", "crowding": {"$type": "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": "490000052SB", "stationAtcoCode": "490G00052SD", "lineIdentifier": ["g1", "690"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490000052SA", "stationAtcoCode": "490G00052SD", "lineIdentifier": ["g1", "690"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "940GZZLUCPS", "lineIdentifier": ["northern"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490000052SC", "stationAtcoCode": "490G00052SD", "lineIdentifier": ["155", "249", "355", "n155"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490000052SD", "stationAtcoCode": "490G00052SD", "lineIdentifier": ["355", "249", "155", "n155"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "bus", "lineIdentifier": ["g1", "690", "155", "249", "355", "n155"]}, {"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["northern"]}], "status": true, "id": "940GZZLUCPS", "commonName": "Clapham South 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": "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": "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": "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": "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": "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": "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": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_753"}], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490G00052SD", "modes": ["bus"], "icsCode": "1000052", "stopType": "NaptanOnstreetBusCoachStopCluster", "stationNaptan": "490G00052SD", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490G00052SD", "commonName": "Clapham South Station", "placeType": "StopPoint", "additionalProperties": [], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000052SA", "indicator": "Stop SA", "stopLetter": "SA", "modes": ["bus"], "icsCode": "1000052", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00052SD", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000052SA", "commonName": "Clapham South Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.452883, "lon": -0.148566}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000052SB", "indicator": "Stop SB", "stopLetter": "SB", "modes": ["bus"], "icsCode": "1000052", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00052SD", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000052SB", "commonName": "Clapham South Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.453007, "lon": -0.148431}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000052SC", "indicator": "Stop SC", "stopLetter": "SC", "modes": ["bus"], "icsCode": "1000052", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00052SD", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000052SC", "commonName": "Clapham South Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.452433, "lon": -0.147979}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000052SD", "indicator": "Stop SD", "stopLetter": "SD", "modes": ["bus"], "icsCode": "1000052", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00052SD", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000052SD", "commonName": "Clapham South Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.452426, "lon": -0.147534}], "lat": 51.452426, "lon": -0.147534}, {"$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": "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 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": "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": "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": "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": "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"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.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.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}], "lat": 51.452654, "lon": -0.147582}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "940GZZLUCSD", "modes": ["tube", "bus"], "icsCode": "1000055", "stopType": "NaptanMetroStation", "stationNaptan": "940GZZLUCSD", "lines": [{"$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": "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": "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": "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": "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": "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": "200", "name": "200", "uri": "/Line/200", "type": "Line", "crowding": {"$type": "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": "490005223N", "stationAtcoCode": "490G00055A", "lineIdentifier": ["470"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490000055A", "stationAtcoCode": "490G00055A", "lineIdentifier": ["57", "219", "131", "n155"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "940GZZLUCSD", "lineIdentifier": ["northern"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490000055D", "stationAtcoCode": "490G00055A", "lineIdentifier": ["57", "n155", "219", "131"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490005223C", "stationAtcoCode": "490G00055A", "lineIdentifier": ["470", "152", "655", "200"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490015237B", "stationAtcoCode": "490G00055A", "lineIdentifier": ["200", "152", "655"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "bus", "lineIdentifier": ["470", "57", "219", "131", "n155", "152", "655", "200"]}, {"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["northern"]}], "status": true, "id": "940GZZLUCSD", "commonName": "Colliers Wood 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": "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": "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": "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": "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": "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": "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": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490G00055A", "modes": ["bus"], "icsCode": "1000055", "stopType": "NaptanOnstreetBusCoachStopCluster", "stationNaptan": "490G00055A", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490G00055A", "commonName": "Colliers Wood Station", "placeType": "StopPoint", "additionalProperties": [], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000055A", "indicator": "Stop A", "stopLetter": "A", "modes": ["bus"], "icsCode": "1000055", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00055A", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000055A", "commonName": "Colliers Wood Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.418557, "lon": -0.177711}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000055D", "indicator": "Stop D", "stopLetter": "D", "modes": ["bus"], "icsCode": "1000055", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00055A", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000055D", "commonName": "Colliers Wood Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.418887, "lon": -0.177554}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000055Z", "indicator": "->W", "stopLetter": "->W", "modes": ["bus"], "icsCode": "1000055", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00055A", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000055Z", "commonName": "Colliers Wood Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.416533, "lon": -0.178841}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490005223C", "indicator": "Stop C", "stopLetter": "C", "modes": ["bus"], "icsCode": "1000055", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00055A", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490005223C", "commonName": "Colliers Wood Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.417718, "lon": -0.178132}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490005223N", "indicator": "->N", "stopLetter": "->N", "modes": ["bus"], "icsCode": "1000055", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00055A", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490005223N", "commonName": "Colliers Wood Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.417133, "lon": -0.178098}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490015237B", "indicator": "Stop B", "stopLetter": "B", "modes": ["bus"], "icsCode": "1000055", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00055A", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490015237B", "commonName": "Colliers Wood Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.417652, "lon": -0.177948}], "lat": 51.416533, "lon": -0.178841}, {"$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": "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}], "lat": 51.41816, "lon": -0.178086}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "940GZZLUCSM", "modes": ["tube"], "icsCode": "1000046", "stopType": "NaptanMetroStation", "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": "940GZZLUCSM", "commonName": "Chesham 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": "Accessibility", "key": "Toilet", "sourceSystemKey": "LRAD", "value": "No"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "CarParks_800502"}, {"$type": "Tfl.Api.Presentation.Entities.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": "Help Points", "sourceSystemKey": "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": "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": "BlueBadgeCarParkSpaces", "sourceSystemKey": "LRAD", "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": "Geo", "key": "Zone", "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": "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": "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": "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": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "0"}], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "040G00002100", "modes": [], "icsCode": "1000304", "stopType": "NaptanOnstreetBusCoachStopPair", "stationNaptan": "040G00002100", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "040G00002100", "commonName": "Underground Station", "placeType": "StopPoint", "additionalProperties": [], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "040000002100", "indicator": "o/s", "modes": [], "icsCode": "1000304", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "040G00002100", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "040000002100", "commonName": "Underground Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.705453, "lon": -0.61115}], "lat": 51.705453, "lon": -0.61115}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "040G00002174", "modes": [], "icsCode": "1000494", "stopType": "NaptanOnstreetBusCoachStopPair", "stationNaptan": "040G00002174", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "040G00002174", "commonName": "Broadway", "placeType": "StopPoint", "additionalProperties": [], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "040000002173", "indicator": "Stop B", "stopLetter": "B", "modes": [], "icsCode": "1000494", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "040G00002174", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "040000002173", "commonName": "Broadway", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.70635, "lon": -0.612512}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "040000002174", "indicator": "Stop A", "stopLetter": "A", "modes": [], "icsCode": "1000494", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "040G00002174", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "040000002174", "commonName": "Broadway", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.706309, "lon": -0.612875}], "lat": 51.706309, "lon": -0.612875}, {"$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": "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": "Help 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": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "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": "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": "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}], "lat": 51.705208, "lon": -0.611247}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "940GZZLUCST", "modes": ["tube"], "icsCode": "1000040", "stopType": "NaptanMetroStation", "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": "940GZZLUCST", "commonName": "Cannon Street 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": "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": "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": "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": "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": "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": "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": "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"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_101"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_136"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_276"}, {"$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_427"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_579"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_587"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5907"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5901"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5897"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5899"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5918"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5919"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5921"}], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490G00040E", "modes": ["bus"], "icsCode": "1000040", "stopType": "NaptanOnstreetBusCoachStopCluster", "stationNaptan": "490G00040E", "hubNaptanCode": "HUBCST", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490G00040E", "commonName": "Cannon Street Station", "placeType": "StopPoint", "additionalProperties": [], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000040A", "indicator": "Stop MA", "stopLetter": "MA", "modes": ["bus"], "icsCode": "1000040", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00040E", "hubNaptanCode": "HUBCST", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000040A", "commonName": "Cannon Street Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.511345, "lon": -0.089185}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000040B", "indicator": "Stop MB", "stopLetter": "MB", "modes": ["bus"], "icsCode": "1000040", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00040E", "hubNaptanCode": "HUBCST", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000040B", "commonName": "Cannon Street Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.511924, "lon": -0.091063}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490004756E", "indicator": "Stop 47", "stopLetter": "47", "modes": ["bus"], "icsCode": "1000040", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00040E", "hubNaptanCode": "HUBCST", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490004756E", "commonName": "Cannon Street Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.510435, "lon": -0.090232}], "lat": 51.511924, "lon": -0.091063}, {"$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": "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": "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": "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}], "lat": 51.51151, "lon": -0.090432}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "940GZZLUCTN", "modes": ["bus", "tube"], "icsCode": "1000036", "stopType": "NaptanMetroStation", "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"}, {"$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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "940GZZLUCTN", "lineIdentifier": ["northern"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490015041Y", "stationAtcoCode": "490G00036N", "lineIdentifier": ["214", "n253", "29", "134", "n29", "253", "n279", "n20"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490000036S", "stationAtcoCode": "490G00036N", "lineIdentifier": ["n5", "n279", "n20", "n27", "n29", "134", "24", "27", "29", "n253"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490015041X", "stationAtcoCode": "490G00036N", "lineIdentifier": ["1", "27", "24", "31", "n27", "n31", "n5", "n28"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490015531S", "stationAtcoCode": "490G00036N", "lineIdentifier": ["31", "n31", "n28"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["northern"]}, {"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "bus", "lineIdentifier": ["214", "n253", "29", "134", "n29", "253", "n279", "n20", "n5", "n27", "24", "27", "1", "31", "n31", "n28"]}], "status": true, "id": "940GZZLUCTN", "commonName": "Camden Town 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": "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, 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": "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": "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": "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": "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": "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": "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": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_456"}, {"$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_535"}, {"$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_5772"}, {"$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": "490G00036N", "modes": ["bus"], "icsCode": "1000036", "stopType": "NaptanOnstreetBusCoachStopCluster", "stationNaptan": "490G00036N", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490G00036N", "commonName": "Camden Town Station", "placeType": "StopPoint", "additionalProperties": [], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000036S", "indicator": "Stop S", "stopLetter": "S", "modes": ["bus"], "icsCode": "1000036", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00036N", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000036S", "commonName": "Camden Town Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.539799, "lon": -0.141349}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000036Z", "indicator": "Stop", "modes": ["bus"], "icsCode": "1000036", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00036N", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000036Z", "commonName": "Camden Town Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.539495, "lon": -0.142039}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490015041X", "indicator": "Stop X", "stopLetter": "X", "modes": ["bus"], "icsCode": "1000036", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00036N", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490015041X", "commonName": "Camden Town Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.53843, "lon": -0.142342}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490015041Y", "indicator": "Stop Y", "stopLetter": "Y", "modes": ["bus"], "icsCode": "1000036", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00036N", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490015041Y", "commonName": "Camden Town Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.537938, "lon": -0.141929}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490015531S", "indicator": "Stop Z1", "stopLetter": "Z1", "modes": ["bus"], "icsCode": "1000036", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00036N", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490015531S", "commonName": "Camden Town Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.539216, "lon": -0.141445}], "lat": 51.539495, "lon": -0.142039}, {"$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": "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": "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"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.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": "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": "Help Points", "sourceSystemKey": "StaticObjects", "value": "0 on platforms, 0 in ticket halls, 0 elsewhere"}], "children": [], "lat": 51.539246, "lon": -0.14277}, {"$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": "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": "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": "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}], "lat": 51.539292, "lon": -0.14274}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "940GZZLUCWL", "modes": ["bus", "tube"], "icsCode": "1000047", "stopType": "NaptanMetroStation", "stationNaptan": "940GZZLUCWL", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "167", "name": "167", "uri": "/Line/167", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "667", "name": "667", "uri": "/Line/667", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "677", "name": "677", "uri": "/Line/677", "type": "Line", "crowding": {"$type": "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"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "150042023007", "stationAtcoCode": "150G00003656", "lineIdentifier": ["167", "667", "677"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "1500IM379", "stationAtcoCode": "150G00000945", "lineIdentifier": ["677", "167"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "940GZZLUCWL", "lineIdentifier": ["central"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "1500IM379B", "stationAtcoCode": "150G00000945", "lineIdentifier": ["677", "167"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "bus", "lineIdentifier": ["167", "667", "677"]}, {"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["central"]}], "status": true, "id": "940GZZLUCWL", "commonName": "Chigwell 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": "no"}, {"$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": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$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": "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": "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": "Other Facilities", "sourceSystemKey": "StaticObjects", "value": "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": "Payphones", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "0"}], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "150G00003657", "modes": [], "stopType": "NaptanOnstreetBusCoachStopPair", "stationNaptan": "150G00003657", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "150G00003657", "commonName": "Chigwell Station", "placeType": "StopPoint", "additionalProperties": [], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "150G00000945", "modes": ["bus"], "icsCode": "1000319", "stopType": "NaptanOnstreetBusCoachStopCluster", "stationNaptan": "150G00000945", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "150G00000945", "commonName": "Chigwell Station", "placeType": "StopPoint", "additionalProperties": [], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "1500IM379", "indicator": "adj", "modes": ["bus"], "icsCode": "1000319", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "150G00000945", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "1500IM379", "commonName": "Chigwell Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.618999, "lon": 0.07522}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "1500IM379B", "indicator": "opp", "modes": ["bus"], "icsCode": "1000319", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "150G00000945", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "1500IM379B", "commonName": "Chigwell Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.619073, "lon": 0.075122}], "lat": 51.618999, "lon": 0.07522}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "150G00003656", "modes": ["bus"], "icsCode": "1016574", "stopType": "NaptanOnstreetBusCoachStopPair", "stationNaptan": "150G00003656", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "150G00003656", "commonName": "Station Road", "placeType": "StopPoint", "additionalProperties": [], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "150042023007", "indicator": "E-bound", "modes": ["bus"], "icsCode": "1016574", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "150G00003656", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "150042023007", "commonName": "Station Road", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.618191, "lon": 0.075169}], "lat": 51.618191, "lon": 0.075169}], "lat": 51.617916, "lon": 0.075041}, {"$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": "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}], "lat": 51.617916, "lon": 0.075041}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "940GZZLUCWP", "modes": ["tube"], "icsCode": "1000048", "stopType": "NaptanMetroStation", "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": "940GZZLUCWP", "commonName": "Chiswick 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": "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": "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": "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": "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": "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": "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": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5218"}], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490G00048S", "modes": ["bus"], "icsCode": "1000048", "stopType": "NaptanOnstreetBusCoachStopCluster", "stationNaptan": "940GZZLUCWP", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490G00048S", "commonName": "Chiswick Park Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.494627, "lon": -0.267972}, {"$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": "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"}, {"$type": "Tfl.Api.Presentation.Entities.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"}], "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": "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": "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"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.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"}], "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": "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": "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": "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": "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": "Help Points", "sourceSystemKey": "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": "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}], "lat": 51.494627, "lon": -0.267972}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "940GZZLUCWR", "modes": ["tube"], "icsCode": "1000037", "stopType": "NaptanMetroStation", "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": "940GZZLUCWR", "commonName": "Canada Water 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": "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": "Help Points", "sourceSystemKey": "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": "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": "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": "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": "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": "Lifts", "sourceSystemKey": "StaticObjects", "value": "4"}, {"$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": "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": "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": "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": "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"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.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"}], "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}], "lat": 51.497931, "lon": -0.049405}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "940GZZLUCXY", "modes": ["tube"], "icsCode": "1000057", "stopType": "NaptanMetroStation", "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": "940GZZLUCXY", "commonName": "Croxley 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": "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": "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": "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": "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": "Help Points", "sourceSystemKey": "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": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "CarParks_800442"}], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "210G3199", "modes": [], "icsCode": "1000308", "stopType": "NaptanOnstreetBusCoachStopCluster", "stationNaptan": "210G3199", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "210G3199", "commonName": "Croxley Metropolitan Station", "placeType": "StopPoint", "additionalProperties": [], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "210021801000", "indicator": "NW-bound", "modes": [], "icsCode": "1000308", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "210G3199", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "210021801000", "commonName": "Croxley Metropolitan Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.647226, "lon": -0.442724}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "210021801420", "indicator": "W-bound", "modes": [], "icsCode": "1000308", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "210G3199", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "210021801420", "commonName": "Croxley Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.646848, "lon": -0.443387}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "210021805760", "indicator": "o/s", "modes": [], "icsCode": "1000308", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "210G3199", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "210021805760", "commonName": "Croxley Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.647006, "lon": -0.44169}], "lat": 51.646848, "lon": -0.443387}, {"$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": "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": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "7"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "yes"}], "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}], "lat": 51.647044, "lon": -0.441718}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "940GZZLUCYD", "modes": ["tube"], "icsCode": "1000049", "stopType": "NaptanMetroStation", "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": "940GZZLUCYD", "commonName": "Chorleywood 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": "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": "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": "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": "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": "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": "Geo", "key": "Zone", "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": "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": "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"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "CarParks_800441"}], "children": [{"$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": "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": "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": "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": "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"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, 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"}], "children": [], "lat": 51.653798, "lon": -0.518233}], "lat": 51.654358, "lon": -0.518461}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "940GZZLUCYF", "modes": ["tube"], "icsCode": "1000038", "stopType": "NaptanMetroStation", "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": "940GZZLUCYF", "commonName": "Canary Wharf 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": "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": "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": "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": "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": "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": "20"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, 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": "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": "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": "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": "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": "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": "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": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_448"}, {"$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": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_494"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_532"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5951"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_556"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_570"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5963"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5953"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5959"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5955"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5957"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5964"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5962"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5961"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5954"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_551"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5952"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5958"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5956"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5950"}], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490G00038F", "modes": ["bus"], "stopType": "NaptanOnstreetBusCoachStopCluster", "stationNaptan": "490G00038F", "hubNaptanCode": "HUBCAW", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490G00038F", "commonName": "Canary Wharf Station", "placeType": "StopPoint", "additionalProperties": [], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000038F", "indicator": "Stop F", "stopLetter": "F", "modes": ["bus"], "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00038F", "hubNaptanCode": "HUBCAW", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000038F", "commonName": "Canary Wharf Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.505473, "lon": -0.020912}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000038Z", "indicator": "Stop", "modes": ["bus"], "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00038F", "hubNaptanCode": "HUBCAW", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000038Z", "commonName": "Canary Wharf Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.505433, "lon": -0.02064}], "lat": 51.505433, "lon": -0.02064}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490G00038G", "modes": ["bus"], "icsCode": "1000038", "stopType": "NaptanOnstreetBusCoachStopCluster", "stationNaptan": "490G00038G", "hubNaptanCode": "HUBCAW", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490G00038G", "commonName": "Canary Wharf Station", "placeType": "StopPoint", "additionalProperties": [], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000038G", "indicator": "Stop G", "stopLetter": "G", "modes": ["bus"], "icsCode": "1000038", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00038G", "hubNaptanCode": "HUBCAW", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000038G", "commonName": "Canary Wharf Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.50472, "lon": -0.021046}], "lat": 51.50472, "lon": -0.021046}, {"$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": "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": "Lifts", "sourceSystemKey": "StaticObjects", "value": "3"}, {"$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": "Photo 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": "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": "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": "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": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "2"}], "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}], "lat": 51.503488, "lon": -0.018246}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "940GZZLUDBN", "modes": ["tube"], "icsCode": "1000060", "stopType": "NaptanMetroStation", "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": "940GZZLUDBN", "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": "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": "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": "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": "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": "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"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "CarParks_800472"}], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "150G00000912", "modes": [], "icsCode": "1034545", "stopType": "NaptanOnstreetBusCoachStopPair", "stationNaptan": "150G00000912", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "150G00000912", "commonName": "Debden Station", "placeType": "StopPoint", "additionalProperties": [], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "1500DEBDEN2", "indicator": "o/s", "modes": [], "icsCode": "1034545", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "150G00000912", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "1500DEBDEN2", "commonName": "Debden Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.645295, "lon": 0.08226}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "1500DEBDEN2B", "indicator": "opp", "modes": [], "icsCode": "1034545", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "150G00000912", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "1500DEBDEN2B", "commonName": "Debden Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.645372, "lon": 0.08196}], "lat": 51.645372, "lon": 0.08196}, {"$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": "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"}, {"$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": "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": "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": "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": "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": "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": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "0"}], "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": "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}], "lat": 51.645386, "lon": 0.083782}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "940GZZLUDGE", "modes": ["bus", "tube"], "icsCode": "1000058", "stopType": "NaptanMetroStation", "stationNaptan": "940GZZLUDGE", "lines": [{"$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": "364", "name": "364", "uri": "/Line/364", "type": "Line", "crowding": {"$type": "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", "naptanIdReference": "490000058A", "stationAtcoCode": "490G00058B", "lineIdentifier": ["103", "364"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "940GZZLUDGE", "lineIdentifier": ["district"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490000058B", "stationAtcoCode": "490G00058B", "lineIdentifier": ["103", "364"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "bus", "lineIdentifier": ["103", "364"]}, {"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["district"]}], "status": true, "id": "940GZZLUDGE", "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": "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": "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": "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": "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": "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": "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": "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 M&F (open between 0500-1500)"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5657"}], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490G00058B", "modes": ["bus"], "icsCode": "1000058", "stopType": "NaptanOnstreetBusCoachStopCluster", "stationNaptan": "490G00058B", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490G00058B", "commonName": "Dagenham East Station", "placeType": "StopPoint", "additionalProperties": [], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000058A", "indicator": "Stop N", "stopLetter": "N", "modes": ["bus"], "icsCode": "1000058", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00058B", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000058A", "commonName": "Dagenham East Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.544537, "lon": 0.165908}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000058B", "indicator": "Stop C", "stopLetter": "C", "modes": ["bus"], "icsCode": "1000058", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00058B", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000058B", "commonName": "Dagenham East Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.544496, "lon": 0.16618}], "lat": 51.544537, "lon": 0.165908}, {"$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": "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": "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)"}], "children": [], "lat": 51.544229, "lon": 0.166009}, {"$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": "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": "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": "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": "Gates", "sourceSystemKey": "StaticObjects", "value": "4"}], "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": "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"}, {"$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": "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": "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": "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": "Lifts", "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}], "lat": 51.544096, "lon": 0.166017}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "940GZZLUDGY", "modes": ["bus", "tube"], "icsCode": "1000059", "stopType": "NaptanMetroStation", "stationNaptan": "940GZZLUDGY", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "173", "name": "173", "uri": "/Line/173", "type": "Line", "crowding": {"$type": "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": "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": "673", "name": "673", "uri": "/Line/673", "type": "Line", "crowding": {"$type": "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": "490000059B", "stationAtcoCode": "490G00059B", "lineIdentifier": ["173", "174", "175"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "940GZZLUDGY", "lineIdentifier": ["district"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490000059E", "stationAtcoCode": "490G00059B", "lineIdentifier": ["673", "173", "174", "175"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "bus", "lineIdentifier": ["173", "174", "175", "673"]}, {"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["district"]}], "status": true, "id": "940GZZLUDGY", "commonName": "Dagenham Heathway 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": "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": "5"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.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": "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": "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": "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": "canopies over platform."}, {"$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": "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": "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": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490G00059B", "modes": ["bus"], "icsCode": "1000059", "stopType": "NaptanOnstreetBusCoachStopCluster", "stationNaptan": "490G00059B", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490G00059B", "commonName": "Dagenham Heathway Station", "placeType": "StopPoint", "additionalProperties": [], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000059B", "indicator": "Stop B", "stopLetter": "B", "modes": ["bus"], "icsCode": "1000059", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00059B", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000059B", "commonName": "Dagenham Heathway Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.542218, "lon": 0.147727}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000059E", "indicator": "Stop E", "stopLetter": "E", "modes": ["bus"], "icsCode": "1000059", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00059B", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000059E", "commonName": "Dagenham Heathway Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.54116, "lon": 0.148067}], "lat": 51.54116, "lon": 0.148067}, {"$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": "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": "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": "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": "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": "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."}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help 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 Heathway Station,London Underground Ltd.,Heathway,Dagenham,Essex,RM9 5AN"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "yes"}], "children": [], "lat": 51.541513, "lon": 0.146555}], "lat": 51.541639, "lon": 0.147527}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "940GZZLUDOH", "modes": ["bus", "tube"], "icsCode": "1000061", "stopType": "NaptanMetroStation", "stationNaptan": "940GZZLUDOH", "lines": [{"$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": "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", "naptanIdReference": "490000061A", "stationAtcoCode": "490G00061B", "lineIdentifier": ["226"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "940GZZLUDOH", "lineIdentifier": ["jubilee"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490000061B", "stationAtcoCode": "490G00061B", "lineIdentifier": ["226"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "bus", "lineIdentifier": ["226"]}, {"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["jubilee"]}], "status": true, "id": "940GZZLUDOH", "commonName": "Dollis Hill 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": "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": "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": "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": "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": "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": "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": "Dollis Hill Station,London Underground Ltd.,Hamilton Rd,London,NW10 5NB"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5829"}], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490G00061B", "modes": ["bus"], "icsCode": "1000061", "stopType": "NaptanOnstreetBusCoachStopCluster", "stationNaptan": "490G00061B", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490G00061B", "commonName": "Dollis Hill Station", "placeType": "StopPoint", "additionalProperties": [], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000061A", "indicator": "Stop DA", "stopLetter": "DA", "modes": ["bus"], "icsCode": "1000061", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00061B", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000061A", "commonName": "Dollis Hill Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.552805, "lon": -0.238314}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000061B", "indicator": "Stop DB", "stopLetter": "DB", "modes": ["bus"], "icsCode": "1000061", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00061B", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000061B", "commonName": "Dollis Hill Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.552656, "lon": -0.23917}], "lat": 51.552805, "lon": -0.238314}, {"$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": "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"}, {"$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"}], "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": "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": "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": "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"}, {"$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"}], "children": [], "lat": 51.55203, "lon": -0.238661}], "lat": 51.551955, "lon": -0.239068}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "940GZZLUEAC", "modes": ["tube"], "icsCode": "1000073", "stopType": "NaptanMetroStation", "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"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "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": ["bakerloo"]}, {"$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": ["bakerloo", "northern"]}], "status": true, "id": "940GZZLUEAC", "commonName": "Elephant & Castle Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_297"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_324"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_409"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_549"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_725"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5558"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_262"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_152"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_92"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "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": "Accessibility", "key": "LimitedCapacityLift", "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": "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": "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": "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": "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": "Facility", "key": "Toilets", "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": "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": "1+2"}, {"$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": "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": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "11"}], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490G00073G", "modes": ["bus"], "icsCode": "1000073", "stopType": "NaptanOnstreetBusCoachStopCluster", "stationNaptan": "490G00073G", "hubNaptanCode": "HUBEPH", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490G00073G", "commonName": "Elephant & Castle Station", "placeType": "StopPoint", "additionalProperties": [], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000073P", "indicator": "Stop P", "stopLetter": "P", "modes": ["bus"], "icsCode": "1000073", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00073G", "hubNaptanCode": "HUBEPH", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000073P", "commonName": "Elephant & Castle Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.494236, "lon": -0.100489}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000073R", "indicator": "Stop R", "stopLetter": "R", "modes": ["bus"], "icsCode": "1000073", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00073G", "hubNaptanCode": "HUBEPH", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000073R", "commonName": "Elephant & Castle Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.492237, "lon": -0.098137}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000073S", "indicator": "Stop S", "stopLetter": "S", "modes": ["bus"], "icsCode": "1000073", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00073G", "hubNaptanCode": "HUBEPH", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000073S", "commonName": "Elephant & Castle Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.49396, "lon": -0.100716}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000073T", "indicator": "Stop T", "stopLetter": "T", "modes": ["bus"], "icsCode": "1000073", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00073G", "hubNaptanCode": "HUBEPH", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000073T", "commonName": "Elephant & Castle Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.494213, "lon": -0.100749}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000073V", "indicator": "Stop V", "stopLetter": "V", "modes": ["bus"], "icsCode": "1000073", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00073G", "hubNaptanCode": "HUBEPH", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000073V", "commonName": "Elephant & Castle Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.494466, "lon": -0.100854}], "lat": 51.494236, "lon": -0.100489}, {"$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": "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": "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": "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": "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": "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.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": "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": "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": "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": "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": "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": "Other Facilities", "sourceSystemKey": "StaticObjects", "value": "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": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "1+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": "Help Points", "sourceSystemKey": "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": "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": "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": "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"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.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.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": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "1+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": "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": "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": "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": "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": "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": "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": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "2"}], "children": [], "lat": 51.495011, "lon": -0.100529}], "lat": 51.494536, "lon": -0.100606}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "940GZZLUEAE", "modes": ["tube", "bus"], "icsCode": "1000066", "stopType": "NaptanMetroStation", "stationNaptan": "940GZZLUEAE", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "282", "name": "282", "uri": "/Line/282", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "398", "name": "398", "uri": "/Line/398", "type": "Line", "crowding": {"$type": "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": "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", "naptanIdReference": "490000066K", "stationAtcoCode": "490G00066A", "lineIdentifier": ["282", "398"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "940GZZLUEAE", "lineIdentifier": ["metropolitan", "piccadilly"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490000066B", "stationAtcoCode": "490G00066A", "lineIdentifier": ["398", "282"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "bus", "lineIdentifier": ["282", "398"]}, {"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["metropolitan", "piccadilly"]}], "status": true, "id": "940GZZLUEAE", "commonName": "Eastcote 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": "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": "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": "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": "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": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "CarParks_800443"}], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490G00066A", "modes": ["bus"], "icsCode": "1000066", "stopType": "NaptanOnstreetBusCoachStopCluster", "stationNaptan": "490G00066A", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490G00066A", "commonName": "Eastcote Station", "placeType": "StopPoint", "additionalProperties": [], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000066B", "indicator": "Stop Q", "stopLetter": "Q", "modes": ["bus"], "icsCode": "1000066", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00066A", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000066B", "commonName": "Eastcote Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.576216, "lon": -0.397326}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000066K", "indicator": "Stop K", "stopLetter": "K", "modes": ["bus"], "icsCode": "1000066", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00066A", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000066K", "commonName": "Eastcote Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.576162, "lon": -0.39727}], "lat": 51.576216, "lon": -0.397326}, {"$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": "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": "Facility", "key": "Bridge", "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": "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": "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": "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}], "lat": 51.576506, "lon": -0.397373}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "940GZZLUEAN", "modes": ["bus", "tube"], "icsCode": "1000065", "stopType": "NaptanMetroStation", "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"}, {"$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": "7", "name": "7", "uri": "/Line/7", "type": "Line", "crowding": {"$type": "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": "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": "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": "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": "940GZZLUEAN", "lineIdentifier": ["central"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490000065H", "stationAtcoCode": "490G00065H", "lineIdentifier": ["283", "272", "7", "n7", "72", "n72", "70"]}], "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": "bus", "lineIdentifier": ["283", "272", "7", "n7", "72", "n72", "70"]}], "status": true, "id": "940GZZLUEAN", "commonName": "East Acton 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": "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": "Help Points", "sourceSystemKey": "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": "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": "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": "East Acton Station,London Underground Ltd.,Erconwald St,London,W12 0BP"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.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"}], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490G00065H", "modes": ["bus"], "icsCode": "1000065", "stopType": "NaptanOnstreetBusCoachStopCluster", "stationNaptan": "490G00065H", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490G00065H", "commonName": "East Acton Station", "placeType": "StopPoint", "additionalProperties": [], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000065H", "indicator": "Stop H", "stopLetter": "H", "modes": ["bus"], "icsCode": "1000065", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00065H", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000065H", "commonName": "East Acton Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.515182, "lon": -0.248586}], "lat": 51.515182, "lon": -0.248586}, {"$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": "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": "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": "Help Points", "sourceSystemKey": "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": "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 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": "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": "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": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}], "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}], "lat": 51.516612, "lon": -0.247248}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "940GZZLUEBY", "modes": ["tube"], "icsCode": "1000062", "stopType": "NaptanMetroStation", "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"}, {"$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": ["district"]}, {"$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": ["district", "central"]}], "status": true, "id": "940GZZLUEBY", "commonName": "Ealing Broadway 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": "Opening Time", "key": "MonFriFrom", "sourceSystemKey": "StaticObjects", "value": "05:35"}, {"$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": "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": "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": "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": "Ealing Broadway Station,The Broadway,London,W5 2NU"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.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": "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": "Help Points", "sourceSystemKey": "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": "Opening Time", "key": "MonFriTo", "sourceSystemKey": "StaticObjects", "value": "23:25"}, {"$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": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5543"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5741"}], "children": [{"$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": "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"}, {"$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": "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": "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": "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": "Facility", "key": "Help 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": "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": "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": "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": "Car park", "sourceSystemKey": "StaticObjects", "value": "no"}], "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": "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": "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": "Other Facilities", "sourceSystemKey": "StaticObjects", "value": "routeways platform to ticket hall."}, {"$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": "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": "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": "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": "Opening Time", "key": "SatFrom", "sourceSystemKey": "StaticObjects", "value": "05:35"}, {"$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"}], "children": [], "lat": 51.5152, "lon": -0.301075}], "lat": 51.515017, "lon": -0.301457}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "940GZZLUECM", "modes": ["bus", "tube"], "icsCode": "1000063", "stopType": "NaptanMetroStation", "stationNaptan": "940GZZLUECM", "lines": [{"$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": "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": "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": "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": "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", "naptanIdReference": "490000063S", "stationAtcoCode": "490G00063U", "lineIdentifier": ["sl8", "n207", "n7", "207"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "940GZZLUECM", "lineIdentifier": ["piccadilly", "district"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490000063U", "stationAtcoCode": "490G00063U", "lineIdentifier": ["207", "sl8", "n7", "n207"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "bus", "lineIdentifier": ["sl8", "n207", "n7", "207"]}, {"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["piccadilly", "district"]}], "status": true, "id": "940GZZLUECM", "commonName": "Ealing Common 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": "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": "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": "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": "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": "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": "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": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490G00063U", "modes": ["bus"], "icsCode": "1000063", "stopType": "NaptanOnstreetBusCoachStopCluster", "stationNaptan": "490G00063U", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490G00063U", "commonName": "Ealing Common Station", "placeType": "StopPoint", "additionalProperties": [], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000063S", "indicator": "Stop ET", "stopLetter": "ET", "modes": ["bus"], "icsCode": "1000063", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00063U", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000063S", "commonName": "Ealing Common Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.510698, "lon": -0.288374}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000063U", "indicator": "Stop EK", "stopLetter": "EK", "modes": ["bus"], "icsCode": "1000063", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00063U", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000063U", "commonName": "Ealing Common Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.510109, "lon": -0.287445}], "lat": 51.510698, "lon": -0.288374}, {"$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": "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": "Facility", "key": "Help Points", "sourceSystemKey": "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"}, {"$type": "Tfl.Api.Presentation.Entities.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"}, {"$type": "Tfl.Api.Presentation.Entities.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": "Ealing Common Station,London Underground Ltd.,Uxbridge Rd,London,W5 3LD"}], "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": "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": "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}], "lat": 51.51014, "lon": -0.288265}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "940GZZLUECT", "modes": ["tube", "bus"], "icsCode": "1000064", "stopType": "NaptanMetroStation", "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"}, {"$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": "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": "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": "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": "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": "n97", "name": "N97", "uri": "/Line/n97", "type": "Line", "crowding": {"$type": "Tfl.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"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "940GZZLUECT", "lineIdentifier": ["district"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490000064C", "stationAtcoCode": "490G00064C", "lineIdentifier": ["74", "c1", "n74", "c3", "328", "n31", "n97"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490000064A", "stationAtcoCode": "490G00064A", "lineIdentifier": ["328", "c3", "n31", "n97", "n74", "74", "c1"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["piccadilly", "district"]}, {"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "bus", "lineIdentifier": ["74", "c1", "n74", "c3", "328", "n31", "n97"]}], "status": true, "id": "940GZZLUECT", "commonName": "Earl's Court Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_37"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_142"}, {"$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": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "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": "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": "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": "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": "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": "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": "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": "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": "ServiceInfo", "key": "Night", "sourceSystemKey": "TransXchangeETL", "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": "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": "Help 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": "BikePoints_384"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5835"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5939"}, {"$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_296"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_332"}, {"$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_171"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_155"}], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490G00064A", "modes": ["bus"], "icsCode": "1000064", "stopType": "NaptanOnstreetBusCoachStopCluster", "stationNaptan": "490G00064A", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490G00064A", "commonName": "Earls Court Station", "placeType": "StopPoint", "additionalProperties": [], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000064A", "indicator": "Stop A", "stopLetter": "A", "modes": ["bus"], "icsCode": "1000064", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00064A", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000064A", "commonName": "Earls Court Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.491793, "lon": -0.19228}], "lat": 51.491793, "lon": -0.19228}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490G00064C", "modes": ["bus"], "icsCode": "1000064", "stopType": "NaptanOnstreetBusCoachStopCluster", "stationNaptan": "490G00064C", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490G00064C", "commonName": "Earl's Court Station", "placeType": "StopPoint", "additionalProperties": [], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000064C", "indicator": "Stop C", "stopLetter": "C", "modes": ["bus"], "icsCode": "1000064", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00064C", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000064C", "commonName": "Earls Court Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.490591, "lon": -0.196577}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000064N", "indicator": "Stop", "modes": ["bus"], "icsCode": "1000064", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00064C", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000064N", "commonName": "Earl's Court Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.491042, "lon": -0.197279}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000064Z", "indicator": "Stop", "modes": ["bus"], "icsCode": "1000064", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00064C", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000064Z", "commonName": "Earl's Court Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.489738, "lon": -0.194882}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000064ZZ", "indicator": "Stop", "modes": ["bus"], "icsCode": "1000064", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00064C", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000064ZZ", "commonName": "Earl's Court Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.489916, "lon": -0.195379}], "lat": 51.489916, "lon": -0.195379}, {"$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": "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": "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": "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": "Accessibility", "key": "BlueBadgeCarParkSpaces", "sourceSystemKey": "LRAD", "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": "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": "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"}], "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": "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": "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": "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": "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": "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": "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": "Help 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": "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": "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": "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": "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": "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": "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": "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": "Escalators", "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": "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": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Earl's Court Station,London Underground Ltd.,Earl's Court Rd,London,SW5 9QA"}], "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": "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"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "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"}], "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": "Help Points", "sourceSystemKey": "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": "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": "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": "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": "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": "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": "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": "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": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}], "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": "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": "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": "Gates", "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": "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"}], "children": [], "lat": 51.49178, "lon": -0.193663}], "lat": 51.492063, "lon": -0.193378}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "940GZZLUEFY", "modes": ["bus", "tube"], "icsCode": "1000067", "stopType": "NaptanMetroStation", "stationNaptan": "940GZZLUEFY", "lines": [{"$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": "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": "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": "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": "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": "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": "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": "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", "naptanIdReference": "490000067G", "stationAtcoCode": "490G00067G", "lineIdentifier": ["143", "234", "603", "263", "n271", "n20"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490000067H", "stationAtcoCode": "490G00067G", "lineIdentifier": ["h3", "102"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "940GZZLUEFY", "lineIdentifier": ["northern"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490000067E", "stationAtcoCode": "490G00067G", "lineIdentifier": ["n20", "n271", "143", "102", "h3", "234", "603"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490000067F", "stationAtcoCode": "490G00067G", "lineIdentifier": ["263"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "bus", "lineIdentifier": ["143", "234", "603", "263", "n271", "n20", "h3", "102"]}, {"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["northern"]}], "status": true, "id": "940GZZLUEFY", "commonName": "East Finchley 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": "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": "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": "Help 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": "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": "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": "East Finchley Station,London Underground Ltd.,High Rd,London,N2 0NW"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.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": "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": "Toilets", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5819"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "CarParks_800473"}], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490G00067G", "modes": ["bus"], "icsCode": "1000067", "stopType": "NaptanOnstreetBusCoachStopCluster", "stationNaptan": "490G00067G", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490G00067G", "commonName": "East Finchley Station", "placeType": "StopPoint", "additionalProperties": [], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000067E", "indicator": "Stop E", "stopLetter": "E", "modes": ["bus"], "icsCode": "1000067", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00067G", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000067E", "commonName": "East Finchley Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.586587, "lon": -0.164254}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000067F", "indicator": "Stop F", "stopLetter": "F", "modes": ["bus"], "icsCode": "1000067", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00067G", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000067F", "commonName": "East Finchley Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.586992, "lon": -0.164281}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000067G", "indicator": "Stop G", "stopLetter": "G", "modes": ["bus"], "icsCode": "1000067", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00067G", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000067G", "commonName": "East Finchley Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.586673, "lon": -0.164005}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000067H", "indicator": "Stop H", "stopLetter": "H", "modes": ["bus"], "icsCode": "1000067", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00067G", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000067H", "commonName": "East Finchley Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.58689, "lon": -0.164054}], "lat": 51.58689, "lon": -0.164054}, {"$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": "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": "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": "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": "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": "Help Points", "sourceSystemKey": "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": "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": "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": "Payphones", "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"}], "children": [], "lat": 51.587293, "lon": -0.16502}], "lat": 51.587131, "lon": -0.165012}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "940GZZLUEGW", "modes": ["tube", "bus"], "icsCode": "1000070", "stopType": "NaptanMetroStation", "stationNaptan": "940GZZLUEGW", "lines": [{"$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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "688", "name": "688", "uri": "/Line/688", "type": "Line", "crowding": {"$type": "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": "490000070D", "stationAtcoCode": "490G00070C", "lineIdentifier": ["n32", "204", "292", "32", "251", "303", "142", "n5"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490000070F", "stationAtcoCode": "490G00070C", "lineIdentifier": ["384", "292", "142", "288", "606", "642", "107"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490000070C", "stationAtcoCode": "490G00070C", "lineIdentifier": ["606", "340", "288", "186", "79"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490000070G", "stationAtcoCode": "490G00070C", "lineIdentifier": ["n113", "n5", "606", "221", "642", "107", "240", "251", "384", "186", "292", "32", "288", "79", "113", "142", "303", "340", "204", "n32"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "940GZZLUEGW", "lineIdentifier": ["northern"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490015287E", "stationAtcoCode": "490G00070C", "lineIdentifier": ["240", "186", "113", "n113", "221"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490000070A", "stationAtcoCode": "490G00070S", "lineIdentifier": ["240", "221", "688"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "bus", "lineIdentifier": ["n32", "204", "292", "32", "251", "303", "142", "n5", "384", "288", "606", "642", "107", "340", "186", "79", "n113", "221", "240", "113", "688"]}, {"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["northern"]}], "status": true, "id": "940GZZLUEGW", "commonName": "Edgware 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": "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": "Toilets", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$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": "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."}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.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": "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": "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": "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": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5645"}], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490G00070C", "modes": ["bus"], "icsCode": "1000070", "stopType": "NaptanOnstreetBusCoachStopCluster", "stationNaptan": "490G00070C", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490G00070C", "commonName": "Edgware Station", "placeType": "StopPoint", "additionalProperties": [], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000070C", "indicator": "Stop C", "stopLetter": "C", "modes": ["bus"], "icsCode": "1000070", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00070C", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000070C", "commonName": "Edgware Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.613102, "lon": -0.274862}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000070D", "indicator": "Stop D", "stopLetter": "D", "modes": ["bus"], "icsCode": "1000070", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00070C", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000070D", "commonName": "Edgware Bus Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.612946, "lon": -0.274637}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000070F", "indicator": "Stop F", "stopLetter": "F", "modes": ["bus"], "icsCode": "1000070", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00070C", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000070F", "commonName": "Edgware Bus Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.61267, "lon": -0.274243}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000070G", "indicator": "Stop G", "stopLetter": "G", "modes": ["bus"], "icsCode": "1000070", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00070C", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000070G", "commonName": "Edgware Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.613399, "lon": -0.275515}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490015287E", "indicator": "Stop E", "stopLetter": "E", "modes": ["bus"], "icsCode": "1000070", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00070C", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490015287E", "commonName": "Edgware Bus Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.612732, "lon": -0.274197}], "lat": 51.61267, "lon": -0.274243}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490G00070S", "modes": ["bus"], "icsCode": "1000070", "stopType": "NaptanOnstreetBusCoachStopCluster", "stationNaptan": "490G00070S", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490G00070S", "commonName": "Edgware Bus Station", "placeType": "StopPoint", "additionalProperties": [], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000070A", "indicator": "Stop A", "stopLetter": "A", "modes": ["bus"], "icsCode": "1000070", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00070S", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000070A", "commonName": "Edgware Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.61477, "lon": -0.275824}], "lat": 51.61477, "lon": -0.275824}, {"$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}], "lat": 51.613653, "lon": -0.274928}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "940GZZLUEHM", "modes": ["tube", "bus"], "icsCode": "1000068", "stopType": "NaptanMetroStation", "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"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "474", "name": "474", "uri": "/Line/474", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "101", "name": "101", "uri": "/Line/101", "type": "Line", "crowding": {"$type": "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": "147", "name": "147", "uri": "/Line/147", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "376", "name": "376", "uri": "/Line/376", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "304", "name": "304", "uri": "/Line/304", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "300", "name": "300", "uri": "/Line/300", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "325", "name": "325", "uri": "/Line/325", "type": "Line", "crowding": {"$type": "Tfl.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"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490000068A", "stationAtcoCode": "490G00068A", "lineIdentifier": ["474", "101", "238", "147", "376", "304", "300", "325"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490000068B", "stationAtcoCode": "490G00068A", "lineIdentifier": ["474", "304", "376", "325", "147", "300", "101", "238"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["hammersmith-city", "district"]}, {"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "bus", "lineIdentifier": ["474", "101", "238", "147", "376", "304", "300", "325"]}], "status": true, "id": "940GZZLUEHM", "commonName": "East Ham 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": "Boarding Ramps", "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": "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": "Payphones", "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": "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": "Toilets", "sourceSystemKey": "StaticObjects", "value": "Local authority facility nearby"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "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": "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": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5180"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5808"}, {"$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": "Facility", "key": "Lifts", "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": "490G00068A", "modes": ["bus"], "icsCode": "1000068", "stopType": "NaptanOnstreetBusCoachStopCluster", "stationNaptan": "490G00068A", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490G00068A", "commonName": "East Ham Station", "placeType": "StopPoint", "additionalProperties": [], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000068A", "indicator": "Stop A", "stopLetter": "A", "modes": ["bus"], "icsCode": "1000068", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00068A", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000068A", "commonName": "East Ham Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.540029, "lon": 0.050975}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000068B", "indicator": "Stop B", "stopLetter": "B", "modes": ["bus"], "icsCode": "1000068", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00068A", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000068B", "commonName": "East Ham Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.53938, "lon": 0.051046}], "lat": 51.53938, "lon": 0.051046}, {"$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": "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": "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"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.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.538961, "lon": 0.051388}, {"$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": "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": "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": "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": "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": "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"}, {"$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": "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"}], "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}], "lat": 51.538948, "lon": 0.051186}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "940GZZLUEMB", "modes": ["tube"], "icsCode": "1000075", "stopType": "NaptanMetroStation", "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"}, {"$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"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "940GZZLUEMB", "lineIdentifier": ["circle", "district"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "940GZZLUEMB", "lineIdentifier": ["bakerloo"]}, {"$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": ["circle", "district", "bakerloo", "northern"]}], "status": true, "id": "940GZZLUEMB", "commonName": "Embankment 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": "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": "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": "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": "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": "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": "Escalators", "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": "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": "Gates", "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": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_64"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_229"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_309"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_341"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_354"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_388"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_564"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5506"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5364"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5281"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_4470"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5965"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_4982"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5681"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5867"}], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490G00075L", "modes": ["bus"], "icsCode": "1000075", "stopType": "NaptanOnstreetBusCoachStopCluster", "stationNaptan": "490G00075L", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490G00075L", "commonName": "Embankment Station", "placeType": "StopPoint", "additionalProperties": [], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000075F", "indicator": "Stop 40D", "stopLetter": "40D", "modes": ["bus"], "icsCode": "1000075", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00075L", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000075F", "commonName": "Embankment Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.508864, "lon": -0.120416}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "49000655740C", "indicator": "Stop 40C", "stopLetter": "40C", "modes": ["bus"], "icsCode": "1000075", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00075L", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "49000655740C", "commonName": "Embankment Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.50843, "lon": -0.120851}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490006557C", "indicator": "Stop 40B", "stopLetter": "40B", "modes": ["bus"], "icsCode": "1000075", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00075L", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490006557C", "commonName": "Embankment Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.508114, "lon": -0.12134}], "lat": 51.50843, "lon": -0.120851}, {"$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": "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": "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": "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": "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"}], "children": [], "lat": 51.506972, "lon": -0.121906}, {"$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": "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": "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": "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": "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": "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": "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"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "10"}], "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}], "lat": 51.507058, "lon": -0.122666}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "940GZZLUEPG", "modes": ["tube"], "icsCode": "1000076", "stopType": "NaptanMetroStation", "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": "940GZZLUEPG", "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": "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 (male,female)"}, {"$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": "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": "Gates", "sourceSystemKey": "StaticObjects", "value": "3"}, {"$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": "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": "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": "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": "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": "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"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "CarParks_800474"}], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "150G00003291", "modes": [], "icsCode": "1000314", "stopType": "NaptanOnstreetBusCoachStopPair", "stationNaptan": "150G00003291", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "150G00003291", "commonName": "Railway Station", "placeType": "StopPoint", "additionalProperties": [], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "1500IM354", "indicator": "o/s", "modes": [], "icsCode": "1000314", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "150G00003291", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "1500IM354", "commonName": "Epping Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.693715, "lon": 0.113711}], "lat": 51.693715, "lon": 0.113711}, {"$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": "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": "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": "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": "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": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "6"}, {"$type": "Tfl.Api.Presentation.Entities.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": "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": "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": "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)"}], "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}], "lat": 51.69368, "lon": 0.113767}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "940GZZLUEPK", "modes": ["tube", "bus"], "icsCode": "1000074", "stopType": "NaptanMetroStation", "stationNaptan": "940GZZLUEPK", "lines": [{"$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": "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": "372", "name": "372", "uri": "/Line/372", "type": "Line", "crowding": {"$type": "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": "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", "naptanIdReference": "490000074A", "stationAtcoCode": "490G00074A", "lineIdentifier": ["365", "165", "372", "252"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490000074B", "stationAtcoCode": "490G00074A", "lineIdentifier": ["252", "372", "165", "365"]}, {"$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": "bus", "lineIdentifier": ["365", "165", "372", "252"]}, {"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["district"]}], "status": true, "id": "940GZZLUEPK", "commonName": "Elm 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": "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": "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": "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": "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": "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": "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": "Waiting Room", "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": "Toilets", "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": "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": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5547"}], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490G00074A", "modes": ["bus"], "icsCode": "1000074", "stopType": "NaptanOnstreetBusCoachStopCluster", "stationNaptan": "490G00074A", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490G00074A", "commonName": "Elm Park Station", "placeType": "StopPoint", "additionalProperties": [], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000074A", "indicator": "Stop M", "stopLetter": "M", "modes": ["bus"], "icsCode": "1000074", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00074A", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000074A", "commonName": "Elm Park Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.549513, "lon": 0.199579}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000074B", "indicator": "Stop C", "stopLetter": "C", "modes": ["bus"], "icsCode": "1000074", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00074A", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000074B", "commonName": "Elm Park Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.550287, "lon": 0.199054}], "lat": 51.550287, "lon": 0.199054}, {"$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": "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": "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": "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": "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": "Boarding Ramps", "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"], "icsCode": "1000074", "stopType": "NaptanRailAccessArea", "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": "9400ZZLUEPK2", "commonName": "Elm Park Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.549642, "lon": 0.197581}], "lat": 51.549775, "lon": 0.19864}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "940GZZLUEPY", "modes": ["bus", "tube"], "icsCode": "1000069", "stopType": "NaptanMetroStation", "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"}, {"$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"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "940GZZLUEPY", "lineIdentifier": ["district"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490000069EB", "stationAtcoCode": "490G00069EB", "lineIdentifier": ["337", "37"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490000069EA", "stationAtcoCode": "490G00069EB", "lineIdentifier": ["37", "337"]}], "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": "bus", "lineIdentifier": ["337", "37"]}], "status": true, "id": "940GZZLUEPY", "commonName": "East Putney 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": "East Putney Station,Upper Richmond Rd,London,SW15"}, {"$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": "2+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": "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": "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": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_694"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_705"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_708"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_728"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_743"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5751"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5752"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.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": "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": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_678"}], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490G00069EB", "modes": ["bus"], "icsCode": "1000069", "stopType": "NaptanOnstreetBusCoachStopCluster", "stationNaptan": "490G00069EB", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490G00069EB", "commonName": "East Putney Station", "placeType": "StopPoint", "additionalProperties": [], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000069EA", "indicator": "Stop EA", "stopLetter": "EA", "modes": ["bus"], "icsCode": "1000069", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00069EB", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000069EA", "commonName": "East Putney Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.460024, "lon": -0.212321}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000069EB", "indicator": "Stop EB", "stopLetter": "EB", "modes": ["bus"], "icsCode": "1000069", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00069EB", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000069EB", "commonName": "East Putney Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.459043, "lon": -0.209955}], "lat": 51.459043, "lon": -0.209955}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490G00069W", "modes": ["bus"], "icsCode": "1000069", "stopType": "NaptanOnstreetBusCoachStopCluster", "stationNaptan": "940GZZLUEPY", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490G00069W", "commonName": "East Putney Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.462625, "lon": -0.208937}, {"$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": "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": "Help Points", "sourceSystemKey": "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": "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": "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"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "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"}], "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}], "lat": 51.459205, "lon": -0.211}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "940GZZLUERB", "modes": ["tube", "bus"], "icsCode": "1000071", "stopType": "NaptanMetroStation", "stationNaptan": "940GZZLUERB", "lines": [{"$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": "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": "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": "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": "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": "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": "16", "name": "16", "uri": "/Line/16", "type": "Line", "crowding": {"$type": "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": "490000071E", "stationAtcoCode": "490G00071E", "lineIdentifier": ["18", "n18"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490006428D", "stationAtcoCode": "490G00071E", "lineIdentifier": ["n98", "98", "n32", "6"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "940GZZLUERB", "lineIdentifier": ["bakerloo"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490006428B", "stationAtcoCode": "490G00071E", "lineIdentifier": ["16", "n98", "n32", "6", "98"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "bus", "lineIdentifier": ["18", "n18", "n98", "98", "n32", "6", "16"]}, {"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["bakerloo"]}], "status": true, "id": "940GZZLUERB", "commonName": "Edgware Road (Bakerloo) Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$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": "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": "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": "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": "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": "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": "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"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_182"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_238"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_265"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_279"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_290"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_370"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_402"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_410"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_605"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5321"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5967"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5487"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5742"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5434"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5499"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_4849"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5488"}], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490G00071E", "modes": ["bus"], "icsCode": "1000071", "stopType": "NaptanOnstreetBusCoachStopCluster", "stationNaptan": "490G00071E", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490G00071E", "commonName": "Edgware Road Station / Bakerloo Line", "placeType": "StopPoint", "additionalProperties": [], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000071E", "indicator": "Stop EZ", "stopLetter": "EZ", "modes": ["bus"], "icsCode": "1000071", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00071E", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000071E", "commonName": "Edgware Road Station / Bakerloo Line", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.520234, "lon": -0.168999}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490006428B", "indicator": "Stop EM", "stopLetter": "EM", "modes": ["bus"], "icsCode": "1000071", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00071E", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490006428B", "commonName": "Edgware Road Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.520721, "lon": -0.171344}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490006428D", "indicator": "Stop EC", "stopLetter": "EC", "modes": ["bus"], "icsCode": "1000071", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00071E", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490006428D", "commonName": "Edgware Road Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.520623, "lon": -0.170872}], "lat": 51.520623, "lon": -0.170872}, {"$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": "Facility", "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": "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": "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": "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.520209, "lon": -0.170269}, {"$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}], "lat": 51.520299, "lon": -0.17015}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "940GZZLUERC", "modes": ["bus", "tube"], "icsCode": "1000072", "stopType": "NaptanMetroStation", "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"}, {"$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": "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": "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": "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": "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"}, {"$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", "district"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490000072G", "stationAtcoCode": "490G00072W", "lineIdentifier": ["n27", "n205", "205", "27"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490000072W", "stationAtcoCode": "490G00072W", "lineIdentifier": ["n18", "18"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "940GZZLUERC", "lineIdentifier": ["circle", "hammersmith-city"]}, {"$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", "district", "hammersmith-city"]}, {"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "bus", "lineIdentifier": ["n27", "n205", "205", "27", "n18", "18"]}], "status": true, "id": "940GZZLUERC", "commonName": "Edgware Road (Circle Line) Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$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": "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": "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": "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": "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": "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": "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": "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"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_45"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_182"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_188"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_265"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_290"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_367"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_370"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_396"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_402"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_410"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_605"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5321"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5967"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5742"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5219"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5823"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_4574"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5894"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5499"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_4849"}], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490G00072W", "modes": ["bus"], "icsCode": "1000072", "stopType": "NaptanOnstreetBusCoachStopCluster", "stationNaptan": "490G00072W", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490G00072W", "commonName": "Edgware Road Station", "placeType": "StopPoint", "additionalProperties": [], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000072G", "indicator": "Stop ET", "stopLetter": "ET", "modes": ["bus"], "icsCode": "1000072", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00072W", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000072G", "commonName": "Edgware Road Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.519665, "lon": -0.167682}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000072W", "indicator": "Stop EV", "stopLetter": "EV", "modes": ["bus"], "icsCode": "1000072", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00072W", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000072W", "commonName": "Edgware Road Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.519899, "lon": -0.168811}], "lat": 51.519899, "lon": -0.168811}, {"$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": "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": "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"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.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"}], "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": "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": "940GZZLUERC", "lineIdentifier": ["district", "circle"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["district", "circle"]}], "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": "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": "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": "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": "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"}], "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": "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": "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}], "lat": 51.519858, "lon": -0.167832}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "940GZZLUESQ", "modes": ["tube", "bus"], "icsCode": "1000078", "stopType": "NaptanMetroStation", "stationNaptan": "940GZZLUESQ", "lines": [{"$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": "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": "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"}, {"$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": "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": "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": "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": "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": "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"}, {"$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": "490000078Q", "stationAtcoCode": "490G00078P", "lineIdentifier": ["73", "n5", "n205", "n73", "n20", "390", "30", "18", "205", "n253"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490000078P", "stationAtcoCode": "490G00078P", "lineIdentifier": ["n5", "73", "390", "n20", "n73", "n253", "205", "18", "30", "n205"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "940GZZLUESQ", "lineIdentifier": ["circle", "metropolitan", "hammersmith-city"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "bus", "lineIdentifier": ["73", "n5", "n205", "n73", "n20", "390", "30", "18", "205", "n253"]}, {"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["circle", "metropolitan", "hammersmith-city"]}], "status": true, "id": "940GZZLUESQ", "commonName": "Euston Square 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": "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": "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": "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": "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": "Euston Square Station,London Underground Ltd.,Euston Rd,London,NW1 2BN"}, {"$type": "Tfl.Api.Presentation.Entities.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": "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": "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"}, {"$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": "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_5399"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5638"}, {"$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": "490G00078P", "modes": ["bus"], "icsCode": "1000078", "stopType": "NaptanOnstreetBusCoachStopCluster", "stationNaptan": "490G00078P", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490G00078P", "commonName": "Euston Square Station", "placeType": "StopPoint", "additionalProperties": [], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000078P", "indicator": "Stop P", "stopLetter": "P", "modes": ["bus"], "icsCode": "1000078", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00078P", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000078P", "commonName": "Euston Square Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.525693, "lon": -0.135335}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000078Q", "indicator": "Stop Q", "stopLetter": "Q", "modes": ["bus"], "icsCode": "1000078", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00078P", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000078Q", "commonName": "Euston Square Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.5256, "lon": -0.136853}], "lat": 51.5256, "lon": -0.136853}, {"$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": "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": "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"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "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": "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": "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": "940GZZLUESQ", "lineIdentifier": ["hammersmith-city", "metropolitan", "circle"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["hammersmith-city", "metropolitan", "circle"]}], "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": "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": "940GZZLUESQ", "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": "9400ZZLUESQ2", "commonName": "Euston Square 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": "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": "Help Points", "sourceSystemKey": "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": "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": "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"}], "children": [], "lat": 51.525614, "lon": -0.135367}], "lat": 51.525604, "lon": -0.135829}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "940GZZLUEUS", "modes": ["tube"], "icsCode": "1000077", "stopType": "NaptanMetroStation", "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"}, {"$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": ["northern"]}, {"$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": ["northern", "victoria"]}], "status": true, "id": "940GZZLUEUS", "commonName": "Euston 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": "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": "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": "2"}, {"$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": "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": "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": "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": "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": "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": "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_214"}, {"$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_5896"}], "children": [{"$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": "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": "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": "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"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.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."}], "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": "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": "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": "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": "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"}], "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": "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": "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}], "lat": 51.528344, "lon": -0.1323}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "940GZZLUFBY", "modes": ["tube", "bus"], "icsCode": "1000084", "stopType": "NaptanMetroStation", "stationNaptan": "940GZZLUFBY", "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"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490000084M", "stationAtcoCode": "490G00084L", "lineIdentifier": ["14", "211", "414"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "940GZZLUFBY", "lineIdentifier": ["district"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490000084L", "stationAtcoCode": "490G00084L", "lineIdentifier": ["414", "14", "211"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "bus", "lineIdentifier": ["14", "211", "414"]}, {"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["district"]}], "status": true, "id": "940GZZLUFBY", "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": "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": "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": "Fulham Broadway Station,London Underground Ltd.,Fulham Broadway,London,SW6 1BY"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.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": "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": "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": "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": "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": "7"}, {"$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": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_618"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_691"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_737"}, {"$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": "490G00084L", "modes": ["bus"], "icsCode": "1000084", "stopType": "NaptanOnstreetBusCoachStopCluster", "stationNaptan": "490G00084L", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490G00084L", "commonName": "Fulham Broadway Station", "placeType": "StopPoint", "additionalProperties": [], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000084L", "indicator": "Stop L", "stopLetter": "L", "modes": ["bus"], "icsCode": "1000084", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00084L", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000084L", "commonName": "Fulham Broadway Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.480289, "lon": -0.194477}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000084M", "indicator": "Stop M", "stopLetter": "M", "modes": ["bus"], "icsCode": "1000084", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00084L", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000084M", "commonName": "Fulham Broadway Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.480023, "lon": -0.194704}], "lat": 51.480023, "lon": -0.194704}, {"$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": "Help Points", "sourceSystemKey": "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"}, {"$type": "Tfl.Api.Presentation.Entities.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"}], "children": [], "lat": 51.480097, "lon": -0.195407}, {"$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": "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"}, {"$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"}], "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}], "lat": 51.480081, "lon": -0.195422}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "940GZZLUFCN", "modes": ["tube"], "icsCode": "1000080", "stopType": "NaptanMetroStation", "stationNaptan": "940GZZLUFCN", "hubNaptanCode": "HUBZFD", "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": "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"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "940GZZLUFCN", "lineIdentifier": ["hammersmith-city", "metropolitan", "circle"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["hammersmith-city", "metropolitan", "circle"]}], "status": true, "id": "940GZZLUFCN", "commonName": "Farringdon 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": "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": "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": "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": "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": "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": "WiFi", "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": "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": "4"}, {"$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": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_17"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_66"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_67"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_72"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_135"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_203"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_246"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_393"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_546"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_835"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5904"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5791"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5620"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5906"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5908"}], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490G00080B", "modes": ["bus"], "icsCode": "1000080", "stopType": "NaptanOnstreetBusCoachStopCluster", "stationNaptan": "490G00080B", "hubNaptanCode": "HUBZFD", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490G00080B", "commonName": "Farringdon Station", "placeType": "StopPoint", "additionalProperties": [], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000080A", "indicator": "Stop A", "stopLetter": "A", "modes": ["bus"], "icsCode": "1000080", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00080B", "hubNaptanCode": "HUBZFD", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000080A", "commonName": "Farringdon Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.520422, "lon": -0.106044}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000080B", "indicator": "Stop B", "stopLetter": "B", "modes": ["bus"], "icsCode": "1000080", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00080B", "hubNaptanCode": "HUBZFD", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000080B", "commonName": "Farringdon Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.520238, "lon": -0.105821}], "lat": 51.520238, "lon": -0.105821}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "4900FRNDNLT0", "indicator": "Entrance 2", "stopLetter": "2", "modes": [], "icsCode": "1000080", "stopType": "NaptanRailEntrance", "stationNaptan": "940GZZLUFCN", "hubNaptanCode": "HUBZFD", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "4900FRNDNLT0", "commonName": "Farringdon Rail Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.519996, "lon": -0.104707}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "4900FRNDXR0", "indicator": "Entrance 4", "stopLetter": "4", "modes": [], "icsCode": "1000080", "stopType": "NaptanRailEntrance", "stationNaptan": "940GZZLUFCN", "hubNaptanCode": "HUBZFD", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "4900FRNDXR0", "commonName": "Farringdon Rail Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.519559, "lon": -0.099392}, {"$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": "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": "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": "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.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": "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": "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": "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": ["hammersmith-city", "metropolitan", "circle"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["hammersmith-city", "metropolitan", "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": "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": "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": "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": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$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": "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": "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"}], "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}], "lat": 51.520252, "lon": -0.104913}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "940GZZLUFLP", "modes": ["tube", "bus"], "icsCode": "1000079", "stopType": "NaptanMetroStation", "stationNaptan": "940GZZLUFLP", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "462", "name": "462", "uri": "/Line/462", "type": "Line", "crowding": {"$type": "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"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490000079W", "stationAtcoCode": "490G00079E", "lineIdentifier": ["462"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "940GZZLUFLP", "lineIdentifier": ["central"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490000079E", "stationAtcoCode": "490G00079E", "lineIdentifier": ["462"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "bus", "lineIdentifier": ["462"]}, {"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["central"]}], "status": true, "id": "940GZZLUFLP", "commonName": "Fairlop 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": "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": "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": "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": "Facility", "key": "Help Points", "sourceSystemKey": "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": "Fairlop Station,London Underground Ltd.,Forest Rd,Ilford,Essex,IG6 3HD"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.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": "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"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "CarParks_800475"}], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490G00079E", "modes": ["bus"], "icsCode": "1000079", "stopType": "NaptanOnstreetBusCoachStopCluster", "stationNaptan": "490G00079E", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490G00079E", "commonName": "Fairlop Station", "placeType": "StopPoint", "additionalProperties": [], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000079E", "indicator": "Stop R", "stopLetter": "R", "modes": ["bus"], "icsCode": "1000079", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00079E", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000079E", "commonName": "Fairlop Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.595505, "lon": 0.091244}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000079W", "indicator": "Stop S", "stopLetter": "S", "modes": ["bus"], "icsCode": "1000079", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00079E", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000079W", "commonName": "Fairlop Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.595304, "lon": 0.090874}], "lat": 51.595304, "lon": 0.090874}, {"$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": "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": "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": "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"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help 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": "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."}], "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}], "lat": 51.595618, "lon": 0.091004}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "940GZZLUFPK", "modes": ["tube"], "icsCode": "1000083", "stopType": "NaptanMetroStation", "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"}, {"$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": ["victoria"]}, {"$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": ["victoria", "piccadilly"]}], "status": true, "id": "940GZZLUFPK", "commonName": "Finsbury Park 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": "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": "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": "Opening Time", "key": "MonFriTo", "sourceSystemKey": "StaticObjects", "value": "21: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": "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": "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": "MonFriFrom", "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": "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": "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": "SunTo", "sourceSystemKey": "StaticObjects", "value": "22: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": "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": "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": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5870"}], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490G00083R", "modes": ["bus"], "icsCode": "1000083", "stopType": "NaptanOnstreetBusCoachStopCluster", "stationNaptan": "490G00083R", "hubNaptanCode": "HUBFPK", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490G00083R", "commonName": "Finsbury Park Station", "placeType": "StopPoint", "additionalProperties": [], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000083R", "indicator": "Stop R", "stopLetter": "R", "modes": ["bus"], "icsCode": "1000083", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00083R", "hubNaptanCode": "HUBFPK", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000083R", "commonName": "Finsbury Park Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.564003, "lon": -0.10624}], "lat": 51.564003, "lon": -0.10624}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490G00083S", "modes": ["bus"], "icsCode": "1000083", "stopType": "NaptanOnstreetBusCoachStopCluster", "stationNaptan": "490G00083S", "hubNaptanCode": "HUBFPK", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490G00083S", "commonName": "Finsbury Park Station", "placeType": "StopPoint", "additionalProperties": [], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000083S", "indicator": "Stop S", "stopLetter": "S", "modes": ["bus"], "icsCode": "1000083", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00083S", "hubNaptanCode": "HUBFPK", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000083S", "commonName": "Finsbury Park Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.563744, "lon": -0.10638}], "lat": 51.563744, "lon": -0.10638}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490G00083SB", "modes": ["bus"], "icsCode": "1000083", "stopType": "NaptanOnstreetBusCoachStopCluster", "stationNaptan": "490G00083SB", "hubNaptanCode": "HUBFPK", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490G00083SB", "commonName": "Finsbury Park Station", "placeType": "StopPoint", "additionalProperties": [], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000083E", "indicator": "Stop D", "stopLetter": "D", "modes": ["bus"], "icsCode": "1000083", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00083SB", "hubNaptanCode": "HUBFPK", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000083E", "commonName": "Finsbury Park Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.566033, "lon": -0.107771}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000083SB", "indicator": "Stop", "modes": ["bus"], "icsCode": "1000083", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00083SB", "hubNaptanCode": "HUBFPK", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000083SB", "commonName": "Finsbury Park Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.56556, "lon": -0.107993}], "lat": 51.56556, "lon": -0.107993}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490G00083W", "modes": ["bus"], "icsCode": "1000083", "stopType": "NaptanOnstreetBusCoachStopCluster", "stationNaptan": "490G00083W", "hubNaptanCode": "HUBFPK", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490G00083W", "commonName": "Finsbury Park Station", "placeType": "StopPoint", "additionalProperties": [], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000083A", "indicator": "Stop A", "stopLetter": "A", "modes": ["bus"], "icsCode": "1000083", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00083W", "hubNaptanCode": "HUBFPK", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000083A", "commonName": "Finsbury Park Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.565643, "lon": -0.107008}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000083B", "indicator": "Stop B", "stopLetter": "B", "modes": ["bus"], "icsCode": "1000083", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00083W", "hubNaptanCode": "HUBFPK", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000083B", "commonName": "Finsbury Park Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.565706, "lon": -0.107049}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000083C", "indicator": "Stop C", "stopLetter": "C", "modes": ["bus"], "icsCode": "1000083", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00083W", "hubNaptanCode": "HUBFPK", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000083C", "commonName": "Finsbury Park Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.565661, "lon": -0.107022}], "lat": 51.565706, "lon": -0.107049}, {"$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": "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"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.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.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": "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": "SunTo", "sourceSystemKey": "StaticObjects", "value": "22:00"}, {"$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": "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"}], "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": "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": "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": "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"}, {"$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"}], "children": [], "lat": 51.56464, "lon": -0.107281}, {"$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": "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"}, {"$type": "Tfl.Api.Presentation.Entities.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"}], "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": "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": "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": "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": "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": "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": "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": "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": "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": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}], "children": [], "lat": 51.564428, "lon": -0.105746}], "lat": 51.564158, "lon": -0.106825}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "940GZZLUFYC", "modes": ["bus", "tube"], "icsCode": "1000081", "stopType": "NaptanMetroStation", "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"}, {"$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": "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": "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": "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": "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": "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": "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": "n20", "name": "N20", "uri": "/Line/n20", "type": "Line", "crowding": {"$type": "Tfl.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"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490003156F", "stationAtcoCode": "490G03156F", "lineIdentifier": ["382", "326"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490000081C", "stationAtcoCode": "490G00081W", "lineIdentifier": ["626", "460", "125", "13", "143", "683", "sl10", "382", "n20"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490003156E", "stationAtcoCode": "490G03156F", "lineIdentifier": ["326", "382"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490000081D", "stationAtcoCode": "490G00081W", "lineIdentifier": ["n20", "sl10", "382", "125", "13", "143", "683", "626", "460"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["northern"]}, {"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "bus", "lineIdentifier": ["382", "326", "626", "460", "125", "13", "143", "683", "sl10", "n20"]}], "status": true, "id": "940GZZLUFYC", "commonName": "Finchley Central 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": "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": "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": "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": "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": "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": "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": "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"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5834"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "CarParks_800476"}], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490G00081W", "modes": ["bus"], "icsCode": "1000081", "stopType": "NaptanOnstreetBusCoachStopCluster", "stationNaptan": "490G00081W", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490G00081W", "commonName": "Finchley Central Station", "placeType": "StopPoint", "additionalProperties": [], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000081C", "indicator": "Stop C", "stopLetter": "C", "modes": ["bus"], "icsCode": "1000081", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00081W", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000081C", "commonName": "Finchley Central Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.60255, "lon": -0.192173}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000081D", "indicator": "Stop D", "stopLetter": "D", "modes": ["bus"], "icsCode": "1000081", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00081W", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000081D", "commonName": "Finchley Central Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.602247, "lon": -0.192315}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000081N", "indicator": "->N", "stopLetter": "->N", "modes": ["bus"], "icsCode": "1000081", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00081W", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000081N", "commonName": "Finchley Central", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.601157, "lon": -0.192171}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000081S", "indicator": "->S", "stopLetter": "->S", "modes": ["bus"], "icsCode": "1000081", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00081W", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000081S", "commonName": "Finchley Central", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.601078, "lon": -0.192304}], "lat": 51.601157, "lon": -0.192171}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490G03156F", "modes": ["bus"], "icsCode": "1000081", "stopType": "NaptanOnstreetBusCoachStopCluster", "stationNaptan": "490G03156F", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490G03156F", "commonName": "Finchley Central", "placeType": "StopPoint", "additionalProperties": [], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490003156E", "indicator": "Stop K", "stopLetter": "K", "modes": ["bus"], "icsCode": "1000081", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G03156F", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490003156E", "commonName": "Finchley Central", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.602272, "lon": -0.193932}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490003156F", "indicator": "Stop F", "stopLetter": "F", "modes": ["bus"], "icsCode": "1000081", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G03156F", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490003156F", "commonName": "Finchley Central", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.602064, "lon": -0.193839}], "lat": 51.602272, "lon": -0.193932}, {"$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": "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.600611, "lon": -0.192943}, {"$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}], "lat": 51.600921, "lon": -0.192527}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "940GZZLUFYR", "modes": ["tube", "bus"], "icsCode": "1000082", "stopType": "NaptanMetroStation", "stationNaptan": "940GZZLUFYR", "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": "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": "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": "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": "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": "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": "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": "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", "naptanIdReference": "490000082FJ", "stationAtcoCode": "490G00082FL", "lineIdentifier": ["113", "187", "13", "268", "c11", "n113"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490000082FK", "stationAtcoCode": "490G00082R", "lineIdentifier": ["13", "113", "268", "n113", "187"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "940GZZLUFYR", "lineIdentifier": ["metropolitan"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490000082R", "stationAtcoCode": "490G00082R", "lineIdentifier": ["c11"]}, {"$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": "bus", "lineIdentifier": ["113", "187", "13", "268", "c11", "n113"]}, {"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["metropolitan", "jubilee"]}], "status": true, "id": "940GZZLUFYR", "commonName": "Finchley Road 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": "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": "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": "WiFi", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$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": "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": "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": "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": "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"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.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": "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": "490G00082CH", "modes": ["bus"], "icsCode": "1000082", "stopType": "NaptanOnstreetBusCoachStopCluster", "stationNaptan": "490G00082CH", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490G00082CH", "commonName": "Finchley Road Station", "placeType": "StopPoint", "additionalProperties": [], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000082C", "indicator": "Stop CH", "stopLetter": "CH", "modes": ["bus"], "icsCode": "1000082", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00082CH", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000082C", "commonName": "Finchley Road Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.548193, "lon": -0.180613}], "lat": 51.548193, "lon": -0.180613}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490G00082FL", "modes": ["bus"], "icsCode": "1000082", "stopType": "NaptanOnstreetBusCoachStopCluster", "stationNaptan": "490G00082FL", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490G00082FL", "commonName": "Finchley Road Station", "placeType": "StopPoint", "additionalProperties": [], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000082F", "indicator": "Stop CL", "stopLetter": "CL", "modes": ["bus"], "icsCode": "1000082", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00082FL", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000082F", "commonName": "Finchley Road Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.547505, "lon": -0.180308}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000082FJ", "indicator": "Stop FJ", "stopLetter": "FJ", "modes": ["bus"], "icsCode": "1000082", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00082FL", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000082FJ", "commonName": "Finchley Road Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.546349, "lon": -0.178883}], "lat": 51.546349, "lon": -0.178883}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490G00082FP", "modes": ["bus"], "icsCode": "1000082", "stopType": "NaptanOnstreetBusCoachStopCluster", "stationNaptan": "940GZZLUFYR", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490G00082FP", "commonName": "Finchley Road Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.546825, "lon": -0.179845}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490G00082R", "modes": ["bus"], "icsCode": "1000082", "stopType": "NaptanOnstreetBusCoachStopCluster", "stationNaptan": "490G00082R", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490G00082R", "commonName": "Finchley Road Station", "placeType": "StopPoint", "additionalProperties": [], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000082FK", "indicator": "Stop FK", "stopLetter": "FK", "modes": ["bus"], "icsCode": "1000082", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00082R", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000082FK", "commonName": "Finchley Road Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.546745, "lon": -0.179459}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000082R", "indicator": "Stop FP", "stopLetter": "FP", "modes": ["bus"], "icsCode": "1000082", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00082R", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000082R", "commonName": "Finchley Road Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.54622, "lon": -0.180388}], "lat": 51.546745, "lon": -0.179459}, {"$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": "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": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$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": "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": "Help Points", "sourceSystemKey": "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"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "0"}], "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}], "lat": 51.546825, "lon": -0.179845}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "940GZZLUGBY", "modes": ["tube"], "icsCode": "1000094", "stopType": "NaptanMetroStation", "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": "940GZZLUGBY", "commonName": "Gunnersbury 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 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": "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": "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": "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": "Waiting Room", "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": "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": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5551"}], "children": [{"$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": "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": "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": "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"}, {"$type": "Tfl.Api.Presentation.Entities.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": "3"}], "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": "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": "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"}, {"$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": "Gates", "sourceSystemKey": "StaticObjects", "value": "10"}], "children": [], "lat": 51.491465, "lon": -0.275525}], "lat": 51.491803, "lon": -0.275267}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "940GZZLUGDG", "modes": ["bus", "tube"], "icsCode": "1000089", "stopType": "NaptanMetroStation", "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"}, {"$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": "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": "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": "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": "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": "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": "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": "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": "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": "940GZZLUGDG", "lineIdentifier": ["northern"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490000089A", "stationAtcoCode": "490G00089B", "lineIdentifier": ["390", "n20", "n73", "n253", "29", "24", "73", "n5", "n279", "n29"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490005084Z", "stationAtcoCode": "490G00089B", "lineIdentifier": ["n253", "73", "24", "29", "n5", "n29", "n279", "390", "n73", "n20"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["northern"]}, {"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "bus", "lineIdentifier": ["390", "n20", "n73", "n253", "29", "24", "73", "n5", "n279", "n29"]}], "status": true, "id": "940GZZLUGDG", "commonName": "Goodge Street 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": "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": "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": "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": "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": "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": "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": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_12"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_13"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_81"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_88"}, {"$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_306"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_311"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_313"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_357"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_364"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_381"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5358"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5043"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5379"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5399"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5638"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5433"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5701"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5141"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5816"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_4139"}], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490G00089B", "modes": ["bus"], "icsCode": "1000089", "stopType": "NaptanOnstreetBusCoachStopCluster", "stationNaptan": "490G00089B", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490G00089B", "commonName": "Goodge Street Station", "placeType": "StopPoint", "additionalProperties": [], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000089A", "indicator": "Stop A", "stopLetter": "A", "modes": ["bus"], "icsCode": "1000089", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00089B", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000089A", "commonName": "Goodge Street Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.521129, "lon": -0.135046}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490005084Z", "indicator": "Stop D", "stopLetter": "D", "modes": ["bus"], "icsCode": "1000089", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00089B", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490005084Z", "commonName": "Goodge Street Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.520595, "lon": -0.134232}], "lat": 51.520595, "lon": -0.134232}, {"$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": "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"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.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": "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"}], "children": [], "lat": 51.520671, "lon": -0.134503}, {"$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": "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": "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": "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": "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"}], "children": [], "lat": 51.520654, "lon": -0.134489}], "lat": 51.520599, "lon": -0.134361}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "940GZZLUGFD", "modes": ["tube"], "icsCode": "1000092", "stopType": "NaptanMetroStation", "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": "940GZZLUGFD", "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": "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": "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": "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": "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": "4"}, {"$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": "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": "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": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "CarParks_800444"}], "children": [{"$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": "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": "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"}], "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}], "lat": 51.542424, "lon": -0.34605}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "940GZZLUGGH", "modes": ["tube", "bus"], "icsCode": "1000090", "stopType": "NaptanMetroStation", "stationNaptan": "940GZZLUGGH", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "462", "name": "462", "uri": "/Line/462", "type": "Line", "crowding": {"$type": "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"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "150042025006", "stationAtcoCode": "150G00003280", "lineIdentifier": ["462"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "940GZZLUGGH", "lineIdentifier": ["central"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "1500420250Y6", "stationAtcoCode": "150G00003280", "lineIdentifier": ["462"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "bus", "lineIdentifier": ["462"]}, {"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["central"]}], "status": true, "id": "940GZZLUGGH", "commonName": "Grange Hill 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": "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": "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": "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": "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": "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": "Payphones", "sourceSystemKey": "StaticObjects", "value": "1"}], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "150G00003280", "modes": ["bus"], "icsCode": "1000320", "stopType": "NaptanOnstreetBusCoachStopPair", "stationNaptan": "150G00003280", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "150G00003280", "commonName": "Grange Hill Station", "placeType": "StopPoint", "additionalProperties": [], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "150042025006", "indicator": "Stop B", "stopLetter": "B", "modes": ["bus"], "icsCode": "1000320", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "150G00003280", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "150042025006", "commonName": "Grange Hill Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.613399, "lon": 0.091821}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "1500420250Y6", "indicator": "Stop A", "stopLetter": "A", "modes": ["bus"], "icsCode": "1000320", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "150G00003280", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "1500420250Y6", "commonName": "Grange Hill Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.613419, "lon": 0.091678}], "lat": 51.613399, "lon": 0.091821}, {"$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": "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": "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": "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": "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": "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": "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": "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": "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"}], "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}], "lat": 51.613378, "lon": 0.092066}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "940GZZLUGGN", "modes": ["tube", "bus"], "icsCode": "1000087", "stopType": "NaptanMetroStation", "stationNaptan": "940GZZLUGGN", "lines": [{"$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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "n83", "name": "N83", "uri": "/Line/n83", "type": "Line", "crowding": {"$type": "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": "490000087GJ", "stationAtcoCode": "490G00087GK", "lineIdentifier": ["n5", "210", "268"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490000087GK", "stationAtcoCode": "490G00087GK", "lineIdentifier": ["268", "210", "n5"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "940GZZLUGGN", "lineIdentifier": ["northern"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490015497GC", "stationAtcoCode": "490G00087GB", "lineIdentifier": ["328"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490000087B", "stationAtcoCode": "490G00087GB", "lineIdentifier": ["328", "268"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490000087GF", "stationAtcoCode": "490G00087GB", "lineIdentifier": ["139", "260"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490015496GW", "stationAtcoCode": "490G00087GB", "lineIdentifier": ["h2", "h3", "631"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490015496GV", "stationAtcoCode": "490G00087GB", "lineIdentifier": ["h2", "h3", "13", "631", "460", "102"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490000087GB", "stationAtcoCode": "490G00087GB", "lineIdentifier": ["245", "226"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490000087GI", "stationAtcoCode": "490G00087GB", "lineIdentifier": ["240"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490015496GU", "stationAtcoCode": "490G00087GB", "lineIdentifier": ["102", "13", "460"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490000087GH", "stationAtcoCode": "490G00087GB", "lineIdentifier": ["183", "83", "n83"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "bus", "lineIdentifier": ["n5", "210", "268", "328", "139", "260", "h2", "h3", "631", "13", "460", "102", "245", "226", "240", "183", "83", "n83"]}, {"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["northern"]}], "status": true, "id": "940GZZLUGGN", "commonName": "Golders Green 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": "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": "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": "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": "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": "Help Points", "sourceSystemKey": "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": "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": "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": "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": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5436"}], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490G00087GB", "modes": ["bus"], "icsCode": "1000087", "stopType": "NaptanOnstreetBusCoachStopCluster", "stationNaptan": "490G00087GB", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490G00087GB", "commonName": "Golders Green Station", "placeType": "StopPoint", "additionalProperties": [], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000087B", "indicator": "Stop B", "stopLetter": "B", "modes": ["bus"], "icsCode": "1000087", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00087GB", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000087B", "commonName": "Golders Green Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.57209, "lon": -0.194883}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000087GB", "indicator": "Stop GB", "stopLetter": "GB", "modes": ["bus"], "icsCode": "1000087", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00087GB", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000087GB", "commonName": "Golders Green Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.571976, "lon": -0.19392}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000087GE", "indicator": "Stop GE", "stopLetter": "GE", "modes": ["bus"], "icsCode": "1000087", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00087GB", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000087GE", "commonName": "Golders Green Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.5718, "lon": -0.194736}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000087GF", "indicator": "Stand GF", "stopLetter": "GF", "modes": ["bus"], "icsCode": "1000087", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00087GB", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000087GF", "commonName": "Golders Green Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.571799, "lon": -0.194101}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000087GH", "indicator": "Stop GH", "stopLetter": "GH", "modes": ["bus"], "icsCode": "1000087", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00087GB", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000087GH", "commonName": "Golders Green Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.571915, "lon": -0.194053}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000087GI", "indicator": "Stop GI", "stopLetter": "GI", "modes": ["bus"], "icsCode": "1000087", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00087GB", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000087GI", "commonName": "Golders Green Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.571993, "lon": -0.194439}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490015496GU", "indicator": "Stop GU", "stopLetter": "GU", "modes": ["bus"], "icsCode": "1000087", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00087GB", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490015496GU", "commonName": "Golders Green Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.572841, "lon": -0.195777}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490015496GV", "indicator": "Stop GV", "stopLetter": "GV", "modes": ["bus"], "icsCode": "1000087", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00087GB", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490015496GV", "commonName": "Golders Green Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.572956, "lon": -0.195642}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490015496GW", "indicator": "Stop GW", "stopLetter": "GW", "modes": ["bus"], "icsCode": "1000087", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00087GB", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490015496GW", "commonName": "Golders Green Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.572277, "lon": -0.195366}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490015497GC", "indicator": "Stop GC", "stopLetter": "GC", "modes": ["bus"], "icsCode": "1000087", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00087GB", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490015497GC", "commonName": "Golders Green Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.571615, "lon": -0.193819}], "lat": 51.571615, "lon": -0.193819}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490G00087GK", "modes": ["bus"], "icsCode": "1000087", "stopType": "NaptanOnstreetBusCoachStopCluster", "stationNaptan": "490G00087GK", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490G00087GK", "commonName": "Golders Green Station", "placeType": "StopPoint", "additionalProperties": [], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000087GJ", "indicator": "Stop GJ", "stopLetter": "GJ", "modes": ["bus"], "icsCode": "1000087", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00087GK", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000087GJ", "commonName": "Golders Green Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.571494, "lon": -0.193564}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000087GK", "indicator": "Stop GK", "stopLetter": "GK", "modes": ["bus"], "icsCode": "1000087", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00087GK", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000087GK", "commonName": "Golders Green Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.571397, "lon": -0.193669}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000087RX", "indicator": "->E", "stopLetter": "->E", "modes": ["bus"], "icsCode": "1000087", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00087GK", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000087RX", "commonName": "Golders Green Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.572294, "lon": -0.197588}], "lat": 51.572294, "lon": -0.197588}, {"$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": "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": "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": "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": "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": "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": "Payphones", "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": "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": "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.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}], "lat": 51.572259, "lon": -0.194039}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "940GZZLUGHK", "modes": ["bus", "tube"], "icsCode": "1000088", "stopType": "NaptanMetroStation", "stationNaptan": "940GZZLUGHK", "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": "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": "94", "name": "94", "uri": "/Line/94", "type": "Line", "crowding": {"$type": "Tfl.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": ["hammersmith-city", "circle"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490000088Y", "stationAtcoCode": "490G00088Y", "lineIdentifier": ["237", "94"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490000088Z", "stationAtcoCode": "490G00088Y", "lineIdentifier": ["94", "237"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["hammersmith-city", "circle"]}, {"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "bus", "lineIdentifier": ["237", "94"]}], "status": true, "id": "940GZZLUGHK", "commonName": "Goldhawk 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": "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": "Goldhawk Road Station,London Underground Ltd.,Goldhawk Rd,London,W12 8EG"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.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": "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": "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": "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": "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_657"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_667"}], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490G00088Y", "modes": ["bus"], "icsCode": "1000088", "stopType": "NaptanOnstreetBusCoachStopCluster", "stationNaptan": "490G00088Y", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490G00088Y", "commonName": "Goldhawk Road Station", "placeType": "StopPoint", "additionalProperties": [], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000088Y", "indicator": "Stop L", "stopLetter": "L", "modes": ["bus"], "icsCode": "1000088", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00088Y", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000088Y", "commonName": "Goldhawk Road Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.502507, "lon": -0.227315}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000088Z", "indicator": "Stop K", "stopLetter": "K", "modes": ["bus"], "icsCode": "1000088", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00088Y", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000088Z", "commonName": "Goldhawk Road Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.502227, "lon": -0.227211}], "lat": 51.502507, "lon": -0.227315}, {"$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": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$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": "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": "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": "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"}], "children": [], "lat": 51.501973, "lon": -0.226471}, {"$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": "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": "940GZZLUGHK", "lineIdentifier": ["hammersmith-city", "circle"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["hammersmith-city", "circle"]}], "status": true, "id": "9400ZZLUGHK1", "commonName": "Goldhawk Road 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": "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": "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"}], "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": "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": "940GZZLUGHK", "lineIdentifier": ["hammersmith-city", "circle"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["hammersmith-city", "circle"]}], "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": "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": "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": "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": "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": "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": "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}], "lat": 51.502005, "lon": -0.226715}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "940GZZLUGPK", "modes": ["bus", "tube"], "icsCode": "1000093", "stopType": "NaptanMetroStation", "stationNaptan": "940GZZLUGPK", "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": "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": "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": "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": "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"}, {"$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": "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": "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": "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": "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", "naptanIdReference": "490000093PE", "stationAtcoCode": "490G00093PE", "lineIdentifier": ["14", "19", "n9", "n22", "9", "38", "n19", "n38", "n97", "22", "23"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "940GZZLUGPK", "lineIdentifier": ["victoria"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "940GZZLUGPK", "lineIdentifier": ["jubilee"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490000093PA", "stationAtcoCode": "490G00093PE", "lineIdentifier": ["22", "n22"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "940GZZLUGPK", "lineIdentifier": ["piccadilly"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490000093PB", "stationAtcoCode": "490G00093PE", "lineIdentifier": ["23", "14", "19", "n19", "n9", "n38", "n97", "38", "9"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "bus", "lineIdentifier": ["14", "19", "n9", "n22", "9", "38", "n19", "n38", "n97", "22", "23"]}, {"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["victoria", "jubilee", "piccadilly"]}], "status": true, "id": "940GZZLUGPK", "commonName": "Green Park 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": "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"}, {"$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": "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": "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": "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"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_44"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_49"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_53"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_318"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_382"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_391"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_528"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_541"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5252"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5510"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5821"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5868"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5191"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_3451"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5014"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5862"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5778"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_4706"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5594"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_4182"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_4623"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5714"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5647"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5811"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5863"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5351"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_4875"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_4150"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5317"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_4863"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5713"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5651"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5363"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5323"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5099"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5715"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_4475"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5267"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5687"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5861"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5600"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5800"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_4949"}], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490G00093PE", "modes": ["bus"], "icsCode": "1000093", "stopType": "NaptanOnstreetBusCoachStopCluster", "stationNaptan": "490G00093PE", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490G00093PE", "commonName": "Green Park Station", "placeType": "StopPoint", "additionalProperties": [], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000093PA", "indicator": "Stop R", "stopLetter": "R", "modes": ["bus"], "icsCode": "1000093", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00093PE", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000093PA", "commonName": "Green Park Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.507339, "lon": -0.143809}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000093PB", "indicator": "Stop J", "stopLetter": "J", "modes": ["bus"], "icsCode": "1000093", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00093PE", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000093PB", "commonName": "Green Park Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.507013, "lon": -0.142554}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000093PE", "indicator": "Stop H", "stopLetter": "H", "modes": ["bus"], "icsCode": "1000093", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00093PE", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000093PE", "commonName": "Green Park Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.506676, "lon": -0.142841}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000093W", "indicator": "->W", "stopLetter": "->W", "modes": ["bus"], "icsCode": "1000093", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00093PE", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000093W", "commonName": "Green Park Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.506571, "lon": -0.143047}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000093W1", "indicator": "->SW", "modes": ["bus"], "icsCode": "1000093", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00093PE", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000093W1", "commonName": "Green Park Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.506824, "lon": -0.142518}], "lat": 51.507339, "lon": -0.143809}, {"$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": "Facility", "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": "Help 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.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": "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": "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": "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": "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": "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": "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": "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": "BlueBadgeCarParkSpaces", "sourceSystemKey": "LRAD", "value": "0"}, {"$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"}], "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": "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}], "lat": 51.506947, "lon": -0.142787}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "940GZZLUGPS", "modes": ["tube", "bus"], "icsCode": "1000091", "stopType": "NaptanMetroStation", "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": "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": "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": "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": "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"}, {"$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": "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": "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": "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": "n205", "name": "N205", "uri": "/Line/n205", "type": "Line", "crowding": {"$type": "Tfl.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", "metropolitan", "hammersmith-city"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490000091E", "stationAtcoCode": "490G00091G", "lineIdentifier": ["88", "453", "n18"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490000091F", "stationAtcoCode": "490G00091G", "lineIdentifier": ["453", "n18", "88"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490000091G", "stationAtcoCode": "490G00091G", "lineIdentifier": ["18", "205", "30", "27", "n27", "n205"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490000091H", "stationAtcoCode": "490G00091H", "lineIdentifier": ["n205", "n27", "27", "205", "18", "30"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["circle", "metropolitan", "hammersmith-city"]}, {"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "bus", "lineIdentifier": ["88", "453", "n18", "18", "205", "30", "27", "n27", "n205"]}], "status": true, "id": "940GZZLUGPS", "commonName": "Great Portland Street Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$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": "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": "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": "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": "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": "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": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_28"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_76"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_81"}, {"$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_184"}, {"$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_357"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_540"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5405"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5590"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5592"}, {"$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": "490G00091G", "modes": ["bus"], "icsCode": "1000091", "stopType": "NaptanOnstreetBusCoachStopCluster", "stationNaptan": "490G00091G", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490G00091G", "commonName": "Great Portland Street Station", "placeType": "StopPoint", "additionalProperties": [], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000091E", "indicator": "Stop E", "stopLetter": "E", "modes": ["bus"], "icsCode": "1000091", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00091G", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000091E", "commonName": "Great Portland Street Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.52297, "lon": -0.143923}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000091F", "indicator": "Stop F", "stopLetter": "F", "modes": ["bus"], "icsCode": "1000091", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00091G", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000091F", "commonName": "Great Portland Street Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.523461, "lon": -0.144306}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000091G", "indicator": "Stop G", "stopLetter": "G", "modes": ["bus"], "icsCode": "1000091", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00091G", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000091G", "commonName": "Great Portland Street Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.523904, "lon": -0.14387}], "lat": 51.523461, "lon": -0.144306}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490G00091H", "modes": ["bus"], "icsCode": "1000091", "stopType": "NaptanOnstreetBusCoachStopCluster", "stationNaptan": "490G00091H", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490G00091H", "commonName": "Great Portland Street Station", "placeType": "StopPoint", "additionalProperties": [], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000091H", "indicator": "Stop H", "stopLetter": "H", "modes": ["bus"], "icsCode": "1000091", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00091H", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000091H", "commonName": "Great Portland St Stn / Euston Rd", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.524024, "lon": -0.142914}], "lat": 51.524024, "lon": -0.142914}, {"$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": "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": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}], "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": "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": "Help Points", "sourceSystemKey": "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": "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": "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": "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": "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": "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": "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": ["hammersmith-city", "metropolitan", "circle"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["hammersmith-city", "metropolitan", "circle"]}], "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": "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": "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": "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": "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": "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": "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.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": "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"}, {"$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": "940GZZLUGPS", "lineIdentifier": ["circle", "metropolitan", "hammersmith-city"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["circle", "metropolitan", "hammersmith-city"]}], "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}], "lat": 51.52384, "lon": -0.144262}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "940GZZLUGTH", "modes": ["bus", "tube"], "icsCode": "1000085", "stopType": "NaptanMetroStation", "stationNaptan": "940GZZLUGTH", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "462", "name": "462", "uri": "/Line/462", "type": "Line", "crowding": {"$type": "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": "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": "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": "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": "396", "name": "396", "uri": "/Line/396", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "667", "name": "667", "uri": "/Line/667", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "677", "name": "677", "uri": "/Line/677", "type": "Line", "crowding": {"$type": "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": "167", "name": "167", "uri": "/Line/167", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "150", "name": "150", "uri": "/Line/150", "type": "Line", "crowding": {"$type": "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": "490000085G", "stationAtcoCode": "490G00085G", "lineIdentifier": ["462", "n8", "66"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "940GZZLUGTH", "lineIdentifier": ["central"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490015201L", "stationAtcoCode": "490G00085G", "lineIdentifier": ["66", "296", "396"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490015200C", "stationAtcoCode": "490G15200C", "lineIdentifier": ["667", "677", "128", "167", "150", "n8"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490015200E", "stationAtcoCode": "490G15200C", "lineIdentifier": ["167", "150", "667", "677", "128", "n8"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "bus", "lineIdentifier": ["462", "n8", "66", "296", "396", "667", "677", "128", "167", "150"]}, {"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["central"]}], "status": true, "id": "940GZZLUGTH", "commonName": "Gants Hill 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": "Help Points", "sourceSystemKey": "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": "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": "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": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$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": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5673"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5630"}], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490G00085G", "modes": ["bus"], "icsCode": "1000085", "stopType": "NaptanOnstreetBusCoachStopCluster", "stationNaptan": "490G00085G", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490G00085G", "commonName": "Gants Hill Station", "placeType": "StopPoint", "additionalProperties": [], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000085G", "indicator": "Stop EB", "stopLetter": "EB", "modes": ["bus"], "icsCode": "1000085", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00085G", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000085G", "commonName": "Gants Hill Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.57666, "lon": 0.064631}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490015201L", "indicator": "Stop ET", "stopLetter": "ET", "modes": ["bus"], "icsCode": "1000085", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00085G", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490015201L", "commonName": "Gants Hill Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.575956, "lon": 0.068828}], "lat": 51.57666, "lon": 0.064631}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490G15200C", "modes": ["bus"], "icsCode": "1000085", "stopType": "NaptanOnstreetBusCoachStopCluster", "stationNaptan": "490G15200C", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490G15200C", "commonName": "Gants Hill Station", "placeType": "StopPoint", "additionalProperties": [], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490015200C", "indicator": "Stop CP", "stopLetter": "CP", "modes": ["bus"], "icsCode": "1000085", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G15200C", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490015200C", "commonName": "Gants Hill Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.577292, "lon": 0.068066}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490015200E", "indicator": "Stop CE", "stopLetter": "CE", "modes": ["bus"], "icsCode": "1000085", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G15200C", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490015200E", "commonName": "Gants Hill Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.577266, "lon": 0.068483}], "lat": 51.577292, "lon": 0.068066}, {"$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": "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": "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": "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"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.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"}], "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": "Help Points", "sourceSystemKey": "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"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Bridge", "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": "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": "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": "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": "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": "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": "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": "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"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.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": "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"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.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": "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": "Other Facilities", "sourceSystemKey": "StaticObjects", "value": "subway to street."}], "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": "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": "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": "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": "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": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}], "children": [], "lat": 51.576556, "lon": 0.065016}], "lat": 51.576544, "lon": 0.066185}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "940GZZLUGTR", "modes": ["bus", "tube"], "icsCode": "1000086", "stopType": "NaptanMetroStation", "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"}, {"$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": "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": "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": "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": "49", "name": "49", "uri": "/Line/49", "type": "Line", "crowding": {"$type": "Tfl.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"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "940GZZLUGTR", "lineIdentifier": ["circle"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490006956C", "stationAtcoCode": "490G00086A", "lineIdentifier": ["n74", "n97", "74"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490015062W", "stationAtcoCode": "490G00086A", "lineIdentifier": ["n97", "74", "n74"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "940GZZLUGTR", "lineIdentifier": ["circle", "district"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490000086A", "stationAtcoCode": "490G00086A", "lineIdentifier": ["49"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "940GZZLUGTR", "lineIdentifier": ["district"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490000086B", "stationAtcoCode": "490G00086A", "lineIdentifier": ["49"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["piccadilly", "circle", "district"]}, {"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "bus", "lineIdentifier": ["n74", "n97", "74", "49"]}], "status": true, "id": "940GZZLUGTR", "commonName": "Gloucester Road 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": "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"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, 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": "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": "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": "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": "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": "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": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_97"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_113"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_128"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_171"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_187"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_216"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_231"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_378"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_405"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5084"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5938"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5577"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5817"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5939"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5790"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_4580"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_4034"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5719"}], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490G00086A", "modes": ["bus"], "icsCode": "1000086", "stopType": "NaptanOnstreetBusCoachStopCluster", "stationNaptan": "490G00086A", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490G00086A", "commonName": "Gloucester Road Station", "placeType": "StopPoint", "additionalProperties": [], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000086A", "indicator": "Stop GR", "stopLetter": "GR", "modes": ["bus"], "icsCode": "1000086", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00086A", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000086A", "commonName": "Gloucester Road Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.494259, "lon": -0.182573}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000086B", "indicator": "Stop GS", "stopLetter": "GS", "modes": ["bus"], "icsCode": "1000086", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00086A", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000086B", "commonName": "Gloucester Road Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.494093, "lon": -0.182249}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490006956C", "indicator": "Stop GK", "stopLetter": "GK", "modes": ["bus"], "icsCode": "1000086", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00086A", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490006956C", "commonName": "Gloucester Road Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.495006, "lon": -0.18433}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490015062W", "indicator": "Stop GU", "stopLetter": "GU", "modes": ["bus"], "icsCode": "1000086", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00086A", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490015062W", "commonName": "Gloucester Road Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.495067, "lon": -0.181274}], "lat": 51.494259, "lon": -0.182573}, {"$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": "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": "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": "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": "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"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "no"}], "children": [], "lat": 51.494603, "lon": -0.182718}, {"$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": "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, 2 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": "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": "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": "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": "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": "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"}, {"$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": "Bridge", "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": "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"}], "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": "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": "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": "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"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.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}], "lat": 51.494316, "lon": -0.182658}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "940GZZLUHAI", "modes": ["tube"], "icsCode": "1000108", "stopType": "NaptanMetroStation", "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": "940GZZLUHAI", "commonName": "Highbury & Islington 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": "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": "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": "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": "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": "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": "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": "Help Points", "sourceSystemKey": "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"}], "children": [{"$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": "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": "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"}], "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": "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": "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": "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": "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}], "lat": 51.54635, "lon": -0.103324}, {"$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": "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": "14"}, {"$type": "Tfl.Api.Presentation.Entities.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": "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": "4"}, {"$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": "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": "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": "2"}, {"$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": "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"}], "children": [], "lat": 51.592115, "lon": -0.334573}], "lat": 51.592268, "lon": -0.335217}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "940GZZLUHBN", "modes": ["bus", "tube"], "icsCode": "1000112", "stopType": "NaptanMetroStation", "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"}, {"$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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "188", "name": "188", "uri": "/Line/188", "type": "Line", "crowding": {"$type": "Tfl.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"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490000112N", "stationAtcoCode": "490G00112L", "lineIdentifier": ["n91", "sl6", "91", "68", "1"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490015239K", "stationAtcoCode": "490G15239K", "lineIdentifier": ["n242", "n8", "n25", "133", "59", "8"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "940GZZLUHBN", "lineIdentifier": ["central"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490000112P", "stationAtcoCode": "490G00112L", "lineIdentifier": ["243", "n1", "n171", "n68", "188", "59"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["piccadilly", "central"]}, {"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "bus", "lineIdentifier": ["n91", "sl6", "91", "68", "1", "n242", "n8", "n25", "133", "59", "8", "243", "n1", "n171", "n68", "188"]}], "status": true, "id": "940GZZLUHBN", "commonName": "Holborn 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": "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": "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": "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": "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": "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": "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": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_18"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_23"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_24"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_68"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_147"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_162"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_283"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_358"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_436"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_562"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_594"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_751"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_809"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_4203"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5171"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5516"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_4205"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5233"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_4204"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5365"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5676"}], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490G00112L", "modes": ["bus"], "icsCode": "1000112", "stopType": "NaptanOnstreetBusCoachStopCluster", "stationNaptan": "490G00112L", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490G00112L", "commonName": "Holborn Station", "placeType": "StopPoint", "additionalProperties": [], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000112N", "indicator": "Stop N", "stopLetter": "N", "modes": ["bus"], "icsCode": "1000112", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00112L", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000112N", "commonName": "Holborn Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.516872, "lon": -0.120144}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000112P", "indicator": "Stop P", "stopLetter": "P", "modes": ["bus"], "icsCode": "1000112", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00112L", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000112P", "commonName": "Holborn Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.516927, "lon": -0.120214}], "lat": 51.516927, "lon": -0.120214}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490G15239K", "modes": ["bus"], "icsCode": "1000112", "stopType": "NaptanOnstreetBusCoachStopCluster", "stationNaptan": "490G15239K", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490G15239K", "commonName": "Holborn Station", "placeType": "StopPoint", "additionalProperties": [], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490015239K", "indicator": "Stop K", "stopLetter": "K", "modes": ["bus"], "icsCode": "1000112", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G15239K", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490015239K", "commonName": "Holborn Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.517672, "lon": -0.118482}], "lat": 51.517672, "lon": -0.118482}, {"$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": "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": "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": "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": "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": "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": "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": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}], "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": "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": "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"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.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": "Other Facilities", "sourceSystemKey": "StaticObjects", "value": "routeways platform to ticket hall."}], "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}], "lat": 51.51758, "lon": -0.120475}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "940GZZLUHBT", "modes": ["tube", "bus"], "icsCode": "1000107", "stopType": "NaptanMetroStation", "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"}, {"$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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "626", "name": "626", "uri": "/Line/626", "type": "Line", "crowding": {"$type": "Tfl.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"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490000107Q", "stationAtcoCode": "490G00107E", "lineIdentifier": ["307", "234", "34", "384", "389", "326", "606", "107", "634", "263", "n20"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490000107R", "stationAtcoCode": "490G00107E", "lineIdentifier": ["n20", "263", "634", "107", "606", "326", "389", "384", "34", "234", "307"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490000107P", "stationAtcoCode": "490G00107P", "lineIdentifier": ["184", "383", "626"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["northern"]}, {"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "bus", "lineIdentifier": ["307", "234", "34", "384", "389", "326", "606", "107", "634", "263", "n20", "184", "383", "626"]}], "status": true, "id": "940GZZLUHBT", "commonName": "High Barnet 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": "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": "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": "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": "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": "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": "Facility", "key": "Help Points", "sourceSystemKey": "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": "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": "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"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5832"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "CarParks_800478"}], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490G00107E", "modes": ["bus"], "icsCode": "1000107", "stopType": "NaptanOnstreetBusCoachStopCluster", "stationNaptan": "490G00107E", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490G00107E", "commonName": "High Barnet Station", "placeType": "StopPoint", "additionalProperties": [], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000107Q", "indicator": "Stop Q", "stopLetter": "Q", "modes": ["bus"], "icsCode": "1000107", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00107E", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000107Q", "commonName": "High Barnet Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.65008, "lon": -0.194836}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000107R", "indicator": "Stop R", "stopLetter": "R", "modes": ["bus"], "icsCode": "1000107", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00107E", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000107R", "commonName": "High Barnet Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.649345, "lon": -0.193247}], "lat": 51.649345, "lon": -0.193247}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490G00107P", "modes": ["bus"], "icsCode": "1000107", "stopType": "NaptanOnstreetBusCoachStopCluster", "stationNaptan": "490G00107P", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490G00107P", "commonName": "High Barnet Station", "placeType": "StopPoint", "additionalProperties": [], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000107P", "indicator": "Stop P", "stopLetter": "P", "modes": ["bus"], "icsCode": "1000107", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00107P", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000107P", "commonName": "High Barnet Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.651275, "lon": -0.195989}], "lat": 51.651275, "lon": -0.195989}, {"$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": "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": "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": "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": "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": "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": "Car park", "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": "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": "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": "ASDA Click and Collect", "sourceSystemKey": "StaticObjects", "value": "yes"}], "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": "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"}], "children": [], "lat": 51.65061, "lon": -0.19415}], "lat": 51.650541, "lon": -0.194298}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "940GZZLUHCH", "modes": ["bus", "tube"], "icsCode": "1000115", "stopType": "NaptanMetroStation", "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"}, {"$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": "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": "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": "252", "name": "252", "uri": "/Line/252", "type": "Line", "crowding": {"$type": "Tfl.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"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490000115L", "stationAtcoCode": "490G00115L", "lineIdentifier": ["193", "256", "652", "252"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490000115M", "stationAtcoCode": "490G00115L", "lineIdentifier": ["652", "193", "256", "252"]}], "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": "bus", "lineIdentifier": ["193", "256", "652", "252"]}], "status": true, "id": "940GZZLUHCH", "commonName": "Hornchurch 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": "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": "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": "Hornchurch Station,London Underground Ltd.,Station Lane,Hornchurch,Essex,RM12 6LS"}, {"$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": "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": "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": "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, 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": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "CarParks_800480"}], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490G00115L", "modes": ["bus"], "icsCode": "1000115", "stopType": "NaptanOnstreetBusCoachStopCluster", "stationNaptan": "490G00115L", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490G00115L", "commonName": "Hornchurch Station", "placeType": "StopPoint", "additionalProperties": [], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000115L", "indicator": "Stop L", "stopLetter": "L", "modes": ["bus"], "icsCode": "1000115", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00115L", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000115L", "commonName": "Hornchurch Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.554251, "lon": 0.21921}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000115M", "indicator": "Stop M", "stopLetter": "M", "modes": ["bus"], "icsCode": "1000115", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00115L", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000115M", "commonName": "Hornchurch Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.554693, "lon": 0.21965}], "lat": 51.554693, "lon": 0.21965}, {"$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": "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": "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": "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": "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": "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"}], "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}], "lat": 51.554093, "lon": 0.219116}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "940GZZLUHCL", "modes": ["bus", "tube"], "icsCode": "1000106", "stopType": "NaptanMetroStation", "stationNaptan": "940GZZLUHCL", "lines": [{"$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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "n5", "name": "N5", "uri": "/Line/n5", "type": "Line", "crowding": {"$type": "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": "490000106F", "stationAtcoCode": "490G00106G", "lineIdentifier": ["643", "326", "143"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "940GZZLUHCL", "lineIdentifier": ["northern"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490000106G", "stationAtcoCode": "490G00106G", "lineIdentifier": ["326", "643", "186", "143", "113", "324", "n113"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490000106B", "stationAtcoCode": "490G00106A", "lineIdentifier": ["sl10", "83", "n83", "n5"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490000106A", "stationAtcoCode": "490G00106A", "lineIdentifier": ["sl10", "83", "n83", "n5"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490000106E", "stationAtcoCode": "490G00106G", "lineIdentifier": ["n113", "113", "324", "186"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "bus", "lineIdentifier": ["643", "326", "143", "186", "113", "324", "n113", "sl10", "83", "n83", "n5"]}, {"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["northern"]}], "status": true, "id": "940GZZLUHCL", "commonName": "Hendon Central 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": "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": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "3+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": "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"}, {"$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": "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": "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": "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": "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": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5837"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5071"}], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490G00106A", "modes": ["bus"], "icsCode": "1000106", "stopType": "NaptanOnstreetBusCoachStopCluster", "stationNaptan": "490G00106A", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490G00106A", "commonName": "Hendon Central Station", "placeType": "StopPoint", "additionalProperties": [], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000106A", "indicator": "Stop A", "stopLetter": "A", "modes": ["bus"], "icsCode": "1000106", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00106A", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000106A", "commonName": "Hendon Central Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.582832, "lon": -0.225909}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000106B", "indicator": "Stop B", "stopLetter": "B", "modes": ["bus"], "icsCode": "1000106", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00106A", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000106B", "commonName": "Hendon Central Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.582839, "lon": -0.225172}], "lat": 51.582839, "lon": -0.225172}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490G00106G", "modes": ["bus"], "icsCode": "1000106", "stopType": "NaptanOnstreetBusCoachStopCluster", "stationNaptan": "490G00106G", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490G00106G", "commonName": "Hendon Central Station", "placeType": "StopPoint", "additionalProperties": [], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000106E", "indicator": "Stop E", "stopLetter": "E", "modes": ["bus"], "icsCode": "1000106", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00106G", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000106E", "commonName": "Hendon Central Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.583466, "lon": -0.227991}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000106F", "indicator": "Stop F", "stopLetter": "F", "modes": ["bus"], "icsCode": "1000106", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00106G", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000106F", "commonName": "Hendon Central Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.5839, "lon": -0.228682}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000106G", "indicator": "Stop G", "stopLetter": "G", "modes": ["bus"], "icsCode": "1000106", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00106G", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000106G", "commonName": "Hendon Central Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.583863, "lon": -0.228077}], "lat": 51.5839, "lon": -0.228682}, {"$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": "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": "Help Points", "sourceSystemKey": "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.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": "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"}, {"$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"}], "children": [], "lat": 51.583256, "lon": -0.226455}], "lat": 51.583301, "lon": -0.226424}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "940GZZLUHGD", "modes": ["bus", "tube"], "icsCode": "1000111", "stopType": "NaptanMetroStation", "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"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "u2", "name": "U2", "uri": "/Line/u2", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "278", "name": "278", "uri": "/Line/278", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "697", "name": "697", "uri": "/Line/697", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "698", "name": "698", "uri": "/Line/698", "type": "Line", "crowding": {"$type": "Tfl.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"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490000111B", "stationAtcoCode": "490G00111B", "lineIdentifier": ["u2", "278"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490000111N", "stationAtcoCode": "490G00111B", "lineIdentifier": ["u2", "278", "697", "698"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["piccadilly", "metropolitan"]}, {"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "bus", "lineIdentifier": ["u2", "278", "697", "698"]}], "status": true, "id": "940GZZLUHGD", "commonName": "Hillingdon 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": "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": "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": "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": "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": "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": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "6"}, {"$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": "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": "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"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "CarParks_800447"}], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490G00111B", "modes": ["bus"], "icsCode": "1000111", "stopType": "NaptanOnstreetBusCoachStopCluster", "stationNaptan": "490G00111B", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490G00111B", "commonName": "Hillingdon Station", "placeType": "StopPoint", "additionalProperties": [], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000111B", "indicator": "Stop B", "stopLetter": "B", "modes": ["bus"], "icsCode": "1000111", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00111B", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000111B", "commonName": "Hillingdon Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.553505, "lon": -0.448407}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000111N", "indicator": "Stop A", "stopLetter": "A", "modes": ["bus"], "icsCode": "1000111", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00111B", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000111N", "commonName": "Hillingdon Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.553675, "lon": -0.448315}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000111S", "indicator": "Stop LN", "stopLetter": "LN", "modes": ["bus"], "icsCode": "1000111", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00111B", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000111S", "commonName": "Hillingdon Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.553423, "lon": -0.448309}], "lat": 51.553505, "lon": -0.448407}, {"$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": "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": "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": "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": "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": "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": "yes"}, {"$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": "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.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": "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": "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": "Facility", "key": "Help 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": "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": "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"}, {"$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": "Escalators", "sourceSystemKey": "StaticObjects", "value": "yes (disabled 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": "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": "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": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}], "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": "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": "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}], "lat": 51.553715, "lon": -0.449828}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "940GZZLUHGR", "modes": ["tube", "bus"], "icsCode": "1000099", "stopType": "NaptanMetroStation", "stationNaptan": "940GZZLUHGR", "lines": [{"$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": "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": "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": "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": "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": "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": "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", "naptanIdReference": "490015498N", "stationAtcoCode": "490G00099N", "lineIdentifier": ["487", "95"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490000099K", "stationAtcoCode": "490G00099J", "lineIdentifier": ["95", "487"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490000099A", "stationAtcoCode": "490G00099A", "lineIdentifier": ["226", "112", "n83", "483"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "940GZZLUHGR", "lineIdentifier": ["central"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490000099J", "stationAtcoCode": "490G00099J", "lineIdentifier": ["483", "226", "112", "n83"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "bus", "lineIdentifier": ["487", "95", "226", "112", "n83", "483"]}, {"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["central"]}], "status": true, "id": "940GZZLUHGR", "commonName": "Hanger Lane 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": "WiFi", "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": "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": "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": "Help Points", "sourceSystemKey": "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": "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"}], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490G00099A", "modes": ["bus"], "icsCode": "1000099", "stopType": "NaptanOnstreetBusCoachStopCluster", "stationNaptan": "490G00099A", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490G00099A", "commonName": "Hanger Lane Station", "placeType": "StopPoint", "additionalProperties": [], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000099A", "indicator": "Stop A", "stopLetter": "A", "modes": ["bus"], "icsCode": "1000099", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00099A", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000099A", "commonName": "Hanger Lane Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.529043, "lon": -0.292732}], "lat": 51.529043, "lon": -0.292732}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490G00099J", "modes": ["bus"], "icsCode": "1000099", "stopType": "NaptanOnstreetBusCoachStopCluster", "stationNaptan": "490G00099J", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490G00099J", "commonName": "Hanger Lane Station", "placeType": "StopPoint", "additionalProperties": [], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000099J", "indicator": "Stop J", "stopLetter": "J", "modes": ["bus"], "icsCode": "1000099", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00099J", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000099J", "commonName": "Hanger Lane Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.530524, "lon": -0.292575}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000099K", "indicator": "Stop K", "stopLetter": "K", "modes": ["bus"], "icsCode": "1000099", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00099J", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000099K", "commonName": "Hanger Lane Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.530326, "lon": -0.292554}], "lat": 51.530524, "lon": -0.292575}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490G00099N", "modes": ["bus"], "icsCode": "1000099", "stopType": "NaptanOnstreetBusCoachStopCluster", "stationNaptan": "490G00099N", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490G00099N", "commonName": "Hanger Lane Station", "placeType": "StopPoint", "additionalProperties": [], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490015498N", "indicator": "Stop N", "stopLetter": "N", "modes": ["bus"], "icsCode": "1000099", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00099N", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490015498N", "commonName": "Hanger Lane Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.52948, "lon": -0.291923}], "lat": 51.52948, "lon": -0.291923}, {"$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": "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": "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": "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": "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": "Help Points", "sourceSystemKey": "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}], "lat": 51.530177, "lon": -0.292704}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "940GZZLUHGT", "modes": ["tube", "bus"], "icsCode": "1000109", "stopType": "NaptanMetroStation", "stationNaptan": "940GZZLUHGT", "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"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490000109S", "stationAtcoCode": "490G00109S", "lineIdentifier": ["134", "234", "43", "n20"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "940GZZLUHGT", "lineIdentifier": ["northern"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490012359E", "stationAtcoCode": "490G00109S", "lineIdentifier": ["43", "n20", "134", "234"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "bus", "lineIdentifier": ["134", "234", "43", "n20"]}, {"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["northern"]}], "status": true, "id": "940GZZLUHGT", "commonName": "Highgate 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": "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": "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": "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": "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": "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": "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": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "CarParks_800479"}], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490G00109S", "modes": ["bus"], "icsCode": "1000109", "stopType": "NaptanOnstreetBusCoachStopCluster", "stationNaptan": "490G00109S", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490G00109S", "commonName": "Highgate Station", "placeType": "StopPoint", "additionalProperties": [], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000109S", "indicator": "Stop T", "stopLetter": "T", "modes": ["bus"], "icsCode": "1000109", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00109S", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000109S", "commonName": "Highgate Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.577004, "lon": -0.145532}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490012359E", "indicator": "Stop G", "stopLetter": "G", "modes": ["bus"], "icsCode": "1000109", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00109S", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490012359E", "commonName": "Highgate Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.575952, "lon": -0.143251}], "lat": 51.577004, "lon": -0.145532}, {"$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": "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": "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": "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": "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": "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": "3"}], "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}], "lat": 51.577532, "lon": -0.145857}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "940GZZLUHLT", "modes": ["bus", "tube"], "icsCode": "1000095", "stopType": "NaptanMetroStation", "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"}, {"$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": "150", "name": "150", "uri": "/Line/150", "type": "Line", "crowding": {"$type": "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": "940GZZLUHLT", "lineIdentifier": ["central"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490000095B", "stationAtcoCode": "490G00095A", "lineIdentifier": ["247", "150", "n8"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490000095A", "stationAtcoCode": "490G00095A", "lineIdentifier": ["150", "247", "n8"]}], "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": "bus", "lineIdentifier": ["247", "150", "n8"]}], "status": true, "id": "940GZZLUHLT", "commonName": "Hainault 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": "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": "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": "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 (male, female)"}, {"$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"}, {"$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": "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": "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": "Escalators", "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": "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"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "CarParks_800477"}], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490G00095A", "modes": ["bus"], "icsCode": "1000095", "stopType": "NaptanOnstreetBusCoachStopCluster", "stationNaptan": "490G00095A", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490G00095A", "commonName": "Hainault Station", "placeType": "StopPoint", "additionalProperties": [], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000095A", "indicator": "Stop U", "stopLetter": "U", "modes": ["bus"], "icsCode": "1000095", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00095A", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000095A", "commonName": "Hainault Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.604188, "lon": 0.094474}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000095B", "indicator": "Stop T", "stopLetter": "T", "modes": ["bus"], "icsCode": "1000095", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00095A", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000095B", "commonName": "Hainault Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.604361, "lon": 0.094857}], "lat": 51.604361, "lon": 0.094857}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000095003", "indicator": "Entrance 1", "stopLetter": "1", "modes": ["bus"], "icsCode": "1000095", "stopType": "NaptanMetroEntrance", "stationNaptan": "940GZZLUHLT", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000095003", "commonName": "Hainault Underground Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.603915, "lon": 0.093118}, {"$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": "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": "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": "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}], "lat": 51.603659, "lon": 0.093482}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "940GZZLUHNX", "modes": ["bus", "tube"], "icsCode": "1000103", "stopType": "NaptanMetroStation", "stationNaptan": "940GZZLUHNX", "lines": [{"$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": "285", "name": "285", "uri": "/Line/285", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "90", "name": "90", "uri": "/Line/90", "type": "Line", "crowding": {"$type": "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": "203", "name": "203", "uri": "/Line/203", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "h25", "name": "H25", "uri": "/Line/h25", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "h26", "name": "H26", "uri": "/Line/h26", "type": "Line", "crowding": {"$type": "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": "423", "name": "423", "uri": "/Line/423", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "482", "name": "482", "uri": "/Line/482", "type": "Line", "crowding": {"$type": "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": "490000103C", "stationAtcoCode": "490G00103G", "lineIdentifier": ["490", "285", "90", "sl7"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490000103Z", "stationAtcoCode": "490G00103G", "lineIdentifier": ["203", "h25", "h26"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "940GZZLUHNX", "lineIdentifier": ["piccadilly"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490000103F", "stationAtcoCode": "490G00103G", "lineIdentifier": ["h26", "h25", "285", "90", "sl7", "423"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490000103E", "stationAtcoCode": "490G00103G", "lineIdentifier": ["482", "490"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490000103D", "stationAtcoCode": "490G00103G", "lineIdentifier": ["203", "482", "423"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "bus", "lineIdentifier": ["490", "285", "90", "sl7", "203", "h25", "h26", "423", "482"]}, {"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["piccadilly"]}], "status": true, "id": "940GZZLUHNX", "commonName": "Hatton Cross 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": "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": "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": "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": "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": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "5+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": "Toilets", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "CarParks_800446"}], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490G00103G", "modes": ["bus"], "icsCode": "1000103", "stopType": "NaptanOnstreetBusCoachStopCluster", "stationNaptan": "490G00103G", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490G00103G", "commonName": "Hatton Cross Station", "placeType": "StopPoint", "additionalProperties": [], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000103A", "indicator": "->SW", "modes": ["bus"], "icsCode": "1000103", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00103G", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000103A", "commonName": "Hatton Cross Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.46699, "lon": -0.423327}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000103B", "indicator": "->W", "stopLetter": "->W", "modes": ["bus"], "icsCode": "1000103", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00103G", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000103B", "commonName": "Hatton Cross Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.466875, "lon": -0.423518}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000103C", "indicator": "Stop C", "stopLetter": "C", "modes": ["bus"], "icsCode": "1000103", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00103G", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000103C", "commonName": "Hatton Cross Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.466802, "lon": -0.423376}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000103D", "indicator": "Stop B", "stopLetter": "B", "modes": ["bus"], "icsCode": "1000103", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00103G", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000103D", "commonName": "Hatton Cross Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.466774, "lon": -0.423363}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000103E", "indicator": "Stop A", "stopLetter": "A", "modes": ["bus"], "icsCode": "1000103", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00103G", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000103E", "commonName": "Hatton Cross Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.466743, "lon": -0.423738}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000103E1", "indicator": "->E", "stopLetter": "->E", "modes": ["bus"], "icsCode": "1000103", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00103G", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000103E1", "commonName": "Hatton Cross Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.466748, "lon": -0.423393}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000103F", "indicator": "Stop E", "stopLetter": "E", "modes": ["bus"], "icsCode": "1000103", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00103G", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000103F", "commonName": "Hatton Cross Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.467343, "lon": -0.422854}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000103Z", "indicator": "Stop D", "stopLetter": "D", "modes": ["bus"], "icsCode": "1000103", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00103G", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000103Z", "commonName": "Hatton Cross Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.466916, "lon": -0.4232}], "lat": 51.466743, "lon": -0.423738}, {"$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": "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": "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"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.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."}], "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": "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": "Help Points", "sourceSystemKey": "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": "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}], "lat": 51.466747, "lon": -0.423191}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "940GZZLUHOH", "modes": ["tube"], "icsCode": "1000102", "stopType": "NaptanMetroStation", "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": "940GZZLUHOH", "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": "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": "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": "WiFi", "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": "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": "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": "Euro Cash Machines", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_4903"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5530"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "CarParks_800445"}], "children": [{"$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": "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"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.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"}], "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}], "lat": 51.579195, "lon": -0.337225}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "940GZZLUHPC", "modes": ["tube", "bus"], "icsCode": "1000119", "stopType": "NaptanMetroStation", "stationNaptan": "940GZZLUHPC", "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490000119N", "stationAtcoCode": "490G00119A", "lineIdentifier": ["14", "n97", "414", "n74", "74"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490000119F", "stationAtcoCode": "490G00119F", "lineIdentifier": ["6", "n32", "n38", "148", "13", "52", "38", "2", "36", "n2", "390"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "940GZZLUHPC", "lineIdentifier": ["piccadilly"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490000119W", "stationAtcoCode": "490G00119S", "lineIdentifier": ["74", "414", "n74"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490000119K", "stationAtcoCode": "490G00119F", "lineIdentifier": ["137", "13", "2", "452", "36", "19", "n22", "n137", "n19", "38", "6", "148", "22", "n32", "n38", "52", "390", "n2"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490000119M", "stationAtcoCode": "490G00119A", "lineIdentifier": ["52", "9", "n9"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490000119T", "stationAtcoCode": "490G00119S", "lineIdentifier": ["n9", "14", "9", "n97"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490000119P", "stationAtcoCode": "490G00119A", "lineIdentifier": ["n19", "19", "137", "n22", "22", "n137"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490000119S", "stationAtcoCode": "490G00119S", "lineIdentifier": ["52"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "bus", "lineIdentifier": ["14", "n97", "414", "n74", "74", "6", "n32", "n38", "148", "13", "52", "38", "2", "36", "n2", "390", "137", "452", "19", "n22", "n137", "n19", "22", "9", "n9"]}, {"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["piccadilly"]}], "status": true, "id": "940GZZLUHPC", "commonName": "Hyde Park Corner 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": "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": "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": "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": "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": "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": "BikePoints_166"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_181"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_191"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_207"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_213"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_222"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_303"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_380"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_733"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5664"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_4762"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_4852"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5864"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_4457"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_4968"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5373"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5000"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_4706"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5969"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5968"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_4863"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_3738"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_4638"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_4761"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5966"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_4412"}], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490G00119A", "modes": ["bus"], "icsCode": "1000119", "stopType": "NaptanOnstreetBusCoachStopCluster", "stationNaptan": "490G00119A", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490G00119A", "commonName": "Hyde Park Corner", "placeType": "StopPoint", "additionalProperties": [], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000119L", "indicator": "Stop 13", "stopLetter": "13", "modes": ["bus"], "icsCode": "1000119", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00119A", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000119L", "commonName": "Hyde Park Corner", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.502783, "lon": -0.153129}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000119M", "indicator": "Stop M", "stopLetter": "M", "modes": ["bus"], "icsCode": "1000119", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00119A", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000119M", "commonName": "Hyde Park Corner Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.502749, "lon": -0.153274}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000119N", "indicator": "Stop N", "stopLetter": "N", "modes": ["bus"], "icsCode": "1000119", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00119A", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000119N", "commonName": "Hyde Park Corner Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.502707, "lon": -0.153449}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000119P", "indicator": "Stop P", "stopLetter": "P", "modes": ["bus"], "icsCode": "1000119", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00119A", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000119P", "commonName": "Hyde Park Corner Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.502604, "lon": -0.153756}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000119ZA", "indicator": "W-bound", "modes": ["bus"], "icsCode": "1000119", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00119A", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000119ZA", "commonName": "Hyde Park Corner", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.502572, "lon": -0.154002}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000119ZB", "indicator": "W-bound", "modes": ["bus"], "icsCode": "1000119", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00119A", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000119ZB", "commonName": "Hyde Park Corner", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.502836, "lon": -0.154207}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000119ZC", "indicator": "W-bound", "modes": ["bus"], "icsCode": "1000119", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00119A", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000119ZC", "commonName": "Hyde Park Corner", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.502581, "lon": -0.153987}], "lat": 51.502707, "lon": -0.153449}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490G00119F", "modes": ["bus"], "icsCode": "1000119", "stopType": "NaptanOnstreetBusCoachStopCluster", "stationNaptan": "490G00119F", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490G00119F", "commonName": "Hyde Park Corner", "placeType": "StopPoint", "additionalProperties": [], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000119F", "indicator": "Stop F", "stopLetter": "F", "modes": ["bus"], "icsCode": "1000119", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00119F", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000119F", "commonName": "Hyde Park Corner", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.502088, "lon": -0.150679}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000119K", "indicator": "Stop K", "stopLetter": "K", "modes": ["bus"], "icsCode": "1000119", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00119F", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000119K", "commonName": "Hyde Park Corner", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.501347, "lon": -0.151054}], "lat": 51.501347, "lon": -0.151054}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490G00119S", "modes": ["bus"], "icsCode": "1000119", "stopType": "NaptanOnstreetBusCoachStopCluster", "stationNaptan": "490G00119S", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490G00119S", "commonName": "Hyde Park Corner", "placeType": "StopPoint", "additionalProperties": [], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000119R", "indicator": "Stop R", "stopLetter": "R", "modes": ["bus"], "icsCode": "1000119", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00119S", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000119R", "commonName": "Hyde Park Corner", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.502889, "lon": -0.154148}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000119S", "indicator": "Stop S", "stopLetter": "S", "modes": ["bus"], "icsCode": "1000119", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00119S", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000119S", "commonName": "Hyde Park Corner Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.502966, "lon": -0.153914}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000119T", "indicator": "Stop T", "stopLetter": "T", "modes": ["bus"], "icsCode": "1000119", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00119S", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000119T", "commonName": "Hyde Park Corner Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.503023, "lon": -0.153508}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000119W", "indicator": "Stop W", "stopLetter": "W", "modes": ["bus"], "icsCode": "1000119", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00119S", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000119W", "commonName": "Hyde Park Corner Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.503044, "lon": -0.153161}], "lat": 51.502966, "lon": -0.153914}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490G07492W", "modes": ["bus"], "icsCode": "1000119", "stopType": "NaptanOnstreetBusCoachStopCluster", "stationNaptan": "490G07492W", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490G07492W", "commonName": "Hyde Park Corner", "placeType": "StopPoint", "additionalProperties": [], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000119X", "indicator": "SW-bound", "modes": ["bus"], "icsCode": "1000119", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G07492W", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000119X", "commonName": "Hyde Park Corner", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.503862, "lon": -0.148013}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490007492W1", "indicator": "W-bound", "modes": ["bus"], "icsCode": "1000119", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G07492W", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490007492W1", "commonName": "Hyde Park Corner", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.503914, "lon": -0.147896}], "lat": 51.503914, "lon": -0.147896}, {"$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": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$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": "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": "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": "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": "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"}], "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": "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": "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": "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": "Photo 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"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.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"}], "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": "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": "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"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.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": "Escalators", "sourceSystemKey": "StaticObjects", "value": "2"}], "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}], "lat": 51.503035, "lon": -0.152441}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "940GZZLUHPK", "modes": ["tube", "bus"], "icsCode": "1000113", "stopType": "NaptanMetroStation", "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"}, {"$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": "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": "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": "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": "31", "name": "31", "uri": "/Line/31", "type": "Line", "crowding": {"$type": "Tfl.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"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490000113G", "stationAtcoCode": "490G00113G", "lineIdentifier": ["228", "94", "n207", "148", "31"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490000113A", "stationAtcoCode": "490G00113G", "lineIdentifier": ["31", "148", "n207", "228", "94"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490000113T", "stationAtcoCode": "490G00113G", "lineIdentifier": ["228", "94", "n207", "148", "31"]}], "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": "bus", "lineIdentifier": ["228", "94", "n207", "148", "31"]}], "status": true, "id": "940GZZLUHPK", "commonName": "Holland Park 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": "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": "Help Points", "sourceSystemKey": "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": "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": "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": "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": "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": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_212"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_543"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_560"}, {"$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_611"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_622"}], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490G00113G", "modes": ["bus"], "icsCode": "1000113", "stopType": "NaptanOnstreetBusCoachStopCluster", "stationNaptan": "490G00113G", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490G00113G", "commonName": "Holland Park", "placeType": "StopPoint", "additionalProperties": [], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000113A", "indicator": "Stop HA", "stopLetter": "HA", "modes": ["bus"], "icsCode": "1000113", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00113G", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000113A", "commonName": "Holland Park", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.50759, "lon": -0.20386}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000113G", "indicator": "Stop HB", "stopLetter": "HB", "modes": ["bus"], "icsCode": "1000113", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00113G", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000113G", "commonName": "Holland Park Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.50696, "lon": -0.206118}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000113T", "indicator": "Stop HL", "stopLetter": "HL", "modes": ["bus"], "icsCode": "1000113", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00113G", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000113T", "commonName": "Holland Park Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.507605, "lon": -0.204839}], "lat": 51.50759, "lon": -0.20386}, {"$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": "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.507276, "lon": -0.205616}, {"$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": "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": "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": "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": "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": "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"}], "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}], "lat": 51.507143, "lon": -0.205679}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "940GZZLUHR4", "modes": ["tube"], "icsCode": "1000104", "stopType": "NaptanMetroStation", "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": "940GZZLUHR4", "commonName": "Heathrow Terminal 4 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": "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"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "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": "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": "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": "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": "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": "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_5935"}], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "4900HTRWTM49", "indicator": "Entrance 2", "stopLetter": "2", "modes": [], "icsCode": "1000104", "stopType": "NaptanMetroEntrance", "stationNaptan": "940GZZLUHR4", "hubNaptanCode": "HUBHX4", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "4900HTRWTM49", "commonName": "Heathrow Terminal 4 Underground Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.459273, "lon": -0.44481}, {"$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": "Help Points", "sourceSystemKey": "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"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}], "children": [], "lat": 51.458363, "lon": -0.445863}], "lat": 51.458524, "lon": -0.445771}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "940GZZLUHR5", "modes": ["tube"], "icsCode": "1016430", "stopType": "NaptanMetroStation", "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": "940GZZLUHR5", "commonName": "Heathrow Terminal 5 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": "Help Points", "sourceSystemKey": "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": "Facility", "key": "Escalators", "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": "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"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo 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": "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": "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": "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": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5936"}], "children": [{"$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}], "lat": 51.470052, "lon": -0.49056}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "940GZZLUHRC", "modes": ["tube"], "icsCode": "1000105", "stopType": "NaptanMetroStation", "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": "940GZZLUHRC", "commonName": "Heathrow Terminals 2 & 3 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": "Euro Cash Machines", "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"}, {"$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": "WiFi", "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": "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": "Help Points", "sourceSystemKey": "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": "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": "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": "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": "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 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"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5934"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5932"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5933"}], "children": [{"$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": "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"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.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"}], "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": "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": "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": "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": "Help Points", "sourceSystemKey": "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": "12"}, {"$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": "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": "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"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "no"}], "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": "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": "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"}, {"$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"}], "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}], "lat": 51.471235, "lon": -0.452265}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "940GZZLUHSC", "modes": ["tube"], "icsCode": "1000097", "stopType": "NaptanMetroStation", "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": "940GZZLUHSC", "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": "Gates", "sourceSystemKey": "StaticObjects", "value": "10"}, {"$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": "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": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_598"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_730"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_4595"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_775"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5396"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_595"}, {"$type": "Tfl.Api.Presentation.Entities.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": "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": "BlueBadgeCarParkSpaces", "sourceSystemKey": "LRAD", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.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": "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": "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": "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": "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"}], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490G00097T", "modes": ["bus"], "icsCode": "1000097", "stopType": "NaptanOnstreetBusCoachStopCluster", "stationNaptan": "490G00097T", "hubNaptanCode": "HUBHMS", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490G00097T", "commonName": "Hammersmith Stn / H&c and Circle Lines", "placeType": "StopPoint", "additionalProperties": [], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000097T", "indicator": "Stop W", "stopLetter": "W", "modes": ["bus"], "icsCode": "1000097", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00097T", "hubNaptanCode": "HUBHMS", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000097T", "commonName": "Hammersmith Stn / H&c and Circle Lines", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.493339, "lon": -0.225208}], "lat": 51.493339, "lon": -0.225208}, {"$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": "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": "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": "940GZZLUHSC", "lineIdentifier": ["hammersmith-city", "circle"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["hammersmith-city", "circle"]}], "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": "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": "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": "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": "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": "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": "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"}], "children": [], "lat": 51.493843, "lon": -0.22513}], "lat": 51.493307, "lon": -0.224301}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "940GZZLUHSD", "modes": ["tube"], "icsCode": "1000096", "stopType": "NaptanMetroStation", "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"}, {"$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": ["piccadilly"]}, {"$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": ["piccadilly", "district"]}], "status": true, "id": "940GZZLUHSD", "commonName": "Hammersmith (Dist&Picc Line) 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": "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": "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": "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": "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": "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": "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": "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"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_595"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_598"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_686"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_730"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_775"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_4595"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5396"}], "children": [{"$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": "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": "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": "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": "Gates", "sourceSystemKey": "StaticObjects", "value": "24"}, {"$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": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}], "children": [], "lat": 51.491921, "lon": -0.22362}, {"$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": "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": "Help 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": "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": "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": "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": "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"}], "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": "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": "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"}], "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}], "lat": 51.4923, "lon": -0.22362}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "940GZZLUHSK", "modes": ["bus", "tube"], "icsCode": "1000110", "stopType": "NaptanMetroStation", "stationNaptan": "940GZZLUHSK", "lines": [{"$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": "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": "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": "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": "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": "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": "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": "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": "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": "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", "naptanIdReference": "490000110A", "stationAtcoCode": "490G00110R", "lineIdentifier": ["27", "n31", "328", "n27", "49", "28", "n28"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490000110B", "stationAtcoCode": "490G00110R", "lineIdentifier": ["n9", "9"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "940GZZLUHSK", "lineIdentifier": ["circle", "district"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490000110F", "stationAtcoCode": "490G00110R", "lineIdentifier": ["9", "27", "n27", "n9"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490000110E", "stationAtcoCode": "490G00110R", "lineIdentifier": ["28", "n28", "n31", "49", "328"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "bus", "lineIdentifier": ["27", "n31", "328", "n27", "49", "28", "n28", "n9", "9"]}, {"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["circle", "district"]}], "status": true, "id": "940GZZLUHSK", "commonName": "High Street Kensington 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": "Payphones", "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": "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": "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": "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": "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": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_103"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_133"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_157"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_168"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_277"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_375"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_4556"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_4858"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5663"}], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490G00110R", "modes": ["bus"], "icsCode": "1000110", "stopType": "NaptanOnstreetBusCoachStopCluster", "stationNaptan": "490G00110R", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490G00110R", "commonName": "High Street Kensington Station", "placeType": "StopPoint", "additionalProperties": [], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000110A", "indicator": "Stop A", "stopLetter": "A", "modes": ["bus"], "icsCode": "1000110", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00110R", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000110A", "commonName": "High Street Kensington Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.500982, "lon": -0.193415}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000110B", "indicator": "Stop B", "stopLetter": "B", "modes": ["bus"], "icsCode": "1000110", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00110R", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000110B", "commonName": "High Street Kensington Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.500717, "lon": -0.194246}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000110E", "indicator": "Stop E", "stopLetter": "E", "modes": ["bus"], "icsCode": "1000110", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00110R", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000110E", "commonName": "High Street Kensington Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.501324, "lon": -0.192234}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000110F", "indicator": "Stop F", "stopLetter": "F", "modes": ["bus"], "icsCode": "1000110", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00110R", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000110F", "commonName": "High Street Kensington Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.501347, "lon": -0.192003}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000110R", "indicator": "Stop R", "stopLetter": "R", "modes": ["bus"], "icsCode": "1000110", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00110R", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000110R", "commonName": "High Street Kensington Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.500951, "lon": -0.193128}], "lat": 51.500951, "lon": -0.193128}, {"$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": "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": "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": "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": "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": "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": "Car park", "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": "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"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.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"}], "children": [], "lat": 51.500362, "lon": -0.192142}], "lat": 51.501055, "lon": -0.192792}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "940GZZLUHSN", "modes": ["tube"], "icsCode": "1000100", "stopType": "NaptanMetroStation", "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": "940GZZLUHSN", "commonName": "Harlesden 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 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": "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": "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": "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": "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": "Photo 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": "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": "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": "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"}], "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}], "lat": 51.53631, "lon": -0.257883}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "940GZZLUHTD", "modes": ["bus", "tube"], "icsCode": "1000098", "stopType": "NaptanMetroStation", "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"}, {"$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": "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": "603", "name": "603", "uri": "/Line/603", "type": "Line", "crowding": {"$type": "Tfl.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"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490000098B", "stationAtcoCode": "490G00098S", "lineIdentifier": ["268", "46", "n5"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490000098S", "stationAtcoCode": "490G00098S", "lineIdentifier": ["n5", "268", "603"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["northern"]}, {"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "bus", "lineIdentifier": ["268", "46", "n5", "603"]}], "status": true, "id": "940GZZLUHTD", "commonName": "Hampstead 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": "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": "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": "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": "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": "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": "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": "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": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "no"}], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490G00098S", "modes": ["bus"], "icsCode": "1000098", "stopType": "NaptanOnstreetBusCoachStopCluster", "stationNaptan": "490G00098S", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490G00098S", "commonName": "Hampstead Station", "placeType": "StopPoint", "additionalProperties": [], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000098B", "indicator": "Stop B", "stopLetter": "B", "modes": ["bus"], "icsCode": "1000098", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00098S", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000098B", "commonName": "Hampstead Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.555959, "lon": -0.177504}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000098S", "indicator": "Stop Q", "stopLetter": "Q", "modes": ["bus"], "icsCode": "1000098", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00098S", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000098S", "commonName": "Hampstead Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.556916, "lon": -0.17836}], "lat": 51.555959, "lon": -0.177504}, {"$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": "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"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.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.556799, "lon": -0.17835}, {"$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": "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": "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": "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": "Help Points", "sourceSystemKey": "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": "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": "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"}], "children": [], "lat": 51.556239, "lon": -0.177464}], "lat": 51.556239, "lon": -0.177464}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "940GZZLUHWC", "modes": ["bus", "tube"], "icsCode": "1000116", "stopType": "NaptanMetroStation", "stationNaptan": "940GZZLUHWC", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "h20", "name": "H20", "uri": "/Line/h20", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "120", "name": "120", "uri": "/Line/120", "type": "Line", "crowding": {"$type": "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", "naptanIdReference": "4900001162", "stationAtcoCode": "490G001161", "lineIdentifier": ["h20", "120"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "940GZZLUHWC", "lineIdentifier": ["piccadilly"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "4900001161", "stationAtcoCode": "490G001161", "lineIdentifier": ["h20", "120"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "bus", "lineIdentifier": ["h20", "120"]}, {"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["piccadilly"]}], "status": true, "id": "940GZZLUHWC", "commonName": "Hounslow Central 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": "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": "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": "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": "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": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5597"}], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490G001161", "modes": ["bus"], "icsCode": "1000116", "stopType": "NaptanOnstreetBusCoachStopCluster", "stationNaptan": "490G001161", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490G001161", "commonName": "Hounslow Central Station", "placeType": "StopPoint", "additionalProperties": [], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "4900001161", "indicator": "Stop RR", "stopLetter": "RR", "modes": ["bus"], "icsCode": "1000116", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G001161", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "4900001161", "commonName": "Hounslow Central Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.471788, "lon": -0.367238}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "4900001162", "indicator": "Stop YY", "stopLetter": "YY", "modes": ["bus"], "icsCode": "1000116", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G001161", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "4900001162", "commonName": "Hounslow Central Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.470895, "lon": -0.367039}], "lat": 51.471788, "lon": -0.367238}, {"$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": "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": "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": "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": "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": "Help Points", "sourceSystemKey": "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.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}], "lat": 51.471295, "lon": -0.366578}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "940GZZLUHWE", "modes": ["bus", "tube"], "icsCode": "1000117", "stopType": "NaptanMetroStation", "stationNaptan": "940GZZLUHWE", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "111", "name": "111", "uri": "/Line/111", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "h28", "name": "H28", "uri": "/Line/h28", "type": "Line", "crowding": {"$type": "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", "naptanIdReference": "490000117D", "stationAtcoCode": "490G00117E", "lineIdentifier": ["111", "h28"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "940GZZLUHWE", "lineIdentifier": ["piccadilly"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490000117E", "stationAtcoCode": "490G00117E", "lineIdentifier": ["111", "h28"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "bus", "lineIdentifier": ["111", "h28"]}, {"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["piccadilly"]}], "status": true, "id": "940GZZLUHWE", "commonName": "Hounslow East 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": "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": "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": "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": "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": "Help Points", "sourceSystemKey": "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": "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": "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": "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": "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": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "CarParks_800448"}], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490G00117E", "modes": ["bus"], "icsCode": "1000117", "stopType": "NaptanOnstreetBusCoachStopCluster", "stationNaptan": "490G00117E", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490G00117E", "commonName": "Hounslow East Station", "placeType": "StopPoint", "additionalProperties": [], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000117D", "indicator": "Stop DD", "stopLetter": "DD", "modes": ["bus"], "icsCode": "1000117", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00117E", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000117D", "commonName": "Hounslow East Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.473462, "lon": -0.357041}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000117E", "indicator": "Stop EE", "stopLetter": "EE", "modes": ["bus"], "icsCode": "1000117", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00117E", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000117E", "commonName": "Hounslow East Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.472937, "lon": -0.356757}], "lat": 51.473462, "lon": -0.357041}, {"$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": "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": "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"}], "children": [], "lat": 51.473306, "lon": -0.356802}, {"$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": "Payphones", "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": "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"}, {"$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": "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": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}], "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}], "lat": 51.473213, "lon": -0.356474}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "940GZZLUHWT", "modes": ["bus", "tube"], "icsCode": "1000118", "stopType": "NaptanMetroStation", "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"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "203", "name": "203", "uri": "/Line/203", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "h98", "name": "H98", "uri": "/Line/h98", "type": "Line", "crowding": {"$type": "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": "222", "name": "222", "uri": "/Line/222", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "81", "name": "81", "uri": "/Line/81", "type": "Line", "crowding": {"$type": "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": "h32", "name": "H32", "uri": "/Line/h32", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "482", "name": "482", "uri": "/Line/482", "type": "Line", "crowding": {"$type": "Tfl.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"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490000118C", "stationAtcoCode": "490G00118B", "lineIdentifier": ["203", "h98", "n9", "222", "81"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490000118B", "stationAtcoCode": "490G00118B", "lineIdentifier": ["h91"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490000118A", "stationAtcoCode": "490G00118B", "lineIdentifier": ["n9", "222", "h32", "h98", "482", "81", "203"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["piccadilly"]}, {"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "bus", "lineIdentifier": ["203", "h98", "n9", "222", "81", "h91", "h32", "482"]}], "status": true, "id": "940GZZLUHWT", "commonName": "Hounslow West 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": "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": "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": "Help Points", "sourceSystemKey": "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": "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": "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": "no"}, {"$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": "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": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5556"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "CarParks_800449"}], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490G00118B", "modes": ["bus"], "icsCode": "1000118", "stopType": "NaptanOnstreetBusCoachStopCluster", "stationNaptan": "490G00118B", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490G00118B", "commonName": "Hounslow West Station", "placeType": "StopPoint", "additionalProperties": [], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000118A", "indicator": "Stop A", "stopLetter": "A", "modes": ["bus"], "icsCode": "1000118", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00118B", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000118A", "commonName": "Hounslow West Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.472943, "lon": -0.385656}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000118B", "indicator": "Stop B", "stopLetter": "B", "modes": ["bus"], "icsCode": "1000118", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00118B", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000118B", "commonName": "Hounslow West Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.472895, "lon": -0.385441}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000118C", "indicator": "Stop C", "stopLetter": "C", "modes": ["bus"], "icsCode": "1000118", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00118B", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000118C", "commonName": "Hounslow West Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.472561, "lon": -0.385352}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000118Z", "indicator": "->E", "stopLetter": "->E", "modes": ["bus"], "icsCode": "1000118", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00118B", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000118Z", "commonName": "Hounslow West Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.473295, "lon": -0.387083}], "lat": 51.472895, "lon": -0.385441}, {"$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": "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": "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": "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": "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": "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": "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"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}], "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}], "lat": 51.473469, "lon": -0.386544}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "940GZZLUHWY", "modes": ["tube", "bus"], "icsCode": "1000114", "stopType": "NaptanMetroStation", "stationNaptan": "940GZZLUHWY", "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": "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": "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": "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": "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": "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": "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", "naptanIdReference": "490000114U", "stationAtcoCode": "490G00114U", "lineIdentifier": ["393", "43", "n41", "263", "21", "153", "n271"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "940GZZLUHWY", "lineIdentifier": ["piccadilly"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490000114Y", "stationAtcoCode": "490G00114U", "lineIdentifier": ["393", "153", "n41", "43", "21", "263", "n271"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "bus", "lineIdentifier": ["393", "43", "n41", "263", "21", "153", "n271"]}, {"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["piccadilly"]}], "status": true, "id": "940GZZLUHWY", "commonName": "Holloway Road 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": "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": "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": "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": "Payphones", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5136"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.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": "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": "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": "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": "Gates", "sourceSystemKey": "StaticObjects", "value": "5"}], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490G00114U", "modes": ["bus"], "icsCode": "1000114", "stopType": "NaptanOnstreetBusCoachStopCluster", "stationNaptan": "490G00114U", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490G00114U", "commonName": "Holloway Road Station", "placeType": "StopPoint", "additionalProperties": [], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000114U", "indicator": "Stop SU", "stopLetter": "SU", "modes": ["bus"], "icsCode": "1000114", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00114U", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000114U", "commonName": "Holloway Road Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.552886, "lon": -0.112817}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000114Y", "indicator": "Stop SY", "stopLetter": "SY", "modes": ["bus"], "icsCode": "1000114", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00114U", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000114Y", "commonName": "Holloway Road Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.552081, "lon": -0.111437}], "lat": 51.552886, "lon": -0.112817}, {"$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": "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": "Bridge", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$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": "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": "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": "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": "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": "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": "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}], "lat": 51.552697, "lon": -0.113244}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "940GZZLUICK", "modes": ["tube", "bus"], "icsCode": "1000120", "stopType": "NaptanMetroStation", "stationNaptan": "940GZZLUICK", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "278", "name": "278", "uri": "/Line/278", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "u10", "name": "U10", "uri": "/Line/u10", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "698", "name": "698", "uri": "/Line/698", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "697", "name": "697", "uri": "/Line/697", "type": "Line", "crowding": {"$type": "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": "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", "naptanIdReference": "490013091C", "stationAtcoCode": "490G00120C", "lineIdentifier": ["278", "u10"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490000120D", "stationAtcoCode": "490G00120A", "lineIdentifier": ["698", "278", "u10", "697"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "940GZZLUICK", "lineIdentifier": ["piccadilly", "metropolitan"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "bus", "lineIdentifier": ["278", "u10", "698", "697"]}, {"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["piccadilly", "metropolitan"]}], "status": true, "id": "940GZZLUICK", "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": "Facility", "key": "Toilets", "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": "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": "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": "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"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "CarParks_800450"}], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490G00120A", "modes": ["bus"], "icsCode": "1000120", "stopType": "NaptanOnstreetBusCoachStopCluster", "stationNaptan": "490G00120A", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490G00120A", "commonName": "Ickenham Station", "placeType": "StopPoint", "additionalProperties": [], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000120", "indicator": "Stop", "modes": ["bus"], "icsCode": "1000120", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00120A", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000120", "commonName": "Ickenham Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.562217, "lon": -0.444879}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000120D", "indicator": "Stop D", "stopLetter": "D", "modes": ["bus"], "icsCode": "1000120", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00120A", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000120D", "commonName": "Ickenham Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.562913, "lon": -0.444509}], "lat": 51.562217, "lon": -0.444879}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490G00120C", "modes": ["bus"], "icsCode": "1000120", "stopType": "NaptanOnstreetBusCoachStopCluster", "stationNaptan": "490G00120C", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490G00120C", "commonName": "Ickenham Station", "placeType": "StopPoint", "additionalProperties": [], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490013091C", "indicator": "Stop C", "stopLetter": "C", "modes": ["bus"], "icsCode": "1000120", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00120C", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490013091C", "commonName": "Ickenham Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.564062, "lon": -0.443619}], "lat": 51.564062, "lon": -0.443619}, {"$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": "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": "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": "Help 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": "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": "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": "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.562025, "lon": -0.441899}, {"$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": "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.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": "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": "940GZZLUICK", "lineIdentifier": ["piccadilly", "metropolitan"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["piccadilly", "metropolitan"]}], "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": "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": "940GZZLUICK", "lineIdentifier": ["piccadilly", "metropolitan"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["piccadilly", "metropolitan"]}], "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}], "lat": 51.56177, "lon": -0.442225}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "940GZZLUKBN", "modes": ["bus", "tube"], "icsCode": "1000126", "stopType": "NaptanMetroStation", "stationNaptan": "940GZZLUKBN", "lines": [{"$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": "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": "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": "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": "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", "naptanIdReference": "490000126B", "stationAtcoCode": "490G00126B", "lineIdentifier": ["189", "16", "32", "632", "316", "n32"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "940GZZLUKBN", "lineIdentifier": ["jubilee"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490000126A", "stationAtcoCode": "490G00126B", "lineIdentifier": ["316", "n32", "189", "632", "16", "32"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "bus", "lineIdentifier": ["189", "16", "32", "632", "316", "n32"]}, {"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["jubilee"]}], "status": true, "id": "940GZZLUKBN", "commonName": "Kilburn Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$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": "ServiceInfo", "key": "Night", "sourceSystemKey": "TransXchangeETL", "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"}, {"$type": "Tfl.Api.Presentation.Entities.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 Station,London Underground Ltd.,Shootup Hill,London,NW6 7QL"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.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": "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": "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": "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": "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": "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": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490G00126B", "modes": ["bus"], "icsCode": "1000126", "stopType": "NaptanOnstreetBusCoachStopCluster", "stationNaptan": "490G00126B", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490G00126B", "commonName": "Kilburn Station", "placeType": "StopPoint", "additionalProperties": [], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000126A", "indicator": "Stop A", "stopLetter": "A", "modes": ["bus"], "icsCode": "1000126", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00126B", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000126A", "commonName": "Kilburn Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.546384, "lon": -0.203256}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000126B", "indicator": "Stop B", "stopLetter": "B", "modes": ["bus"], "icsCode": "1000126", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00126B", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000126B", "commonName": "Kilburn Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.547422, "lon": -0.204123}], "lat": 51.546384, "lon": -0.203256}, {"$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": "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": "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": "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": "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": "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": "Geo", "key": "Zone", "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": "Gates", "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": "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": "0 on platforms, 0 in ticket halls, 0 elsewhere"}], "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}], "lat": 51.547183, "lon": -0.204248}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "940GZZLUKBY", "modes": ["bus", "tube"], "icsCode": "1000128", "stopType": "NaptanMetroStation", "stationNaptan": "940GZZLUKBY", "lines": [{"$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": "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": "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": "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": "653", "name": "653", "uri": "/Line/653", "type": "Line", "crowding": {"$type": "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": "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": "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", "naptanIdReference": "490000128B", "stationAtcoCode": "490G00128B", "lineIdentifier": ["204", "sl10", "n98", "183", "653", "324", "683"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "940GZZLUKBY", "lineIdentifier": ["jubilee"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490000128A", "stationAtcoCode": "490G00128B", "lineIdentifier": ["683", "324", "183", "n98", "sl10", "204", "653"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "bus", "lineIdentifier": ["204", "sl10", "n98", "183", "653", "324", "683"]}, {"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["jubilee"]}], "status": true, "id": "940GZZLUKBY", "commonName": "Kingsbury 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": "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": "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": "yes (male, female, disabled/baby-changing facilities)"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "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": "Kingsbury Station,London Underground Ltd.,Kingsbury Rd,London,NW9 9EG"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.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": "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": "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": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5196"}], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490G00128B", "modes": ["bus"], "icsCode": "1000128", "stopType": "NaptanOnstreetBusCoachStopCluster", "stationNaptan": "490G00128B", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490G00128B", "commonName": "Kingsbury Station", "placeType": "StopPoint", "additionalProperties": [], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000128A", "indicator": "Stop A", "stopLetter": "A", "modes": ["bus"], "icsCode": "1000128", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00128B", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000128A", "commonName": "Kingsbury Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.584929, "lon": -0.279769}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000128B", "indicator": "Stop B", "stopLetter": "B", "modes": ["bus"], "icsCode": "1000128", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00128B", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000128B", "commonName": "Kingsbury Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.584842, "lon": -0.279353}], "lat": 51.584842, "lon": -0.279353}, {"$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": "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}], "lat": 51.584845, "lon": -0.27879}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "940GZZLUKEN", "modes": ["tube"], "icsCode": "1000124", "stopType": "NaptanMetroStation", "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": "940GZZLUKEN", "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": "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": "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": "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": "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": "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": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "3 on platforms, 0 in ticket halls, 0 elsewhere"}], "children": [{"$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": "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"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.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"}], "children": [], "lat": 51.582209, "lon": -0.317168}], "lat": 51.581756, "lon": -0.31691}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "940GZZLUKNB", "modes": ["bus", "tube"], "icsCode": "1000130", "stopType": "NaptanMetroStation", "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"}, {"$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": "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": "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": "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": "n74", "name": "N74", "uri": "/Line/n74", "type": "Line", "crowding": {"$type": "Tfl.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"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490000130KD", "stationAtcoCode": "490G00130KD", "lineIdentifier": ["14", "414", "n97", "c1", "74", "n74"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["piccadilly"]}, {"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "bus", "lineIdentifier": ["14", "414", "n97", "c1", "74", "n74"]}], "status": true, "id": "940GZZLUKNB", "commonName": "Knightsbridge Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_4968"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5514"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5479"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_368"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_166"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_222"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_292"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_303"}, {"$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": "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": "Help Points", "sourceSystemKey": "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": "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": "Knightsbridge Station,London Underground Ltd.,Sloane St,London,SW1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.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": "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": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5658"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5318"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5637"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5515"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5463"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_3738"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_4638"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5160"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5410"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_4492"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5152"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5770"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "ServiceInfo", "key": "Night", "sourceSystemKey": "TransXchangeETL", "value": "yes"}], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490G00130K1", "modes": ["bus"], "icsCode": "1000130", "stopType": "NaptanOnstreetBusCoachStopCluster", "stationNaptan": "490G00130K1", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490G00130K1", "commonName": "Knightsbridge Station", "placeType": "StopPoint", "additionalProperties": [], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000130K1", "indicator": "Stop KJ", "stopLetter": "KJ", "modes": ["bus"], "icsCode": "1000130", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00130K1", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000130K1", "commonName": "Knightsbridge Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.500898, "lon": -0.160207}], "lat": 51.500898, "lon": -0.160207}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490G00130KD", "modes": ["bus"], "icsCode": "1000130", "stopType": "NaptanOnstreetBusCoachStopCluster", "stationNaptan": "490G00130KD", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490G00130KD", "commonName": "Knightsbridge Station", "placeType": "StopPoint", "additionalProperties": [], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000130KD", "indicator": "Stop KD", "stopLetter": "KD", "modes": ["bus"], "icsCode": "1000130", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00130KD", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000130KD", "commonName": "Knightsbridge Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.500733, "lon": -0.162332}], "lat": 51.500733, "lon": -0.162332}, {"$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": "Car park", "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": "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": "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": "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": "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": "Payphones", "sourceSystemKey": "StaticObjects", "value": "5"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "1"}], "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": "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."}, {"$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"}], "children": [], "lat": 51.49991, "lon": -0.16261}, {"$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}], "lat": 51.501669, "lon": -0.160508}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "940GZZLUKNG", "modes": ["bus", "tube"], "icsCode": "1000121", "stopType": "NaptanMetroStation", "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"}, {"$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": "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": "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": "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": "n155", "name": "N155", "uri": "/Line/n155", "type": "Line", "crowding": {"$type": "Tfl.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"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490000121S", "stationAtcoCode": "490G00121B", "lineIdentifier": ["n133", "415", "155", "333", "133", "n155"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490000121B", "stationAtcoCode": "490G00121B", "lineIdentifier": ["n133", "n155", "155", "415", "333", "133"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["northern"]}, {"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "bus", "lineIdentifier": ["n133", "415", "155", "333", "133", "n155"]}], "status": true, "id": "940GZZLUKNG", "commonName": "Kennington 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": "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": "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": "Help Points", "sourceSystemKey": "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": "1+2"}, {"$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": "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": "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"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_62"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_144"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_412"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_435"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_580"}], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490G00121B", "modes": ["bus"], "icsCode": "1000121", "stopType": "NaptanOnstreetBusCoachStopCluster", "stationNaptan": "490G00121B", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490G00121B", "commonName": "Kennington Station", "placeType": "StopPoint", "additionalProperties": [], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000121B", "indicator": "Stop KB", "stopLetter": "KB", "modes": ["bus"], "icsCode": "1000121", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00121B", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000121B", "commonName": "Kennington Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.487611, "lon": -0.106785}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000121S", "indicator": "Stop KA", "stopLetter": "KA", "modes": ["bus"], "icsCode": "1000121", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00121B", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000121S", "commonName": "Kennington Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.488749, "lon": -0.105427}], "lat": 51.487611, "lon": -0.106785}, {"$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": "Help Points", "sourceSystemKey": "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": "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": "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}], "lat": 51.488337, "lon": -0.105963}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "940GZZLUKOY", "modes": ["tube"], "icsCode": "1000170", "stopType": "NaptanMetroStation", "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": "940GZZLUKOY", "commonName": "Kensington (Olympia) 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": "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": "Help Points", "sourceSystemKey": "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": "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": "Kensington Olympia,Kensington Olympia Station,Olympia Way,LONDON,W14 0NE"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, 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": "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": "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": "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": "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": "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": "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": "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": "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"}], "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}], "lat": 51.497624, "lon": -0.210015}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "940GZZLUKPK", "modes": ["bus", "tube"], "icsCode": "1000127", "stopType": "NaptanMetroStation", "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"}, {"$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": "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": "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": "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": "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": "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": "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": "n28", "name": "N28", "uri": "/Line/n28", "type": "Line", "crowding": {"$type": "Tfl.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"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490000127KA", "stationAtcoCode": "490G00127KB", "lineIdentifier": ["32", "31", "206", "328", "632", "n31", "316", "n28"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490000127KB", "stationAtcoCode": "490G00127KB", "lineIdentifier": ["316", "n28", "632", "31", "206", "32", "328", "n31"]}], "lineModeGroups": [{"$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": ["32", "31", "206", "328", "632", "n31", "316", "n28"]}], "status": true, "id": "940GZZLUKPK", "commonName": "Kilburn 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": "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": "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": "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"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.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": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5262"}], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490G00127KB", "modes": ["bus"], "icsCode": "1000127", "stopType": "NaptanOnstreetBusCoachStopCluster", "stationNaptan": "490G00127KB", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490G00127KB", "commonName": "Kilburn Park Station", "placeType": "StopPoint", "additionalProperties": [], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000001", "indicator": "Stop", "modes": ["bus"], "icsCode": "1000127", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00127KB", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000001", "commonName": "Kilburn Park Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.53443, "lon": -0.193691}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000127KA", "indicator": "Stop KA", "stopLetter": "KA", "modes": ["bus"], "icsCode": "1000127", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00127KB", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000127KA", "commonName": "Kilburn Park Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.535502, "lon": -0.193274}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000127KB", "indicator": "Stop KB", "stopLetter": "KB", "modes": ["bus"], "icsCode": "1000127", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00127KB", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000127KB", "commonName": "Kilburn Park Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.53469, "lon": -0.193695}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000127N", "indicator": "Stop", "modes": ["bus"], "icsCode": "1000127", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00127KB", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000127N", "commonName": "Kilburn Park Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.53443, "lon": -0.193691}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000127RB", "indicator": "---", "modes": ["bus"], "icsCode": "1000127", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00127KB", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000127RB", "commonName": "Kilburn Park Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.53417, "lon": -0.193788}], "lat": 51.53469, "lon": -0.193695}, {"$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": "Photo 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": "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": "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": "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"}], "children": [], "lat": 51.535048, "lon": -0.19358}, {"$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}], "lat": 51.534979, "lon": -0.194232}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "940GZZLUKSH", "modes": ["tube"], "icsCode": "1000123", "stopType": "NaptanMetroStation", "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": "940GZZLUKSH", "commonName": "Kentish Town 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": "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": "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": "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": "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": "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": "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": "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"}], "children": [{"$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}], "lat": 51.550312, "lon": -0.140733}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "940GZZLUKSL", "modes": ["tube"], "icsCode": "1000122", "stopType": "NaptanMetroStation", "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": "940GZZLUKSL", "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "Bridge", "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 601 4867"}], "children": [], "lat": 51.530519, "lon": -0.224887}], "lat": 51.530539, "lon": -0.225016}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "940GZZLUKSX", "modes": ["tube"], "icsCode": "1000129", "stopType": "NaptanMetroStation", "stationNaptan": "940GZZLUKSX", "hubNaptanCode": "HUBKGX", "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"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "940GZZLUKSX", "lineIdentifier": ["circle", "hammersmith-city", "metropolitan"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "940GZZLUKSX", "lineIdentifier": ["northern"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "940GZZLUKSX", "lineIdentifier": ["piccadilly"]}, {"$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": ["circle", "hammersmith-city", "metropolitan", "northern", "piccadilly", "victoria"]}], "status": true, "id": "940GZZLUKSX", "commonName": "King's Cross St. Pancras 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": "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": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_804"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5237"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5896"}, {"$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": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_4"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_14"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_70"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_89"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_431"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_439"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_593"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_793"}, {"$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": "BikePoints_798"}, {"$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": "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": "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": "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": "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": "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": "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": "Lifts", "sourceSystemKey": "StaticObjects", "value": "10"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5708"}], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490G00129R", "modes": ["bus"], "icsCode": "1000129", "stopType": "NaptanOnstreetBusCoachStopCluster", "stationNaptan": "490G00129R", "hubNaptanCode": "HUBKGX", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490G00129R", "commonName": "King's Cross Station", "placeType": "StopPoint", "additionalProperties": [], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000129D", "indicator": "Stop D", "stopLetter": "D", "modes": ["bus"], "icsCode": "1000129", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00129R", "hubNaptanCode": "HUBKGX", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000129D", "commonName": "King's Cross Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.530398, "lon": -0.123076}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000129E", "indicator": "Stop E", "stopLetter": "E", "modes": ["bus"], "icsCode": "1000129", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00129R", "hubNaptanCode": "HUBKGX", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000129E", "commonName": "King's Cross Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.530497, "lon": -0.123072}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000129R", "indicator": "Stop R", "stopLetter": "R", "modes": ["bus"], "icsCode": "1000129", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00129R", "hubNaptanCode": "HUBKGX", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000129R", "commonName": "King's Cross Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.530466, "lon": -0.121689}], "lat": 51.530466, "lon": -0.121689}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "4900KNSXMCL0", "indicator": "Entrance 13", "stopLetter": "13", "modes": [], "icsCode": "1000129", "stopType": "NaptanRailEntrance", "stationNaptan": "940GZZLUKSX", "hubNaptanCode": "HUBKGX", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "4900KNSXMCL0", "commonName": "King's Cross Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.530913, "lon": -0.120358}, {"$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": "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": "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": "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": "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": "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": "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": "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": "ToiletNote", "sourceSystemKey": "LRAD", "value": "(National Rail)"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.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"}], "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": "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": "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"}], "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": "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"}, {"$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.530121, "lon": -0.12486}, {"$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": "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": "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": "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": "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": "940GZZLUKSX", "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": "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": "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": "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": "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": "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": "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"}], "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}], "lat": 51.530663, "lon": -0.123194}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "940GZZLUKWG", "modes": ["tube"], "icsCode": "1000125", "stopType": "NaptanMetroStation", "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": "940GZZLUKWG", "commonName": "Kew Gardens 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": "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": "3+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": "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": "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": "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": "Boarding Ramps", "sourceSystemKey": "StaticObjects", "value": "yes District line 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": "yes (male, female)"}, {"$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"}], "children": [{"$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": "Bridge", "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": "Help Points", "sourceSystemKey": "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": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "3+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": "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": "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": "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)"}], "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": "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": "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": "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": "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"}], "children": [], "lat": 51.477003, "lon": -0.285143}], "lat": 51.477058, "lon": -0.285241}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "940GZZLULAD", "modes": ["tube", "bus"], "icsCode": "1000131", "stopType": "NaptanMetroStation", "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"}, {"$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": "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": "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": "7", "name": "7", "uri": "/Line/7", "type": "Line", "crowding": {"$type": "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": "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": "23", "name": "23", "uri": "/Line/23", "type": "Line", "crowding": {"$type": "Tfl.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"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490000131B", "stationAtcoCode": "490G00131A", "lineIdentifier": ["70", "228", "452", "7", "52", "n7", "23"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490000131A", "stationAtcoCode": "490G00131A", "lineIdentifier": ["n7", "7", "52", "452", "23", "70", "228"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["circle", "hammersmith-city"]}, {"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "bus", "lineIdentifier": ["70", "228", "452", "7", "52", "n7", "23"]}], "status": true, "id": "940GZZLULAD", "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": "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": "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": "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": "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": "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": "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": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_650"}, {"$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": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_643"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_663"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_742"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_807"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5828"}], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490G00131A", "modes": ["bus"], "icsCode": "1000131", "stopType": "NaptanOnstreetBusCoachStopCluster", "stationNaptan": "490G00131A", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490G00131A", "commonName": "Ladbroke Grove Station", "placeType": "StopPoint", "additionalProperties": [], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000131A", "indicator": "Stop A", "stopLetter": "A", "modes": ["bus"], "icsCode": "1000131", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00131A", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000131A", "commonName": "Ladbroke Grove Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.517271, "lon": -0.210066}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000131B", "indicator": "Stop B", "stopLetter": "B", "modes": ["bus"], "icsCode": "1000131", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00131A", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000131B", "commonName": "Ladbroke Grove Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.517312, "lon": -0.209776}], "lat": 51.517312, "lon": -0.209776}, {"$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": "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": "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": "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": "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": "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": "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": "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": "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": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "2"}], "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": "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": "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": "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": "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": "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": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}], "children": [], "lat": 51.517381, "lon": -0.210667}], "lat": 51.517449, "lon": -0.210391}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "940GZZLULBN", "modes": ["bus", "tube"], "icsCode": "1000132", "stopType": "NaptanMetroStation", "stationNaptan": "940GZZLULBN", "lines": [{"$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": "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": "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": "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": "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": "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": "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": "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": "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": "53", "name": "53", "uri": "/Line/53", "type": "Line", "crowding": {"$type": "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": "490000132G", "stationAtcoCode": "490G00132G", "lineIdentifier": ["n109", "159", "59"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "940GZZLULBN", "lineIdentifier": ["bakerloo"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490000132A", "stationAtcoCode": "490G00132G", "lineIdentifier": ["59", "159", "n109"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490000132B", "stationAtcoCode": "490G00132G", "lineIdentifier": ["n155", "12", "n53", "453", "148", "53"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490000132C", "stationAtcoCode": "490G00132G", "lineIdentifier": ["n155", "53", "12", "453", "n53", "148"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "bus", "lineIdentifier": ["n109", "159", "59", "n155", "12", "n53", "453", "148", "53"]}, {"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["bakerloo"]}], "status": true, "id": "940GZZLULBN", "commonName": "Lambeth North 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": "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": "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": "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": "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": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_235"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_272"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_284"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_347"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_371"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_441"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_548"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_641"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_815"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5940"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5974"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5548"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5973"}], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490G00132G", "modes": ["bus"], "icsCode": "1000132", "stopType": "NaptanOnstreetBusCoachStopCluster", "stationNaptan": "490G00132G", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490G00132G", "commonName": "Lambeth North Station", "placeType": "StopPoint", "additionalProperties": [], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000132A", "indicator": "Stop A", "stopLetter": "A", "modes": ["bus"], "icsCode": "1000132", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00132G", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000132A", "commonName": "Lambeth North Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.498108, "lon": -0.111969}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000132B", "indicator": "Stop B", "stopLetter": "B", "modes": ["bus"], "icsCode": "1000132", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00132G", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000132B", "commonName": "Lambeth North Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.498555, "lon": -0.111821}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000132C", "indicator": "Stop C", "stopLetter": "C", "modes": ["bus"], "icsCode": "1000132", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00132G", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000132C", "commonName": "Lambeth North Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.498526, "lon": -0.111145}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000132G", "indicator": "Stop G", "stopLetter": "G", "modes": ["bus"], "icsCode": "1000132", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00132G", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000132G", "commonName": "Lambeth North Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.497932, "lon": -0.112192}], "lat": 51.498526, "lon": -0.111145}, {"$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": "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": "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": "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": "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"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.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": "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": "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": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}], "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": "Escalators", "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": "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": "Facility", "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": "Facility", "key": "Help Points", "sourceSystemKey": "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": "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": "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": "Other Facilities", "sourceSystemKey": "StaticObjects", "value": "routeways platform to ticket hall."}], "children": [], "lat": 51.498519, "lon": -0.11116}], "lat": 51.498808, "lon": -0.112315}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "940GZZLULGN", "modes": ["bus", "tube"], "icsCode": "1000140", "stopType": "NaptanMetroStation", "stationNaptan": "940GZZLULGN", "lines": [{"$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"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "20", "name": "20", "uri": "/Line/20", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "549", "name": "549", "uri": "/Line/549", "type": "Line", "crowding": {"$type": "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": "167", "name": "167", "uri": "/Line/167", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "677", "name": "677", "uri": "/Line/677", "type": "Line", "crowding": {"$type": "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": "150042015006", "stationAtcoCode": "150G00000960", "lineIdentifier": ["397", "20", "549"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "940GZZLULGN", "lineIdentifier": ["central"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "1500IM358", "stationAtcoCode": "150G00000960", "lineIdentifier": ["167", "549"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "150042015007", "stationAtcoCode": "150G00000960", "lineIdentifier": ["397", "167", "20", "677"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "bus", "lineIdentifier": ["397", "20", "549", "167", "677"]}, {"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["central"]}], "status": true, "id": "940GZZLULGN", "commonName": "Loughton 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": "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": "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": "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": "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": "Toilets", "sourceSystemKey": "StaticObjects", "value": "yes (male, female)"}, {"$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": "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": "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": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "CarParks_800482"}], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "150G00000960", "modes": ["bus"], "icsCode": "1000316", "stopType": "NaptanOnstreetBusCoachStopCluster", "stationNaptan": "150G00000960", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "150G00000960", "commonName": "Loughton Station", "placeType": "StopPoint", "additionalProperties": [], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "150042015006", "indicator": "Stop C", "stopLetter": "C", "modes": ["bus"], "icsCode": "1000316", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "150G00000960", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "150042015006", "commonName": "Loughton Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.642145, "lon": 0.054843}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "150042015007", "indicator": "Stop A", "stopLetter": "A", "modes": ["bus"], "icsCode": "1000316", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "150G00000960", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "150042015007", "commonName": "Loughton Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.642319, "lon": 0.054663}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "1500IM358", "indicator": "Stop B", "stopLetter": "B", "modes": ["bus"], "icsCode": "1000316", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "150G00000960", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "1500IM358", "commonName": "Loughton Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.641953, "lon": 0.055036}], "lat": 51.642319, "lon": 0.054663}, {"$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": "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": "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": "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": "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}], "lat": 51.641443, "lon": 0.055476}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "940GZZLULGT", "modes": ["bus", "tube"], "icsCode": "1000133", "stopType": "NaptanMetroStation", "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"}, {"$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": "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": "274", "name": "274", "uri": "/Line/274", "type": "Line", "crowding": {"$type": "Tfl.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"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490000133Z", "stationAtcoCode": "490G00133B", "lineIdentifier": ["148", "n207", "94"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490000133A", "stationAtcoCode": "490G00133B", "lineIdentifier": ["274"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490000133B", "stationAtcoCode": "490G00133B", "lineIdentifier": ["94", "148", "n207"]}], "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": "bus", "lineIdentifier": ["148", "n207", "94", "274"]}], "status": true, "id": "940GZZLULGT", "commonName": "Lancaster Gate 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": "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": "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": "Help Points", "sourceSystemKey": "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": "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": "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": "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": "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": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_153"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_397"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_524"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_752"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_4479"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5161"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5431"}], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490G00133B", "modes": ["bus"], "icsCode": "1000133", "stopType": "NaptanOnstreetBusCoachStopCluster", "stationNaptan": "490G00133B", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490G00133B", "commonName": "Lancaster Gate Station", "placeType": "StopPoint", "additionalProperties": [], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000133A", "indicator": "Stop LA", "stopLetter": "LA", "modes": ["bus"], "icsCode": "1000133", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00133B", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000133A", "commonName": "Lancaster Gate Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.512134, "lon": -0.176025}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000133B", "indicator": "Stop LC", "stopLetter": "LC", "modes": ["bus"], "icsCode": "1000133", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00133B", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000133B", "commonName": "Lancaster Gate Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.5116, "lon": -0.175225}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000133N", "indicator": "Stop LH", "stopLetter": "LH", "modes": ["bus"], "icsCode": "1000133", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00133B", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000133N", "commonName": "Lancaster Gate Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.512591, "lon": -0.175906}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000133Z", "indicator": "Stop LK", "stopLetter": "LK", "modes": ["bus"], "icsCode": "1000133", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00133B", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000133Z", "commonName": "Lancaster Gate Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.511798, "lon": -0.175261}], "lat": 51.512134, "lon": -0.176025}, {"$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": "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": "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": "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": "Help 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": "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": "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": "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": "Photo Booths", "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.511782, "lon": -0.174685}], "lat": 51.511723, "lon": -0.175494}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "940GZZLULNB", "modes": ["tube"], "icsCode": "1000139", "stopType": "NaptanMetroStation", "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"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "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": ["jubilee"]}, {"$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": ["jubilee", "northern"]}], "status": true, "id": "940GZZLULNB", "commonName": "London 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": "Gates", "sourceSystemKey": "StaticObjects", "value": "36"}, {"$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": "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": "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": "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": "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": "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": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5471"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5578"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5502"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5948"}, {"$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": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_10"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_194"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_276"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_732"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5876"}, {"$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": "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": "ServiceInfo", "key": "Night", "sourceSystemKey": "TransXchangeETL", "value": "yes"}], "children": [{"$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": "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, 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": "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": "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": "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 "}], "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": "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": "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": "17"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.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": "Toilets", "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": "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": "Facility", "key": "Payphones", "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": "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": "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": "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": "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": "Gates", "sourceSystemKey": "StaticObjects", "value": "36"}], "children": [], "lat": 51.505727, "lon": -0.086595}, {"$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": "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": "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": "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": "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"}], "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": "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": "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": "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": "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": "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"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.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": "London Bridge Underground Station,London Underground Ltd.,21 Duke St Hill,London,SE1 2SW"}], "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": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$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": "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": "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": "36"}, {"$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": "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"}], "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}], "lat": 51.505721, "lon": -0.088873}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "940GZZLULRD", "modes": ["tube", "bus"], "icsCode": "1000134", "stopType": "NaptanMetroStation", "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"}, {"$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": "295", "name": "295", "uri": "/Line/295", "type": "Line", "crowding": {"$type": "Tfl.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"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490000134A", "stationAtcoCode": "490G00134A", "lineIdentifier": ["316", "295"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490000134B", "stationAtcoCode": "490G00134A", "lineIdentifier": ["316", "295"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["hammersmith-city", "circle"]}, {"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "bus", "lineIdentifier": ["316", "295"]}], "status": true, "id": "940GZZLULRD", "commonName": "Latimer 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": "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": "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": "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": "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": "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": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_650"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_652"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_663"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_740"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_741"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_754"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_771"}], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490G00134A", "modes": ["bus"], "icsCode": "1000134", "stopType": "NaptanOnstreetBusCoachStopCluster", "stationNaptan": "490G00134A", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490G00134A", "commonName": "Latimer Road Station", "placeType": "StopPoint", "additionalProperties": [], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000134A", "indicator": "Stop A", "stopLetter": "A", "modes": ["bus"], "icsCode": "1000134", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00134A", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000134A", "commonName": "Latimer Road Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.513987, "lon": -0.217631}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000134B", "indicator": "Stop B", "stopLetter": "B", "modes": ["bus"], "icsCode": "1000134", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00134A", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000134B", "commonName": "Latimer Road Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.513047, "lon": -0.21787}], "lat": 51.513047, "lon": -0.21787}, {"$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": "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": "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": "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": "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": "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}], "lat": 51.513389, "lon": -0.217799}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "940GZZLULSQ", "modes": ["bus", "tube"], "icsCode": "1000135", "stopType": "NaptanMetroStation", "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"}, {"$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": "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": "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": "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": "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": "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": "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": "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": ["northern"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490000135B", "stationAtcoCode": "490G00135B", "lineIdentifier": ["29", "24", "176", "n29", "n279", "n41", "n5", "n20"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "940GZZLULSQ", "lineIdentifier": ["piccadilly"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490000135A", "stationAtcoCode": "490G00135B", "lineIdentifier": ["24", "29", "n29", "176", "n279", "n41", "n5", "n20"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["northern", "piccadilly"]}, {"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "bus", "lineIdentifier": ["29", "24", "176", "n29", "n279", "n41", "n5", "n20"]}], "status": true, "id": "940GZZLULSQ", "commonName": "Leicester Square 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": "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": "Lifts", "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": "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": "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": "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": "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": "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": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_64"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_83"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_192"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_226"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_233"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_325"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_341"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_383"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_386"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_388"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5506"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5596"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5016"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5670"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5468"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5364"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5325"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5281"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5671"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5809"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5737"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_4978"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5875"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5855"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5090"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5481"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5853"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5395"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5867"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5017"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5854"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5856"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5758"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5572"}], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490G00135B", "modes": ["bus"], "icsCode": "1000135", "stopType": "NaptanOnstreetBusCoachStopCluster", "stationNaptan": "490G00135B", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490G00135B", "commonName": "Leicester Square Station", "placeType": "StopPoint", "additionalProperties": [], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000135A", "indicator": "Stop L", "stopLetter": "L", "modes": ["bus"], "icsCode": "1000135", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00135B", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000135A", "commonName": "Leicester Square Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.510548, "lon": -0.128474}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000135B", "indicator": "Stop J", "stopLetter": "J", "modes": ["bus"], "icsCode": "1000135", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00135B", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000135B", "commonName": "Leicester Square Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.511589, "lon": -0.128331}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000135S", "indicator": "Stop", "modes": ["bus"], "icsCode": "1000135", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00135B", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000135S", "commonName": "Leicester Square Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.510907, "lon": -0.128416}], "lat": 51.510548, "lon": -0.128474}, {"$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": "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": "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": "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": "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": "Gates", "sourceSystemKey": "StaticObjects", "value": "15"}], "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "Gates", "sourceSystemKey": "StaticObjects", "value": "15"}], "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": "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": "Help 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"}], "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": "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": "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": "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": "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": "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": "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": "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"}], "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": "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": "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": "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"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.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"}], "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}], "lat": 51.511386, "lon": -0.128426}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "940GZZLULVT", "modes": ["tube"], "icsCode": "1000138", "stopType": "NaptanMetroStation", "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"}, {"$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": ["central"]}, {"$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": ["central", "metropolitan", "circle", "hammersmith-city"]}], "status": true, "id": "940GZZLULVT", "commonName": "Liverpool Street 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": "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": "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)"}, {"$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_140"}, {"$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_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"}, {"$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": "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": "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": "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": "Car park", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$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": "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": "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": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "5"}], "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": [{"$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": "BlueBadgeCarParkSpaces", "sourceSystemKey": "LRAD", "value": "0"}, {"$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": "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": "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": "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": "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": "5"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.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": "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, 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": "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": "VisitorCentre", "key": "Location", "sourceSystemKey": "StaticObjects", "value": "Underground Station"}], "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": "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": "940GZZLULVT", "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": "9400ZZLULVT3", "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": "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": "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"}], "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": "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": "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": "940GZZLULVT", "lineIdentifier": ["hammersmith-city", "metropolitan", "circle"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["hammersmith-city", "metropolitan", "circle"]}], "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}], "lat": 51.517372, "lon": -0.083182}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "940GZZLULYN", "modes": ["tube", "bus"], "icsCode": "1000136", "stopType": "NaptanMetroStation", "stationNaptan": "940GZZLULYN", "lines": [{"$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": "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": "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": "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": "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", "naptanIdReference": "490000136B", "stationAtcoCode": "490G00136A", "lineIdentifier": ["158", "69", "97", "58"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490000136A", "stationAtcoCode": "490G00136A", "lineIdentifier": ["58", "97", "69", "158"]}, {"$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": "bus", "lineIdentifier": ["158", "69", "97", "58"]}, {"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["central"]}], "status": true, "id": "940GZZLULYN", "commonName": "Leyton 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": "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": "Gates", "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": "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": "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": "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": "Bridge", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$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": "490G00136A", "modes": ["bus"], "icsCode": "1000136", "stopType": "NaptanOnstreetBusCoachStopCluster", "stationNaptan": "490G00136A", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490G00136A", "commonName": "Leyton Station", "placeType": "StopPoint", "additionalProperties": [], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000136A", "indicator": "Stop A", "stopLetter": "A", "modes": ["bus"], "icsCode": "1000136", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00136A", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000136A", "commonName": "Leyton Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.556075, "lon": -0.005545}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000136B", "indicator": "Stop B", "stopLetter": "B", "modes": ["bus"], "icsCode": "1000136", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00136A", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000136B", "commonName": "Leyton Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.55714, "lon": -0.006307}], "lat": 51.556075, "lon": -0.005545}, {"$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": "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": "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"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "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": "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": "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"}, {"$type": "Tfl.Api.Presentation.Entities.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.556984, "lon": -0.004958}], "lat": 51.556589, "lon": -0.005523}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "940GZZLULYS", "modes": ["tube", "bus"], "icsCode": "1000137", "stopType": "NaptanMetroStation", "stationNaptan": "940GZZLULYS", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "145", "name": "145", "uri": "/Line/145", "type": "Line", "crowding": {"$type": "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": "w13", "name": "W13", "uri": "/Line/w13", "type": "Line", "crowding": {"$type": "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": "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": "w14", "name": "W14", "uri": "/Line/w14", "type": "Line", "crowding": {"$type": "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", "naptanIdReference": "490000137T", "stationAtcoCode": "490G00137T", "lineIdentifier": ["145", "66", "w13"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "940GZZLULYS", "lineIdentifier": ["central"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490000137W", "stationAtcoCode": "490G00137T", "lineIdentifier": ["257", "w14", "n8"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490000137X", "stationAtcoCode": "490G00137T", "lineIdentifier": ["w13", "145", "66"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "bus", "lineIdentifier": ["145", "66", "w13", "257", "w14", "n8"]}, {"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["central"]}], "status": true, "id": "940GZZLULYS", "commonName": "Leytonstone 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": "Waiting Room", "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": "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": "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": "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": "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": "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": "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": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5368"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5439"}, {"$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": "490G00137T", "modes": ["bus"], "icsCode": "1000137", "stopType": "NaptanOnstreetBusCoachStopCluster", "stationNaptan": "490G00137T", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490G00137T", "commonName": "Leytonstone Station", "placeType": "StopPoint", "additionalProperties": [], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000137T", "indicator": "Stop T", "stopLetter": "T", "modes": ["bus"], "icsCode": "1000137", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00137T", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000137T", "commonName": "Leytonstone Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.568749, "lon": 0.009049}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000137V", "indicator": "Stop V", "stopLetter": "V", "modes": ["bus"], "icsCode": "1000137", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00137T", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000137V", "commonName": "Leytonstone Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.56891, "lon": 0.009085}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000137W", "indicator": "Stop W", "stopLetter": "W", "modes": ["bus"], "icsCode": "1000137", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00137T", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000137W", "commonName": "Leytonstone Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.569068, "lon": 0.009294}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000137X", "indicator": "Stop X", "stopLetter": "X", "modes": ["bus"], "icsCode": "1000137", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00137T", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000137X", "commonName": "Leytonstone Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.569238, "lon": 0.009388}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490009139RB", "indicator": "Stop", "modes": ["bus"], "icsCode": "1000137", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00137T", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490009139RB", "commonName": "Leytonstone Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.569285, "lon": 0.009737}], "lat": 51.569068, "lon": 0.009294}, {"$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": "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": "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": "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 (male, female)"}, {"$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"}], "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": "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"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.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"}], "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}], "lat": 51.568324, "lon": 0.008194}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "940GZZLUMBA", "modes": ["tube", "bus"], "icsCode": "1000144", "stopType": "NaptanMetroStation", "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"}, {"$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": "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": "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": "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": "7", "name": "7", "uri": "/Line/7", "type": "Line", "crowding": {"$type": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "30", "name": "30", "uri": "/Line/30", "type": "Line", "crowding": {"$type": "Tfl.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"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490000144K", "stationAtcoCode": "490G00144L", "lineIdentifier": ["n207", "n98", "98", "n7", "7", "n137", "390"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490000144W", "stationAtcoCode": "490G00144R", "lineIdentifier": ["36", "2", "13", "23", "n137", "137", "148", "414", "6", "n32", "n74", "390", "n2", "74"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490000144L", "stationAtcoCode": "490G00144L", "lineIdentifier": ["113", "13", "274", "189", "94"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490000144P", "stationAtcoCode": "490G00144L", "lineIdentifier": ["n207", "94", "30", "189", "274", "113"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490000144O", "stationAtcoCode": "490G00144L", "lineIdentifier": ["n98", "7", "98", "n7"]}], "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": "bus", "lineIdentifier": ["n207", "n98", "98", "n7", "7", "n137", "390", "36", "2", "13", "23", "137", "148", "414", "6", "n32", "n74", "n2", "74", "113", "274", "189", "94", "30"]}], "status": true, "id": "940GZZLUMBA", "commonName": "Marble Arch 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": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.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": "Photo Booths", "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": "Marble Arch Station,London Underground Ltd.,Oxford St,London,W1C 1CX"}, {"$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": "ServiceInfo", "key": "Night", "sourceSystemKey": "TransXchangeETL", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5203"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5104"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_4478"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_4977"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_4802"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_4583"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5617"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5672"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5820"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_99"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_111"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "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": "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": "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": "subway to street."}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_169"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_180"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_138"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_389"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_403"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_514"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5139"}], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490G00144L", "modes": ["bus"], "icsCode": "1000144", "stopType": "NaptanOnstreetBusCoachStopCluster", "stationNaptan": "490G00144L", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490G00144L", "commonName": "Marble Arch Station", "placeType": "StopPoint", "additionalProperties": [], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000144K", "indicator": "Stop K", "stopLetter": "K", "modes": ["bus"], "icsCode": "1000144", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00144L", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000144K", "commonName": "Marble Arch Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.513582, "lon": -0.157664}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000144L", "indicator": "Stop L", "stopLetter": "L", "modes": ["bus"], "icsCode": "1000144", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00144L", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000144L", "commonName": "Marble Arch Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.513685, "lon": -0.156752}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000144O", "indicator": "Stop O", "stopLetter": "O", "modes": ["bus"], "icsCode": "1000144", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00144L", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000144O", "commonName": "Marble Arch Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.513561, "lon": -0.156858}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000144P", "indicator": "Stop P", "stopLetter": "P", "modes": ["bus"], "icsCode": "1000144", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00144L", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000144P", "commonName": "Marble Arch Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.513456, "lon": -0.157612}], "lat": 51.513582, "lon": -0.157664}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490G00144R", "modes": ["bus"], "icsCode": "1000144", "stopType": "NaptanOnstreetBusCoachStopCluster", "stationNaptan": "490G00144R", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490G00144R", "commonName": "Marble Arch Station", "placeType": "StopPoint", "additionalProperties": [], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000144W", "indicator": "Stop W", "stopLetter": "W", "modes": ["bus"], "icsCode": "1000144", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00144R", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000144W", "commonName": "Marble Arch", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.511606, "lon": -0.158349}], "lat": 51.511606, "lon": -0.158349}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490G15205S1", "modes": ["bus"], "icsCode": "1000144", "stopType": "NaptanOnstreetBusCoachStopCluster", "stationNaptan": "490G15205S1", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490G15205S1", "commonName": "Marble Arch Station", "placeType": "StopPoint", "additionalProperties": [], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "49000144CSZ", "indicator": "->S", "stopLetter": "->S", "modes": ["bus"], "icsCode": "1000144", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G15205S1", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "49000144CSZ", "commonName": "Marble Arch Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.511825, "lon": -0.157418}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490009633X", "indicator": "Stop 14", "stopLetter": "14", "modes": ["bus"], "icsCode": "1000144", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G15205S1", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490009633X", "commonName": "Marble Arch Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.511888, "lon": -0.15854}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490009633Z", "indicator": "Stop Z", "stopLetter": "Z", "modes": ["bus"], "icsCode": "1000144", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G15205S1", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490009633Z", "commonName": "Marble Arch Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.512149, "lon": -0.158587}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490015205S", "indicator": "Stop RH", "stopLetter": "RH", "modes": ["bus"], "icsCode": "1000144", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G15205S1", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490015205S", "commonName": "Marble Arch Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.51188, "lon": -0.157517}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490015205S1", "indicator": "->S", "stopLetter": "->S", "modes": ["bus"], "icsCode": "1000144", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G15205S1", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490015205S1", "commonName": "Marble Arch Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.511735, "lon": -0.157407}], "lat": 51.511886, "lon": -0.158439}, {"$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": "Gates", "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": "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": "Bridge", "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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"}], "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": "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": "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": "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": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}], "children": [], "lat": 51.512988, "lon": -0.16279}, {"$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": "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": "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": "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": "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": "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": "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": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}], "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}], "lat": 51.513424, "lon": -0.158953}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "940GZZLUMDN", "modes": ["bus", "tube"], "icsCode": "1000151", "stopType": "NaptanMetroStation", "stationNaptan": "940GZZLUMDN", "lines": [{"$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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "413", "name": "413", "uri": "/Line/413", "type": "Line", "crowding": {"$type": "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": "490000151C", "stationAtcoCode": "490G00151H", "lineIdentifier": ["n133", "n155", "118", "157", "201", "154", "470", "k5"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490000151A", "stationAtcoCode": "490G00151H", "lineIdentifier": ["93", "470"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490000151L", "stationAtcoCode": "490G00151H", "lineIdentifier": ["n133", "118", "157", "n155"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490000151B", "stationAtcoCode": "490G00151H", "lineIdentifier": ["80", "164"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "940GZZLUMDN", "lineIdentifier": ["northern"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490000151K", "stationAtcoCode": "490G00151H", "lineIdentifier": ["293", "154", "163", "413"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "bus", "lineIdentifier": ["n133", "n155", "118", "157", "201", "154", "470", "k5", "93", "80", "164", "293", "163", "413"]}, {"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["northern"]}], "status": true, "id": "940GZZLUMDN", "commonName": "Morden 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": "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."}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.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": "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": "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": "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": "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": "TaxiRankOutsideStation", "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": "LimitedCapacityLift", "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": "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": "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": "Accessibility", "key": "Toilet", "sourceSystemKey": "LRAD", "value": "No"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_4805"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5721"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "CarParks_800503"}], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490G00151H", "modes": ["bus"], "icsCode": "1000151", "stopType": "NaptanOnstreetBusCoachStopCluster", "stationNaptan": "490G00151H", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490G00151H", "commonName": "Morden Station", "placeType": "StopPoint", "additionalProperties": [], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000151A", "indicator": "Stop A", "stopLetter": "A", "modes": ["bus"], "icsCode": "1000151", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00151H", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000151A", "commonName": "Morden Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.402077, "lon": -0.19477}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000151B", "indicator": "Stop B", "stopLetter": "B", "modes": ["bus"], "icsCode": "1000151", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00151H", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000151B", "commonName": "Morden Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.402587, "lon": -0.194074}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000151C", "indicator": "Stop C", "stopLetter": "C", "modes": ["bus"], "icsCode": "1000151", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00151H", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000151C", "commonName": "Morden Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.402456, "lon": -0.194324}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000151K", "indicator": "Stop M", "stopLetter": "M", "modes": ["bus"], "icsCode": "1000151", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00151H", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000151K", "commonName": "Morden Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.401891, "lon": -0.195568}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000151L", "indicator": "Stop N", "stopLetter": "N", "modes": ["bus"], "icsCode": "1000151", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00151H", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000151L", "commonName": "Morden Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.401998, "lon": -0.194917}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000151W", "indicator": "Stop ->W", "stopLetter": "->W", "modes": ["bus"], "icsCode": "1000151", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00151H", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000151W", "commonName": "Morden Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.401686, "lon": -0.195677}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000151Z", "indicator": "Stop", "modes": ["bus"], "icsCode": "1000151", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00151H", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000151Z", "commonName": "Morden Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.401686, "lon": -0.195677}], "lat": 51.401686, "lon": -0.195677}, {"$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": "Facility", "key": "Photo 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": "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": "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.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": "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": "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"}, {"$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.402214, "lon": -0.194362}, {"$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": "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": "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": "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": "Facility", "key": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "0"}], "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}], "lat": 51.402142, "lon": -0.194839}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "940GZZLUMED", "modes": ["bus", "tube"], "icsCode": "1000146", "stopType": "NaptanMetroStation", "stationNaptan": "940GZZLUMED", "lines": [{"$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": "323", "name": "323", "uri": "/Line/323", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "d7", "name": "D7", "uri": "/Line/d7", "type": "Line", "crowding": {"$type": "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": "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": "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"}, {"$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": "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": "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": "n25", "name": "N25", "uri": "/Line/n25", "type": "Line", "crowding": {"$type": "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": "490000146B", "stationAtcoCode": "490G00146B", "lineIdentifier": ["277", "323", "d7", "n277", "d6"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "940GZZLUMED", "lineIdentifier": ["hammersmith-city", "district"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "940GZZLUMED", "lineIdentifier": ["central"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490000146A", "stationAtcoCode": "490G00146B", "lineIdentifier": ["323", "277", "d7", "d6", "n277"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490000146W", "stationAtcoCode": "490G00146C", "lineIdentifier": ["425"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490000146D", "stationAtcoCode": "490G00146C", "lineIdentifier": ["25", "205", "425", "n205"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490000146C", "stationAtcoCode": "490G00146C", "lineIdentifier": ["205", "n25", "n205", "25"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "bus", "lineIdentifier": ["277", "323", "d7", "n277", "d6", "425", "25", "205", "n205", "n25"]}, {"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["hammersmith-city", "district", "central"]}], "status": true, "id": "940GZZLUMED", "commonName": "Mile End 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": "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": "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": "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": "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": "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": "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": "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": "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": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_467"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_492"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_497"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_518"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_522"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5675"}], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490G00146B", "modes": ["bus"], "icsCode": "1000146", "stopType": "NaptanOnstreetBusCoachStopCluster", "stationNaptan": "490G00146B", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490G00146B", "commonName": "Mile End Station", "placeType": "StopPoint", "additionalProperties": [], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000146A", "indicator": "Stop A", "stopLetter": "A", "modes": ["bus"], "icsCode": "1000146", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00146B", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000146A", "commonName": "Mile End Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.52427, "lon": -0.034398}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000146B", "indicator": "Stop B", "stopLetter": "B", "modes": ["bus"], "icsCode": "1000146", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00146B", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000146B", "commonName": "Mile End Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.523751, "lon": -0.034535}], "lat": 51.52427, "lon": -0.034398}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490G00146C", "modes": ["bus"], "icsCode": "1000146", "stopType": "NaptanOnstreetBusCoachStopCluster", "stationNaptan": "490G00146C", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490G00146C", "commonName": "Mile End Station", "placeType": "StopPoint", "additionalProperties": [], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000146C", "indicator": "Stop C", "stopLetter": "C", "modes": ["bus"], "icsCode": "1000146", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00146C", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000146C", "commonName": "Mile End Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.525364, "lon": -0.033125}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000146D", "indicator": "Stop D", "stopLetter": "D", "modes": ["bus"], "icsCode": "1000146", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00146C", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000146D", "commonName": "Mile End Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.525368, "lon": -0.033918}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000146W", "indicator": "Stop M", "stopLetter": "M", "modes": ["bus"], "icsCode": "1000146", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00146C", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000146W", "commonName": "Mile End Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.525532, "lon": -0.032426}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490015151J", "indicator": "Stand J", "stopLetter": "J", "modes": ["bus"], "icsCode": "1000146", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00146C", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490015151J", "commonName": "Mile End Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.5257, "lon": -0.035518}], "lat": 51.525368, "lon": -0.033918}, {"$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": "Toilet", "sourceSystemKey": "LRAD", "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"}], "children": [], "lat": 51.525251, "lon": -0.033404}, {"$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": "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": "9400ZZLUMED3", "commonName": "Mile End 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": "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": "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": "Toilets", "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": "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": "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": "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": "Lifts", "sourceSystemKey": "StaticObjects", "value": "0"}], "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}], "lat": 51.525122, "lon": -0.03364}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "940GZZLUMGT", "modes": ["tube"], "icsCode": "1000149", "stopType": "NaptanMetroStation", "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"}, {"$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": ["northern"]}, {"$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": ["northern", "metropolitan", "circle", "hammersmith-city"]}], "status": true, "id": "940GZZLUMGT", "commonName": "Moorgate 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": "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": "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": "Payphones", "sourceSystemKey": "StaticObjects", "value": "4"}, {"$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": "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": "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": "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": "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": "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_120"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_127"}, {"$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_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_275"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_331"}, {"$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": "BikePoints_838"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5907"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5929"}, {"$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_5897"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5477"}, {"$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_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_5923"}, {"$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": "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": "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": "940GZZLUMGT", "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": "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": "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": "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": "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": "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": "Ticket Halls", "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": "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"}], "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": "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": "940GZZLUMGT", "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": "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}], "lat": 51.518176, "lon": -0.088322}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "940GZZLUMHL", "modes": ["bus", "tube"], "icsCode": "1000147", "stopType": "NaptanMetroStation", "stationNaptan": "940GZZLUMHL", "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": "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": "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": "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", "naptanIdReference": "490000147B", "stationAtcoCode": "490G00147E", "lineIdentifier": ["221", "382", "240"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "940GZZLUMHL", "lineIdentifier": ["northern"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490000147A", "stationAtcoCode": "490G00147E", "lineIdentifier": ["382", "240", "221"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "bus", "lineIdentifier": ["221", "382", "240"]}, {"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["northern"]}], "status": true, "id": "940GZZLUMHL", "commonName": "Mill Hill 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": "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": "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": "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": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$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": "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": "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": "Help 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": "CarParks_800483"}], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490G00147E", "modes": ["bus"], "icsCode": "1000147", "stopType": "NaptanOnstreetBusCoachStopCluster", "stationNaptan": "490G00147E", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490G00147E", "commonName": "Mill Hill East Station", "placeType": "StopPoint", "additionalProperties": [], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000147A", "indicator": "Stop A", "stopLetter": "A", "modes": ["bus"], "icsCode": "1000147", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00147E", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000147A", "commonName": "Mill Hill East Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.608554, "lon": -0.210161}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000147B", "indicator": "Stop B", "stopLetter": "B", "modes": ["bus"], "icsCode": "1000147", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00147E", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000147B", "commonName": "Mill Hill East Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.608501, "lon": -0.209614}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000147E", "indicator": "Stop", "modes": ["bus"], "icsCode": "1000147", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00147E", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000147E", "commonName": "Mill Hill East Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.608653, "lon": -0.210142}], "lat": 51.608501, "lon": -0.209614}, {"$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": "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}], "lat": 51.608229, "lon": -0.209986}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "940GZZLUMMT", "modes": ["bus", "tube"], "icsCode": "1000148", "stopType": "NaptanMetroStation", "stationNaptan": "940GZZLUMMT", "lines": [{"$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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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", "naptanIdReference": "490009267D", "stationAtcoCode": "490G09267E", "lineIdentifier": ["344", "149", "35", "133", "n199", "141", "43", "388", "n21", "n133", "21", "17"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490000148K", "stationAtcoCode": "490G00148K", "lineIdentifier": ["n15", "15"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490000148W", "stationAtcoCode": "490G00148K", "lineIdentifier": ["n15", "15"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490009267E", "stationAtcoCode": "490G09267E", "lineIdentifier": ["388", "43", "n133", "n21", "21", "141", "n199", "17", "149", "35", "133"]}, {"$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": "bus", "lineIdentifier": ["344", "149", "35", "133", "n199", "141", "43", "388", "n21", "n133", "21", "17", "n15", "15"]}, {"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["circle", "district"]}], "status": true, "id": "940GZZLUMMT", "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": "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": "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": "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": "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": "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": "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": "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": "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": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_101"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_199"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_276"}, {"$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_579"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_587"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_732"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5905"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5901"}, {"$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_5916"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5919"}], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490G00148C", "modes": ["bus"], "icsCode": "1000148", "stopType": "NaptanOnstreetBusCoachStopCluster", "stationNaptan": "940GZZLUMMT", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490G00148C", "commonName": "Monument Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.5107, "lon": -0.085969}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490G00148K", "modes": ["bus"], "icsCode": "1000148", "stopType": "NaptanOnstreetBusCoachStopCluster", "stationNaptan": "490G00148K", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490G00148K", "commonName": "Monument Station", "placeType": "StopPoint", "additionalProperties": [], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000148K", "indicator": "Stop H", "stopLetter": "H", "modes": ["bus"], "icsCode": "1000148", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00148K", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000148K", "commonName": "Monument Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.510753, "lon": -0.084886}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000148W", "indicator": "Stop J", "stopLetter": "J", "modes": ["bus"], "icsCode": "1000148", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00148K", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000148W", "commonName": "Monument Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.510649, "lon": -0.085107}], "lat": 51.510753, "lon": -0.084886}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490G00148M", "modes": ["bus"], "icsCode": "1000148", "stopType": "NaptanOnstreetBusCoachStopCluster", "stationNaptan": "940GZZLUMMT", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490G00148M", "commonName": "Monument Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.5107, "lon": -0.085969}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490G09267E", "modes": ["bus"], "icsCode": "1000148", "stopType": "NaptanOnstreetBusCoachStopCluster", "stationNaptan": "490G09267E", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490G09267E", "commonName": "Monument Station", "placeType": "StopPoint", "additionalProperties": [], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490009267D", "indicator": "Stop Q", "stopLetter": "Q", "modes": ["bus"], "icsCode": "1000148", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G09267E", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490009267D", "commonName": "Monument Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.509464, "lon": -0.087476}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490009267E", "indicator": "Stop P", "stopLetter": "P", "modes": ["bus"], "icsCode": "1000148", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G09267E", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490009267E", "commonName": "Monument Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.509502, "lon": -0.087028}], "lat": 51.509502, "lon": -0.087028}, {"$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": "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": "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": "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": "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": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$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.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": "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": "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": "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": "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": "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": "Car park", "sourceSystemKey": "StaticObjects", "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": "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": "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"}], "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": "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": "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"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.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": "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": "Help Points", "sourceSystemKey": "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"}], "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": "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": "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": "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": "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": "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}], "lat": 51.5107, "lon": -0.085969}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "940GZZLUMPK", "modes": ["tube"], "icsCode": "1000150", "stopType": "NaptanMetroStation", "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": "940GZZLUMPK", "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": "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": "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": "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": "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": "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": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "CarParks_800451"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.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"}], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "210G9438", "modes": [], "icsCode": "1000310", "stopType": "NaptanOnstreetBusCoachStopPair", "stationNaptan": "210G9438", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "210G9438", "commonName": "Moor Park Station", "placeType": "StopPoint", "additionalProperties": [], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "210021803521", "indicator": "o/s", "modes": [], "icsCode": "1000310", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "210G9438", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "210021803521", "commonName": "Moor Park Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.629539, "lon": -0.433938}], "lat": 51.629539, "lon": -0.433938}, {"$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": "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": "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": "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": "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": "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": "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": "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": "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}], "lat": 51.629845, "lon": -0.432454}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "940GZZLUMRH", "modes": ["bus", "tube"], "icsCode": "1000142", "stopType": "NaptanMetroStation", "stationNaptan": "940GZZLUMRH", "lines": [{"$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": "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": "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": "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": "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": "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": "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": "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": "29", "name": "29", "uri": "/Line/29", "type": "Line", "crowding": {"$type": "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": "490000142C", "stationAtcoCode": "490G00142A", "lineIdentifier": ["341", "141"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "940GZZLUMRH", "lineIdentifier": ["piccadilly"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490000142H", "stationAtcoCode": "490G00142G", "lineIdentifier": ["n279", "254", "253", "259", "n253"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490015501K", "stationAtcoCode": "490G00142J", "lineIdentifier": ["141", "341"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490000142D", "stationAtcoCode": "490G00142G", "lineIdentifier": ["253", "n253", "254"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490000142G", "stationAtcoCode": "490G00142G", "lineIdentifier": ["279"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490000142B", "stationAtcoCode": "490G00142A", "lineIdentifier": ["n29", "29"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490000142F", "stationAtcoCode": "490G00142G", "lineIdentifier": ["n279", "259", "279"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "bus", "lineIdentifier": ["341", "141", "n279", "254", "253", "259", "n253", "279", "n29", "29"]}, {"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["piccadilly"]}], "status": true, "id": "940GZZLUMRH", "commonName": "Manor House 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": "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": "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": "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": "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": "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": "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": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5608"}], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490G00142A", "modes": ["bus"], "icsCode": "1000142", "stopType": "NaptanOnstreetBusCoachStopCluster", "stationNaptan": "490G00142A", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490G00142A", "commonName": "Manor House Station", "placeType": "StopPoint", "additionalProperties": [], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000142B", "indicator": "Stop B", "stopLetter": "B", "modes": ["bus"], "icsCode": "1000142", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00142A", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000142B", "commonName": "Manor House Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.572159, "lon": -0.096795}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000142C", "indicator": "Stop C", "stopLetter": "C", "modes": ["bus"], "icsCode": "1000142", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00142A", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000142C", "commonName": "Manor House Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.571341, "lon": -0.096237}], "lat": 51.571341, "lon": -0.096237}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490G00142G", "modes": ["bus"], "icsCode": "1000142", "stopType": "NaptanOnstreetBusCoachStopCluster", "stationNaptan": "490G00142G", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490G00142G", "commonName": "Manor House Station", "placeType": "StopPoint", "additionalProperties": [], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000142D", "indicator": "Stop D", "stopLetter": "D", "modes": ["bus"], "icsCode": "1000142", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00142G", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000142D", "commonName": "Manor House Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.571399, "lon": -0.094287}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000142F", "indicator": "Stop F", "stopLetter": "F", "modes": ["bus"], "icsCode": "1000142", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00142G", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000142F", "commonName": "Manor House Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.571503, "lon": -0.09408}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000142G", "indicator": "Stop AP", "stopLetter": "AP", "modes": ["bus"], "icsCode": "1000142", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00142G", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000142G", "commonName": "Manor House Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.571339, "lon": -0.093943}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000142H", "indicator": "Stop H", "stopLetter": "H", "modes": ["bus"], "icsCode": "1000142", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00142G", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000142H", "commonName": "Manor House Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.571244, "lon": -0.094192}], "lat": 51.571244, "lon": -0.094192}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490G00142J", "modes": ["bus"], "icsCode": "1000142", "stopType": "NaptanOnstreetBusCoachStopCluster", "stationNaptan": "490G00142J", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490G00142J", "commonName": "Manor House Station", "placeType": "StopPoint", "additionalProperties": [], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490015501K", "indicator": "Stop K", "stopLetter": "K", "modes": ["bus"], "icsCode": "1000142", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00142J", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490015501K", "commonName": "Manor House Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.570298, "lon": -0.095747}], "lat": 51.570298, "lon": -0.095747}, {"$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": "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": "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": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$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": "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": "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": "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.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": "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": "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"}], "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": "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"}, {"$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"}], "children": [], "lat": 51.570458, "lon": -0.096144}, {"$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": "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": "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": "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": "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": "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, 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": "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.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": "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": "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": "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": "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"}], "children": [], "lat": 51.570266, "lon": -0.096441}], "lat": 51.570738, "lon": -0.096118}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "940GZZLUMSH", "modes": ["bus", "tube"], "icsCode": "1000143", "stopType": "NaptanMetroStation", "stationNaptan": "940GZZLUMSH", "lines": [{"$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": "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": "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": "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": "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": "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": "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": "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": "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", "naptanIdReference": "490000143E", "stationAtcoCode": "490G00143E", "lineIdentifier": ["n199", "26", "17", "133", "n21", "n26", "15", "n550", "n15"]}, {"$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": "bus", "lineIdentifier": ["n199", "26", "17", "133", "n21", "n26", "15", "n550", "n15"]}, {"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["district", "circle"]}], "status": true, "id": "940GZZLUMSH", "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": "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": "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": "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": "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": "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"}, {"$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": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_48"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_71"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_101"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_120"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_136"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_427"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_579"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5926"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5907"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5897"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5899"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5918"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5922"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5921"}], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490G00143E", "modes": ["bus"], "icsCode": "1000143", "stopType": "NaptanOnstreetBusCoachStopCluster", "stationNaptan": "490G00143E", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490G00143E", "commonName": "Mansion House Station", "placeType": "StopPoint", "additionalProperties": [], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000143E", "indicator": "Stop ME", "stopLetter": "ME", "modes": ["bus"], "icsCode": "1000143", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00143E", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000143E", "commonName": "Mansion House Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.512669, "lon": -0.09488}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000143E1", "indicator": "Stop", "modes": ["bus"], "icsCode": "1000143", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00143E", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000143E1", "commonName": "Mansion House Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.512233, "lon": -0.093471}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000143W", "indicator": "Stop MS", "stopLetter": "MS", "modes": ["bus"], "icsCode": "1000143", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00143E", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000143W", "commonName": "Mansion House Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.512136, "lon": -0.094715}], "lat": 51.512233, "lon": -0.093471}, {"$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": "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": "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": "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": "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": "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": "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": "8"}], "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": "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": "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": "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"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.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": "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"}], "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": "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": "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": "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": "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": "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": "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": "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"}], "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": "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": "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": "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"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.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.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}], "lat": 51.512117, "lon": -0.094009}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "940GZZLUMTC", "modes": ["bus", "tube"], "icsCode": "1000152", "stopType": "NaptanMetroStation", "stationNaptan": "940GZZLUMTC", "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "214", "name": "214", "uri": "/Line/214", "type": "Line", "crowding": {"$type": "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": "490000152A", "stationAtcoCode": "490G00152G", "lineIdentifier": ["24", "29", "27", "134", "n27", "n29", "n20", "n5", "n279"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490000152D", "stationAtcoCode": "490G00152G", "lineIdentifier": ["n27", "27"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490000152G", "stationAtcoCode": "490G00152G", "lineIdentifier": ["n5", "n20", "1", "n253", "253"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "940GZZLUMTC", "lineIdentifier": ["northern"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490000152C", "stationAtcoCode": "490G00152G", "lineIdentifier": ["n279", "24", "29", "n29", "134"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490000152K", "stationAtcoCode": "490G00152K", "lineIdentifier": ["214"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490000152F", "stationAtcoCode": "490G00152G", "lineIdentifier": ["n253", "1", "253"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "bus", "lineIdentifier": ["24", "29", "27", "134", "n27", "n29", "n20", "n5", "n279", "1", "n253", "253", "214"]}, {"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["northern"]}], "status": true, "id": "940GZZLUMTC", "commonName": "Mornington Crescent 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": "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": "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": "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": "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": "Mornington Crescent Station,London Underground Ltd.,Eversholt St,London,NW1 2JA"}, {"$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"}, {"$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": "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": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_90"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_131"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_362"}, {"$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": "TaxiRank_5489"}], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490G00152G", "modes": ["bus"], "icsCode": "1000152", "stopType": "NaptanOnstreetBusCoachStopCluster", "stationNaptan": "490G00152G", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490G00152G", "commonName": "Mornington Crescent Station", "placeType": "StopPoint", "additionalProperties": [], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000152A", "indicator": "Stop A", "stopLetter": "A", "modes": ["bus"], "icsCode": "1000152", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00152G", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000152A", "commonName": "Mornington Crescent Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.534029, "lon": -0.13932}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000152C", "indicator": "Stop C", "stopLetter": "C", "modes": ["bus"], "icsCode": "1000152", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00152G", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000152C", "commonName": "Mornington Crescent Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.533443, "lon": -0.138623}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000152D", "indicator": "Stop D", "stopLetter": "D", "modes": ["bus"], "icsCode": "1000152", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00152G", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000152D", "commonName": "Mornington Crescent Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.534116, "lon": -0.139086}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000152F", "indicator": "Stop F", "stopLetter": "F", "modes": ["bus"], "icsCode": "1000152", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00152G", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000152F", "commonName": "Mornington Cres Stn / Camden Tn Library", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.534158, "lon": -0.138363}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000152G", "indicator": "Stop G", "stopLetter": "G", "modes": ["bus"], "icsCode": "1000152", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00152G", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000152G", "commonName": "Mornington Cres Stn / Camden Tn Library", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.534136, "lon": -0.138105}], "lat": 51.533443, "lon": -0.138623}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490G00152K", "modes": ["bus"], "icsCode": "1000152", "stopType": "NaptanOnstreetBusCoachStopCluster", "stationNaptan": "490G00152K", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490G00152K", "commonName": "Mornington Crescent Station", "placeType": "StopPoint", "additionalProperties": [], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000152K", "indicator": "Stop K", "stopLetter": "K", "modes": ["bus"], "icsCode": "1000152", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00152K", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000152K", "commonName": "Mornington Crescent Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.534801, "lon": -0.136967}], "lat": 51.534801, "lon": -0.136967}, {"$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": "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": "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": "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": "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": "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"}], "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}], "lat": 51.534679, "lon": -0.138789}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "940GZZLUMVL", "modes": ["tube"], "icsCode": "1000141", "stopType": "NaptanMetroStation", "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": "940GZZLUMVL", "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": "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": "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": "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": "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": "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": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_8"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5426"}], "children": [{"$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": "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": "Maida Vale Station,London Underground Ltd.,Elgin Avenue,London,W9 1JS"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.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": "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": "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": "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": "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": "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"}], "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": "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": "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"}], "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}], "lat": 51.529777, "lon": -0.185758}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "940GZZLUMYB", "modes": ["tube"], "icsCode": "1000145", "stopType": "NaptanMetroStation", "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": "940GZZLUMYB", "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": "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": "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": "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."}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_43"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_45"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_114"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_182"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_201"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_208"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_396"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_605"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_759"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5742"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_4404"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5823"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5894"}], "children": [{"$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}], "lat": 51.522322, "lon": -0.163207}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "940GZZLUNAN", "modes": ["tube", "bus"], "icsCode": "1000157", "stopType": "NaptanMetroStation", "stationNaptan": "940GZZLUNAN", "lines": [{"$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": "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": "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": "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": "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": "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": "487", "name": "487", "uri": "/Line/487", "type": "Line", "crowding": {"$type": "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": "490000157ZZ", "stationAtcoCode": "490G00157V", "lineIdentifier": ["218"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490000157B", "stationAtcoCode": "490G00157B", "lineIdentifier": ["266", "n266"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490000157W", "stationAtcoCode": "490G00157V", "lineIdentifier": ["440"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "940GZZLUNAN", "lineIdentifier": ["central"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490000157V", "stationAtcoCode": "490G00157V", "lineIdentifier": ["266", "440", "n266", "260", "487"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "bus", "lineIdentifier": ["218", "266", "n266", "440", "260", "487"]}, {"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["central"]}], "status": true, "id": "940GZZLUNAN", "commonName": "North Acton 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": "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"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.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": "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": "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": "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": "Help Points", "sourceSystemKey": "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": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "2+3"}], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490G00157B", "modes": ["bus"], "icsCode": "1000157", "stopType": "NaptanOnstreetBusCoachStopCluster", "stationNaptan": "490G00157B", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490G00157B", "commonName": "North Acton Station", "placeType": "StopPoint", "additionalProperties": [], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000157B", "indicator": "Stop B", "stopLetter": "B", "modes": ["bus"], "icsCode": "1000157", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00157B", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000157B", "commonName": "North Acton Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.523019, "lon": -0.257958}], "lat": 51.523019, "lon": -0.257958}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490G00157V", "modes": ["bus"], "icsCode": "1000157", "stopType": "NaptanOnstreetBusCoachStopCluster", "stationNaptan": "490G00157V", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490G00157V", "commonName": "North Acton Station", "placeType": "StopPoint", "additionalProperties": [], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000157RB", "indicator": "->E", "stopLetter": "->E", "modes": ["bus"], "icsCode": "1000157", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00157V", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000157RB", "commonName": "North Acton Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.522816, "lon": -0.25945}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000157V", "indicator": "Stop Z", "stopLetter": "Z", "modes": ["bus"], "icsCode": "1000157", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00157V", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000157V", "commonName": "North Acton Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.522868, "lon": -0.259261}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000157W", "indicator": "Stop X", "stopLetter": "X", "modes": ["bus"], "icsCode": "1000157", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00157V", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000157W", "commonName": "North Acton Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.522875, "lon": -0.259751}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000157ZT", "indicator": "->E", "stopLetter": "->E", "modes": ["bus"], "icsCode": "1000157", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00157V", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000157ZT", "commonName": "North Acton Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.522844, "lon": -0.259492}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000157ZZ", "indicator": "->E", "stopLetter": "->E", "modes": ["bus"], "icsCode": "1000157", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00157V", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000157ZZ", "commonName": "North Acton Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.522988, "lon": -0.259473}], "lat": 51.522875, "lon": -0.259751}, {"$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": "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": "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": "Help Points", "sourceSystemKey": "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": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "no"}], "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": "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": "North Acton Station,London Underground Ltd.,Victoria Rd,London,W3 6UP"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.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": "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": "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": "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"}], "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}], "lat": 51.523524, "lon": -0.259755}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "940GZZLUNBP", "modes": ["bus", "tube"], "icsCode": "1000154", "stopType": "NaptanMetroStation", "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"}, {"$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": "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": "396", "name": "396", "uri": "/Line/396", "type": "Line", "crowding": {"$type": "Tfl.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"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490000154B", "stationAtcoCode": "490G00154B", "lineIdentifier": ["296", "66", "396"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490000154A", "stationAtcoCode": "490G00154B", "lineIdentifier": ["296", "396", "66"]}], "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": "bus", "lineIdentifier": ["296", "66", "396"]}], "status": true, "id": "940GZZLUNBP", "commonName": "Newbury Park 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": "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": "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": "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": "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": "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": "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": "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": "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": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5813"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "CarParks_800484"}], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490G00154B", "modes": ["bus"], "icsCode": "1000154", "stopType": "NaptanOnstreetBusCoachStopCluster", "stationNaptan": "490G00154B", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490G00154B", "commonName": "Newbury Park Station", "placeType": "StopPoint", "additionalProperties": [], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000154A", "indicator": "Stand NA", "stopLetter": "NA", "modes": ["bus"], "icsCode": "1000154", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00154B", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000154A", "commonName": "Newbury Park Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.5756, "lon": 0.090431}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000154B", "indicator": "Stop NB", "stopLetter": "NB", "modes": ["bus"], "icsCode": "1000154", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00154B", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000154B", "commonName": "Newbury Park Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.575099, "lon": 0.091823}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000154S", "indicator": "Stop", "modes": ["bus"], "icsCode": "1000154", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00154B", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000154S", "commonName": "Newbury Park Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.575622, "lon": 0.090707}], "lat": 51.575099, "lon": 0.091823}, {"$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": "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": "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": "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": "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": "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": "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."}], "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": "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": "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": "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": "Amazon Lockers", "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": "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": "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"}], "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": "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": "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}], "lat": 51.575726, "lon": 0.090004}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "940GZZLUNDN", "modes": ["tube", "bus"], "icsCode": "1000153", "stopType": "NaptanMetroStation", "stationNaptan": "940GZZLUNDN", "lines": [{"$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": "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", "naptanIdReference": "490000153AA", "stationAtcoCode": "490G00153AA", "lineIdentifier": ["297"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "940GZZLUNDN", "lineIdentifier": ["jubilee"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490000153BB", "stationAtcoCode": "490G00153AA", "lineIdentifier": ["297"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "bus", "lineIdentifier": ["297"]}, {"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["jubilee"]}], "status": true, "id": "940GZZLUNDN", "commonName": "Neasden 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": "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": "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": "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": "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": "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": "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": "yes (male, female, disabled/baby-changing facilities)"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5830"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "1"}], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490G00153AA", "modes": ["bus"], "icsCode": "1000153", "stopType": "NaptanOnstreetBusCoachStopCluster", "stationNaptan": "490G00153AA", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490G00153AA", "commonName": "Neasden Station", "placeType": "StopPoint", "additionalProperties": [], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000153AA", "indicator": "Stop AA", "stopLetter": "AA", "modes": ["bus"], "icsCode": "1000153", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00153AA", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000153AA", "commonName": "Neasden Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.554369, "lon": -0.249678}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000153BB", "indicator": "Stop BB", "stopLetter": "BB", "modes": ["bus"], "icsCode": "1000153", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00153AA", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000153BB", "commonName": "Neasden Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.553613, "lon": -0.249649}], "lat": 51.554369, "lon": -0.249678}, {"$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": "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"}], "children": [], "lat": 51.55402, "lon": -0.249763}, {"$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}], "lat": 51.553986, "lon": -0.249837}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "940GZZLUNEN", "modes": ["bus", "tube"], "icsCode": "1000158", "stopType": "NaptanMetroStation", "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"}, {"$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": "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": "112", "name": "112", "uri": "/Line/112", "type": "Line", "crowding": {"$type": "Tfl.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"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490011333B", "stationAtcoCode": "490G00158A", "lineIdentifier": ["n83", "483"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490000158A", "stationAtcoCode": "490G00158A", "lineIdentifier": ["n83", "112", "483"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["piccadilly"]}, {"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "bus", "lineIdentifier": ["n83", "483", "112"]}], "status": true, "id": "940GZZLUNEN", "commonName": "North Ealing 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": "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": "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": "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": "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": "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": "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": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "CarParks_800452"}], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490G00158A", "modes": ["bus"], "icsCode": "1000158", "stopType": "NaptanOnstreetBusCoachStopCluster", "stationNaptan": "490G00158A", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490G00158A", "commonName": "North Ealing Station", "placeType": "StopPoint", "additionalProperties": [], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000158A", "indicator": "Stop EQ", "stopLetter": "EQ", "modes": ["bus"], "icsCode": "1000158", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00158A", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000158A", "commonName": "North Ealing Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.517637, "lon": -0.291241}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490011333B", "indicator": "Stop ER", "stopLetter": "ER", "modes": ["bus"], "icsCode": "1000158", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00158A", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490011333B", "commonName": "North Ealing Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.516357, "lon": -0.291678}], "lat": 51.517637, "lon": -0.291241}, {"$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": "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}], "lat": 51.517505, "lon": -0.288868}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "940GZZLUNFD", "modes": ["bus", "tube"], "icsCode": "1000159", "stopType": "NaptanMetroStation", "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"}, {"$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": "e2", "name": "E2", "uri": "/Line/e2", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "e3", "name": "E3", "uri": "/Line/e3", "type": "Line", "crowding": {"$type": "Tfl.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"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490000159A", "stationAtcoCode": "490G00159X", "lineIdentifier": ["n11", "e2", "e3"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490000159B", "stationAtcoCode": "490G00159X", "lineIdentifier": ["n11", "e2", "e3"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["piccadilly"]}, {"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "bus", "lineIdentifier": ["n11", "e2", "e3"]}], "status": true, "id": "940GZZLUNFD", "commonName": "Northfields 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": "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": "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": "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": "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": "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": "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": "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": "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": "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"}], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490G00159X", "modes": ["bus"], "icsCode": "1000159", "stopType": "NaptanOnstreetBusCoachStopCluster", "stationNaptan": "490G00159X", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490G00159X", "commonName": "Northfields Station", "placeType": "StopPoint", "additionalProperties": [], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000159A", "indicator": "Stop B", "stopLetter": "B", "modes": ["bus"], "icsCode": "1000159", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00159X", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000159A", "commonName": "Northfields Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.498788, "lon": -0.31422}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000159B", "indicator": "Stop G", "stopLetter": "G", "modes": ["bus"], "icsCode": "1000159", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00159X", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000159B", "commonName": "Northfields Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.499574, "lon": -0.315041}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000159X", "indicator": "Stop Q", "stopLetter": "Q", "modes": ["bus"], "icsCode": "1000159", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00159X", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000159X", "commonName": "Northfields Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.499123, "lon": -0.314323}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000159Z", "indicator": "Stop Z", "stopLetter": "Z", "modes": ["bus"], "icsCode": "1000159", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00159X", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000159Z", "commonName": "Northfields Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.499055, "lon": -0.314642}], "lat": 51.499574, "lon": -0.315041}, {"$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": "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}], "lat": 51.499319, "lon": -0.314719}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "940GZZLUNGW", "modes": ["tube"], "icsCode": "1000160", "stopType": "NaptanMetroStation", "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": "940GZZLUNGW", "commonName": "North Greenwich 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": "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": "ServiceInfo", "key": "Night", "sourceSystemKey": "TransXchangeETL", "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": "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": "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": "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": "Toilets", "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": "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": "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": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5930"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "ToiletNote", "sourceSystemKey": "LRAD", "value": "(Bus station)"}, {"$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": "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": "6 on platforms, 4 in ticket halls, 0 elsewhere"}, {"$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": "TaxiRankOutsideStation", "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": "LimitedCapacityLift", "sourceSystemKey": "LRAD", "value": "No"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "BlueBadgeCarParkSpaces", "sourceSystemKey": "LRAD", "value": "19"}], "children": [{"$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": "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": "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": "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": "Toilet", "sourceSystemKey": "LRAD", "value": "Yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "ToiletNote", "sourceSystemKey": "LRAD", "value": "(Bus station)"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "TaxiRankOutsideStation", "sourceSystemKey": "LRAD", "value": "No"}], "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": "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": "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"}, {"$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"}], "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 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": "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": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "3"}, {"$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": "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": "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": "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": "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": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "2/3"}], "children": [], "lat": 51.500382, "lon": 0.005191}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUNGW2", "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": "9400ZZLUNGW2", "commonName": "North Greenwich 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": "Toilets", "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, 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": "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": "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": "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": "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": "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"}], "children": [], "lat": 51.500425, "lon": 0.005308}], "lat": 51.50047, "lon": 0.004287}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "940GZZLUNHA", "modes": ["tube", "bus"], "icsCode": "1000161", "stopType": "NaptanMetroStation", "stationNaptan": "940GZZLUNHA", "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": "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": "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": "490000161B", "stationAtcoCode": "490G00161B", "lineIdentifier": ["h10"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "940GZZLUNHA", "lineIdentifier": ["metropolitan"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490000161A", "stationAtcoCode": "490G00161B", "lineIdentifier": ["h9"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "bus", "lineIdentifier": ["h10", "h9"]}, {"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["metropolitan"]}], "status": true, "id": "940GZZLUNHA", "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": "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": "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": "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": "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": "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": "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": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_4936"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "0"}], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490G00161B", "modes": ["bus"], "icsCode": "1000161", "stopType": "NaptanOnstreetBusCoachStopCluster", "stationNaptan": "490G00161B", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490G00161B", "commonName": "North Harrow Station", "placeType": "StopPoint", "additionalProperties": [], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000161A", "indicator": "Stop NK", "stopLetter": "NK", "modes": ["bus"], "icsCode": "1000161", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00161B", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000161A", "commonName": "North Harrow Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.584392, "lon": -0.362266}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000161B", "indicator": "Stop NA", "stopLetter": "NA", "modes": ["bus"], "icsCode": "1000161", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00161B", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000161B", "commonName": "North Harrow Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.584573, "lon": -0.362375}], "lat": 51.584573, "lon": -0.362375}, {"$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": "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"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.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": "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": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}], "children": [], "lat": 51.58476, "lon": -0.362195}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUNHA", "modes": ["tube"], "icsCode": "1000161", "stopType": "NaptanMetroAccessArea", "stationNaptan": "940GZZLUNHA", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "9400ZZLUNHA", "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": "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": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "5"}, {"$type": "Tfl.Api.Presentation.Entities.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": "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": "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": "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": "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": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}], "children": [], "lat": 51.584872, "lon": -0.362408}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUNHA1", "modes": ["tube"], "icsCode": "1000161", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUNHA", "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": "940GZZLUNHA", "lineIdentifier": ["metropolitan"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["metropolitan"]}], "status": true, "id": "9400ZZLUNHA1", "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": "Toilets", "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": "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": "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": "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": "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": "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": "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"}], "children": [], "lat": 51.585094, "lon": -0.362833}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUNHA2", "modes": ["tube"], "icsCode": "1000161", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUNHA", "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": "940GZZLUNHA", "lineIdentifier": ["metropolitan"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["metropolitan"]}], "status": true, "id": "9400ZZLUNHA2", "commonName": "North Harrow 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": "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": "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": "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": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$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": "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": "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.585066, "lon": -0.362776}], "lat": 51.584872, "lon": -0.362408}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "940GZZLUNHG", "modes": ["bus", "tube"], "icsCode": "1000167", "stopType": "NaptanMetroStation", "stationNaptan": "940GZZLUNHG", "lines": [{"$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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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", "naptanIdReference": "490000167G", "stationAtcoCode": "490G00167G", "lineIdentifier": ["n27", "n31", "52", "452", "328", "27", "n28", "28"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "940GZZLUNHG", "lineIdentifier": ["central"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490000167H", "stationAtcoCode": "490G00167G", "lineIdentifier": ["n207", "148", "94"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490015039C", "stationAtcoCode": "490G00167G", "lineIdentifier": ["28", "n28", "n27", "52", "n31", "328", "27", "452"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "940GZZLUNHG", "lineIdentifier": ["circle", "district"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490000167F", "stationAtcoCode": "490G00167G", "lineIdentifier": ["70"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "bus", "lineIdentifier": ["n27", "n31", "52", "452", "328", "27", "n28", "28", "n207", "148", "94", "70"]}, {"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["central", "circle", "district"]}], "status": true, "id": "940GZZLUNHG", "commonName": "Notting Hill Gate Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_225"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_333"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_337"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_3995"}, {"$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": "Gates", "sourceSystemKey": "StaticObjects", "value": "6"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_212"}, {"$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": "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": "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": "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": "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": "1+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": "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": "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": "490G00167G", "modes": ["bus"], "icsCode": "1000167", "stopType": "NaptanOnstreetBusCoachStopCluster", "stationNaptan": "490G00167G", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490G00167G", "commonName": "Notting Hill Gate Station", "placeType": "StopPoint", "additionalProperties": [], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000167E1", "indicator": "->E", "stopLetter": "->E", "modes": ["bus"], "icsCode": "1000167", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00167G", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000167E1", "commonName": "Notting Hill Gate Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.509204, "lon": -0.195928}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000167F", "indicator": "Stop F", "stopLetter": "F", "modes": ["bus"], "icsCode": "1000167", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00167G", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000167F", "commonName": "Notting Hill Gate Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.508086, "lon": -0.195108}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000167G", "indicator": "Stop G", "stopLetter": "G", "modes": ["bus"], "icsCode": "1000167", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00167G", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000167G", "commonName": "Notting Hill Gate Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.508772, "lon": -0.195297}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000167H", "indicator": "Stop H", "stopLetter": "H", "modes": ["bus"], "icsCode": "1000167", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00167G", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000167H", "commonName": "Notting Hill Gate Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.509284, "lon": -0.194671}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490015039C", "indicator": "Stop C", "stopLetter": "C", "modes": ["bus"], "icsCode": "1000167", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00167G", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490015039C", "commonName": "Notting Hill Gate Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.509258, "lon": -0.197079}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490015463N", "indicator": "Stop N", "stopLetter": "N", "modes": ["bus"], "icsCode": "1000167", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00167G", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490015463N", "commonName": "Notting Hill Gate Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.5096, "lon": -0.192987}], "lat": 51.5096, "lon": -0.192987}, {"$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": "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": "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": "Help Points", "sourceSystemKey": "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": "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": "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+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": "Facility", "key": "Photo 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": "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"}], "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": "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": "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": "9400ZZLUNHG", "modes": ["tube"], "icsCode": "1000167", "stopType": "NaptanMetroAccessArea", "stationNaptan": "940GZZLUNHG", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "9400ZZLUNHG", "commonName": "Notting Hill Gate 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": "Help Points", "sourceSystemKey": "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": "1+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": "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": "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": "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": "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.509128, "lon": -0.196104}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUNHG1", "modes": ["tube"], "icsCode": "1000167", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUNHG", "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": "940GZZLUNHG", "lineIdentifier": ["central"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["central"]}], "status": true, "id": "9400ZZLUNHG1", "commonName": "Notting Hill Gate 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": "Waiting Room", "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": "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": "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": "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": "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": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}], "children": [], "lat": 51.508921, "lon": -0.197309}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUNHG2", "modes": ["tube"], "icsCode": "1000167", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUNHG", "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": "940GZZLUNHG", "lineIdentifier": ["central"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["central"]}], "status": true, "id": "9400ZZLUNHG2", "commonName": "Notting Hill Gate 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": "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": "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": "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": "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": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "1+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": "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": "Gates", "sourceSystemKey": "StaticObjects", "value": "6"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}], "children": [], "lat": 51.508988, "lon": -0.196974}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUNHG3", "modes": ["tube"], "icsCode": "1000167", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUNHG", "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": "940GZZLUNHG", "lineIdentifier": ["district", "circle"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["district", "circle"]}], "status": true, "id": "9400ZZLUNHG3", "commonName": "Notting Hill Gate 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": "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": "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": "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": "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": "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": "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": "0"}], "children": [], "lat": 51.508749, "lon": -0.196033}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUNHG4", "modes": ["tube"], "icsCode": "1000167", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUNHG", "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": "940GZZLUNHG", "lineIdentifier": ["district", "circle"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["district", "circle"]}], "status": true, "id": "9400ZZLUNHG4", "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": "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": "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": "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": "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": "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": "Help Points", "sourceSystemKey": "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": "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": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "0"}], "children": [], "lat": 51.508677, "lon": -0.196007}], "lat": 51.509128, "lon": -0.196104}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "940GZZLUNHT", "modes": ["bus", "tube"], "icsCode": "1000162", "stopType": "NaptanMetroStation", "stationNaptan": "940GZZLUNHT", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "90", "name": "90", "uri": "/Line/90", "type": "Line", "crowding": {"$type": "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": "sl9", "name": "SL9", "uri": "/Line/sl9", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "395", "name": "395", "uri": "/Line/395", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "282", "name": "282", "uri": "/Line/282", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "120", "name": "120", "uri": "/Line/120", "type": "Line", "crowding": {"$type": "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": "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": "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", "naptanIdReference": "490000162A", "stationAtcoCode": "490G00162X1", "lineIdentifier": ["90", "140", "sl9", "395", "282", "120", "n7", "n140"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490000162B", "stationAtcoCode": "490G00162X1", "lineIdentifier": ["395", "282", "120", "n7", "n140", "sl9", "140", "90"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "940GZZLUNHT", "lineIdentifier": ["central"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "bus", "lineIdentifier": ["90", "140", "sl9", "395", "282", "120", "n7", "n140"]}, {"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["central"]}], "status": true, "id": "940GZZLUNHT", "commonName": "Northolt Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$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": "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": "Help 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": "19: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": "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": "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": "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": "Payphones", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Opening Time", "key": "SunFrom", "sourceSystemKey": "StaticObjects", "value": "09:00"}, {"$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": "SatTo", "sourceSystemKey": "StaticObjects", "value": "17: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": "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": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Opening Time", "key": "SatFrom", "sourceSystemKey": "StaticObjects", "value": "08:00"}], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490G00162X1", "modes": ["bus"], "icsCode": "1000162", "stopType": "NaptanOnstreetBusCoachStopCluster", "stationNaptan": "490G00162X1", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490G00162X1", "commonName": "Northolt Station", "placeType": "StopPoint", "additionalProperties": [], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000162A", "indicator": "Stop A", "stopLetter": "A", "modes": ["bus"], "icsCode": "1000162", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00162X1", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000162A", "commonName": "Northolt Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.547668, "lon": -0.368777}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000162B", "indicator": "Stop B", "stopLetter": "B", "modes": ["bus"], "icsCode": "1000162", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00162X1", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000162B", "commonName": "Northolt Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.548477, "lon": -0.367407}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000162N", "indicator": "Stop", "modes": ["bus"], "icsCode": "1000162", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00162X1", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000162N", "commonName": "Northolt Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.549887, "lon": -0.364746}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000162X1", "indicator": "Stop U", "stopLetter": "U", "modes": ["bus"], "icsCode": "1000162", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00162X1", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000162X1", "commonName": "Northolt Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.547397, "lon": -0.369306}], "lat": 51.547397, "lon": -0.369306}, {"$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": "Opening Time", "key": "SunFrom", "sourceSystemKey": "StaticObjects", "value": "09: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": "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": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Opening Time", "key": "SatTo", "sourceSystemKey": "StaticObjects", "value": "17:30"}], "children": [], "lat": 51.548189, "lon": -0.368066}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUNHT", "modes": ["tube"], "icsCode": "1000162", "stopType": "NaptanMetroAccessArea", "stationNaptan": "940GZZLUNHT", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "9400ZZLUNHT", "commonName": "Northolt 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": "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": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$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": "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": "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": "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": "Opening Time", "key": "SunFrom", "sourceSystemKey": "StaticObjects", "value": "09: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": "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": "Opening Time", "key": "SunTo", "sourceSystemKey": "StaticObjects", "value": "15:30"}, {"$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": "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": "19:15"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "yes (male, female)"}], "children": [], "lat": 51.548236, "lon": -0.368699}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUNHT1", "modes": ["tube"], "icsCode": "1000162", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUNHT", "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": "940GZZLUNHT", "lineIdentifier": ["central"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["central"]}], "status": true, "id": "9400ZZLUNHT1", "commonName": "Northolt 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": "Opening Time", "key": "SunTo", "sourceSystemKey": "StaticObjects", "value": "15:30"}, {"$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": "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": "Other Facilities", "sourceSystemKey": "StaticObjects", "value": "routeways platform to ticket hall."}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Opening Time", "key": "SunFrom", "sourceSystemKey": "StaticObjects", "value": "09: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": "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": "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": "MonFriTo", "sourceSystemKey": "StaticObjects", "value": "19: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": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$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": "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": "Help 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:15"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "2"}], "children": [], "lat": 51.548457, "lon": -0.369124}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUNHT2", "modes": ["tube"], "icsCode": "1000162", "stopType": "NaptanRailAccessArea", "stationNaptan": "940GZZLUNHT", "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": "940GZZLUNHT", "lineIdentifier": ["central"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["central"]}], "status": true, "id": "9400ZZLUNHT2", "commonName": "Northolt 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": "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": "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": "routeways platform to ticket hall."}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Opening Time", "key": "SunFrom", "sourceSystemKey": "StaticObjects", "value": "09: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": "Opening Time", "key": "SatFrom", "sourceSystemKey": "StaticObjects", "value": "08:00"}, {"$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": "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": "Opening Time", "key": "MonFriTo", "sourceSystemKey": "StaticObjects", "value": "19: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": "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": "yes (male, female)"}, {"$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": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Opening Time", "key": "SatTo", "sourceSystemKey": "StaticObjects", "value": "17:30"}], "children": [], "lat": 51.548457, "lon": -0.369124}], "lat": 51.548236, "lon": -0.368699}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "940GZZLUNKP", "modes": ["tube", "bus"], "icsCode": "1000164", "stopType": "NaptanMetroStation", "stationNaptan": "940GZZLUNKP", "lines": [{"$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": "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": "h18", "name": "H18", "uri": "/Line/h18", "type": "Line", "crowding": {"$type": "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": "490000164MM", "stationAtcoCode": "490G00164NN", "lineIdentifier": ["h19"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "940GZZLUNKP", "lineIdentifier": ["metropolitan"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490000164NN", "stationAtcoCode": "490G00164NN", "lineIdentifier": ["h18"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "bus", "lineIdentifier": ["h19", "h18"]}, {"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["metropolitan"]}], "status": true, "id": "940GZZLUNKP", "commonName": "Northwick 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": "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": "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": "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": "Help Points", "sourceSystemKey": "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": "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": "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": "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"}], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490G00164NN", "modes": ["bus"], "icsCode": "1000164", "stopType": "NaptanOnstreetBusCoachStopCluster", "stationNaptan": "490G00164NN", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490G00164NN", "commonName": "Northwick Park Station", "placeType": "StopPoint", "additionalProperties": [], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000164MM", "indicator": "Stop MM", "stopLetter": "MM", "modes": ["bus"], "icsCode": "1000164", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00164NN", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000164MM", "commonName": "Northwick Park Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.579017, "lon": -0.317935}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000164NN", "indicator": "Stop NN", "stopLetter": "NN", "modes": ["bus"], "icsCode": "1000164", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00164NN", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000164NN", "commonName": "Northwick Park Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.579077, "lon": -0.318337}], "lat": 51.579017, "lon": -0.317935}, {"$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": "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": "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": "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"}], "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": "9400ZZLUNKP", "modes": ["tube"], "icsCode": "1000164", "stopType": "NaptanMetroAccessArea", "stationNaptan": "940GZZLUNKP", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "9400ZZLUNKP", "commonName": "Northwick Park Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$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": "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": "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": "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": "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": "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": "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": "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"}], "children": [], "lat": 51.578481, "lon": -0.318056}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUNKP1", "modes": ["tube"], "icsCode": "1000164", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUNKP", "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": "940GZZLUNKP", "lineIdentifier": ["metropolitan"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["metropolitan"]}], "status": true, "id": "9400ZZLUNKP1", "commonName": "Northwick 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": "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": "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": "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": "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": "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": "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": "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.578393, "lon": -0.317569}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUNKP2", "modes": ["tube"], "icsCode": "1000164", "stopType": "NaptanRailAccessArea", "stationNaptan": "940GZZLUNKP", "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": "940GZZLUNKP", "lineIdentifier": ["metropolitan"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["metropolitan"]}], "status": true, "id": "9400ZZLUNKP2", "commonName": "Northwick Park 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": "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": "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": "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": "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": "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": "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": "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"}], "children": [], "lat": 51.578393, "lon": -0.317554}], "lat": 51.578481, "lon": -0.318056}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "940GZZLUNOW", "modes": ["bus", "tube"], "icsCode": "1000165", "stopType": "NaptanMetroStation", "stationNaptan": "940GZZLUNOW", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "331", "name": "331", "uri": "/Line/331", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "282", "name": "282", "uri": "/Line/282", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "h11", "name": "H11", "uri": "/Line/h11", "type": "Line", "crowding": {"$type": "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", "naptanIdReference": "490000165A", "stationAtcoCode": "490G00165B", "lineIdentifier": ["331"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490015504D", "stationAtcoCode": "490G00165B", "lineIdentifier": ["282", "h11"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "940GZZLUNOW", "lineIdentifier": ["metropolitan"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490000165B", "stationAtcoCode": "490G00165B", "lineIdentifier": ["331"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490015504C", "stationAtcoCode": "490G00165B", "lineIdentifier": ["282", "h11"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "bus", "lineIdentifier": ["331", "282", "h11"]}, {"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["metropolitan"]}], "status": true, "id": "940GZZLUNOW", "commonName": "Northwood Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$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": "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": "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": "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": "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, 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": "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": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "CarParks_800454"}], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490G00165B", "modes": ["bus"], "icsCode": "1000165", "stopType": "NaptanOnstreetBusCoachStopCluster", "stationNaptan": "490G00165B", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490G00165B", "commonName": "Northwood Station", "placeType": "StopPoint", "additionalProperties": [], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000165A", "indicator": "Stop A", "stopLetter": "A", "modes": ["bus"], "icsCode": "1000165", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00165B", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000165A", "commonName": "Northwood Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.611121, "lon": -0.423696}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000165B", "indicator": "Stop B", "stopLetter": "B", "modes": ["bus"], "icsCode": "1000165", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00165B", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000165B", "commonName": "Northwood Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.610822, "lon": -0.42349}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000165E", "indicator": "Stop E", "stopLetter": "E", "modes": ["bus"], "icsCode": "1000165", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00165B", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000165E", "commonName": "Northwood Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.6107, "lon": -0.423162}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490015504C", "indicator": "Stop C", "stopLetter": "C", "modes": ["bus"], "icsCode": "1000165", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00165B", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490015504C", "commonName": "Northwood Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.61127, "lon": -0.422695}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490015504D", "indicator": "Stop D", "stopLetter": "D", "modes": ["bus"], "icsCode": "1000165", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00165B", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490015504D", "commonName": "Northwood Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.611372, "lon": -0.422951}], "lat": 51.610822, "lon": -0.42349}, {"$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": "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": "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"}], "children": [], "lat": 51.611157, "lon": -0.423695}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUNOW", "modes": ["tube"], "icsCode": "1000165", "stopType": "NaptanMetroAccessArea", "stationNaptan": "940GZZLUNOW", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "9400ZZLUNOW", "commonName": "Northwood 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": "12 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": "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": "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": "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": "Toilets", "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": "3"}, {"$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": "Northwood Station,London Underground Ltd.,Station Approach,Green Lane,Northwood,Middx,HA6 2XL"}], "children": [], "lat": 51.611053, "lon": -0.423829}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUNOW1", "modes": ["tube"], "icsCode": "1000165", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUNOW", "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": "940GZZLUNOW", "lineIdentifier": ["metropolitan"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["metropolitan"]}], "status": true, "id": "9400ZZLUNOW1", "commonName": "Northwood 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": "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": "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": "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": "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"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.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": "12 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": "Toilets", "sourceSystemKey": "StaticObjects", "value": "yes"}], "children": [], "lat": 51.611001, "lon": -0.42399}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUNOW2", "modes": ["tube"], "icsCode": "1000165", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUNOW", "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": "940GZZLUNOW", "lineIdentifier": ["metropolitan"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["metropolitan"]}], "status": true, "id": "9400ZZLUNOW2", "commonName": "Northwood 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": "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": "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": "12 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": "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": "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": "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": "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.610947, "lon": -0.423963}], "lat": 51.611053, "lon": -0.423829}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "940GZZLUNWH", "modes": ["bus", "tube"], "icsCode": "1000166", "stopType": "NaptanMetroStation", "stationNaptan": "940GZZLUNWH", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "h13", "name": "H13", "uri": "/Line/h13", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "282", "name": "282", "uri": "/Line/282", "type": "Line", "crowding": {"$type": "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", "naptanIdReference": "490000166B", "stationAtcoCode": "490G00166B", "lineIdentifier": ["h13", "282"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "940GZZLUNWH", "lineIdentifier": ["metropolitan"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490000166A", "stationAtcoCode": "490G00166B", "lineIdentifier": ["282", "h13"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "bus", "lineIdentifier": ["h13", "282"]}, {"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["metropolitan"]}], "status": true, "id": "940GZZLUNWH", "commonName": "Northwood Hills 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": "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": "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": "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": "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": "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": "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": "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": "Northwood Hills Station,London Underground Ltd.,Joel St,Northwood,Middx,HA6 1NZ"}], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490G00166B", "modes": ["bus"], "icsCode": "1000166", "stopType": "NaptanOnstreetBusCoachStopCluster", "stationNaptan": "490G00166B", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490G00166B", "commonName": "Northwood Hills Station", "placeType": "StopPoint", "additionalProperties": [], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000166A", "indicator": "Stop A", "stopLetter": "A", "modes": ["bus"], "icsCode": "1000166", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00166B", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000166A", "commonName": "Northwood Hills Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.600382, "lon": -0.409528}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000166B", "indicator": "Stop B", "stopLetter": "B", "modes": ["bus"], "icsCode": "1000166", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00166B", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000166B", "commonName": "Northwood Hills Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.601167, "lon": -0.409688}], "lat": 51.601167, "lon": -0.409688}, {"$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": "9400ZZLUNWH", "modes": ["tube"], "icsCode": "1000166", "stopType": "NaptanMetroAccessArea", "stationNaptan": "940GZZLUNWH", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "9400ZZLUNWH", "commonName": "Northwood Hills 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": "10 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": "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": "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": "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": "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": "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": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "6"}], "children": [], "lat": 51.600572, "lon": -0.409464}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUNWH1", "modes": ["tube"], "icsCode": "1000166", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUNWH", "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": "940GZZLUNWH", "lineIdentifier": ["metropolitan"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["metropolitan"]}], "status": true, "id": "9400ZZLUNWH1", "commonName": "Northwood Hills 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."}, {"$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": "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": "Payphones", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$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": "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": "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": "10 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.600529, "lon": -0.408974}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUNWH2", "modes": ["tube"], "icsCode": "1000166", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUNWH", "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": "940GZZLUNWH", "lineIdentifier": ["metropolitan"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["metropolitan"]}], "status": true, "id": "9400ZZLUNWH2", "commonName": "Northwood Hills 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": "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": "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": "Gates", "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": "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": "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": "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": "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": "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.600492, "lon": -0.408875}], "lat": 51.600572, "lon": -0.409464}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "940GZZLUNWY", "modes": ["tube"], "icsCode": "1000163", "stopType": "NaptanMetroStation", "stationNaptan": "940GZZLUNWY", "hubNaptanCode": "HUBNWB", "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": "940GZZLUNWY", "lineIdentifier": ["bakerloo"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["bakerloo"]}], "status": true, "id": "940GZZLUNWY", "commonName": "North Wembley 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": "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": "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": "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": "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": "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": "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": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 601 4867"}], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUNWY", "modes": ["tube"], "icsCode": "1000163", "stopType": "NaptanMetroAccessArea", "stationNaptan": "940GZZLUNWY", "hubNaptanCode": "HUBNWB", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "9400ZZLUNWY", "commonName": "North Wembley 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": "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": "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": "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": "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": "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": "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": "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": "Toilets", "sourceSystemKey": "StaticObjects", "value": "no"}], "children": [], "lat": 51.562551, "lon": -0.304}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUNWY1", "modes": ["tube"], "icsCode": "1000163", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUNWY", "hubNaptanCode": "HUBNWB", "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": "940GZZLUNWY", "lineIdentifier": ["bakerloo"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["bakerloo"]}], "status": true, "id": "9400ZZLUNWY1", "commonName": "North Wembley 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": "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": "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": "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": "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"}], "children": [], "lat": 51.562322, "lon": -0.303691}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUNWY2", "indicator": "southbound", "modes": ["tube"], "icsCode": "1000163", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUNWY", "hubNaptanCode": "HUBNWB", "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": "940GZZLUNWY", "lineIdentifier": ["bakerloo"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["bakerloo"]}], "status": true, "id": "9400ZZLUNWY2", "commonName": "North Wembley 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": "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": "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": "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": "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": "no"}], "children": [], "lat": 51.5628, "lon": -0.303774}], "lat": 51.562551, "lon": -0.304}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "940GZZLUOAK", "modes": ["bus", "tube"], "icsCode": "1000168", "stopType": "NaptanMetroStation", "stationNaptan": "940GZZLUOAK", "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": "377", "name": "377", "uri": "/Line/377", "type": "Line", "crowding": {"$type": "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": "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": "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": "940GZZLUOAK", "lineIdentifier": ["piccadilly"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490000168B", "stationAtcoCode": "490G00168A", "lineIdentifier": ["377"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490000168A", "stationAtcoCode": "490G00168A", "lineIdentifier": ["121", "307", "n91"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["piccadilly"]}, {"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "bus", "lineIdentifier": ["377", "121", "307", "n91"]}], "status": true, "id": "940GZZLUOAK", "commonName": "Oakwood 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": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$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": "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": "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": "Geo", "key": "Zone", "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": "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": "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": "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": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5844"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "CarParks_800485"}], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490G00168A", "modes": ["bus"], "stopType": "NaptanOnstreetBusCoachStopCluster", "stationNaptan": "490G00168A", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490G00168A", "commonName": "Oakwood Station", "placeType": "StopPoint", "additionalProperties": [], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000168A", "indicator": "Stop A", "stopLetter": "A", "modes": ["bus"], "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00168A", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000168A", "commonName": "Oakwood Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.647792, "lon": -0.131934}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000168B", "indicator": "Stop B", "stopLetter": "B", "modes": ["bus"], "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00168A", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000168B", "commonName": "Oakwood Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.647421, "lon": -0.132339}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000168Y", "indicator": "->S", "stopLetter": "->S", "modes": ["bus"], "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00168A", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000168Y", "commonName": "Oakwood Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.646982, "lon": -0.132444}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000168Z", "indicator": "Stop", "modes": ["bus"], "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00168A", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000168Z", "commonName": "Oakwood Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.646966, "lon": -0.13256}], "lat": 51.646982, "lon": -0.132444}, {"$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": "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"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.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"}], "children": [], "lat": 51.647632, "lon": -0.132085}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUOAK", "modes": ["tube"], "icsCode": "1000168", "stopType": "NaptanMetroAccessArea", "stationNaptan": "940GZZLUOAK", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "9400ZZLUOAK", "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": "Gates", "sourceSystemKey": "StaticObjects", "value": "3"}, {"$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": "Help Points", "sourceSystemKey": "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": "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": "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": "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"}], "children": [], "lat": 51.647725, "lon": -0.132168}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUOAK1", "modes": ["tube"], "icsCode": "1000168", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUOAK", "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": "940GZZLUOAK", "lineIdentifier": ["piccadilly"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["piccadilly"]}], "status": true, "id": "9400ZZLUOAK1", "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": "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": "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": "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": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "5"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.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": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$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": "Help 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.647336, "lon": -0.131418}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUOAK2", "modes": ["tube"], "icsCode": "1000168", "stopType": "NaptanRailAccessArea", "stationNaptan": "940GZZLUOAK", "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": "940GZZLUOAK", "lineIdentifier": ["piccadilly"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["piccadilly"]}], "status": true, "id": "9400ZZLUOAK2", "commonName": "Oakwood 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": "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": "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": "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": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$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": "Help 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": "Car park", "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.647327, "lon": -0.131433}], "lat": 51.647726, "lon": -0.132182}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "940GZZLUODS", "modes": ["tube"], "icsCode": "1000169", "stopType": "NaptanMetroStation", "stationNaptan": "940GZZLUODS", "hubNaptanCode": "HUBOLD", "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": "940GZZLUODS", "lineIdentifier": ["northern"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["northern"]}], "status": true, "id": "940GZZLUODS", "commonName": "Old 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": "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": "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": "Toilets", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Old Street Station,London Underground Ltd.,Old St,London,EC1Y 1BE"}, {"$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": "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": "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": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_32"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_73"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_119"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_319"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_323"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5116"}], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUODS", "modes": ["tube"], "icsCode": "1000169", "stopType": "NaptanMetroAccessArea", "stationNaptan": "940GZZLUODS", "hubNaptanCode": "HUBOLD", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "9400ZZLUODS", "commonName": "Old Street 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": "Help Points", "sourceSystemKey": "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": "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": "Address", "sourceSystemKey": "StaticObjects", "value": "Old Street Station,London Underground Ltd.,Old St,London,EC1Y 1BE"}, {"$type": "Tfl.Api.Presentation.Entities.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": "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.525864, "lon": -0.08777}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUODS1", "modes": ["tube"], "icsCode": "1000169", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUODS", "hubNaptanCode": "HUBOLD", "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": "940GZZLUODS", "lineIdentifier": ["northern"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["northern"]}], "status": true, "id": "9400ZZLUODS1", "commonName": "Old 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": "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": "Address", "sourceSystemKey": "StaticObjects", "value": "Old Street Station,London Underground Ltd.,Old St,London,EC1Y 1BE"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.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": "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": "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": "Geo", "key": "Zone", "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": "Lifts", "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.524988, "lon": -0.087547}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUODS2", "modes": ["tube"], "icsCode": "1000169", "stopType": "NaptanRailAccessArea", "stationNaptan": "940GZZLUODS", "hubNaptanCode": "HUBOLD", "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": "940GZZLUODS", "lineIdentifier": ["northern"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["northern"]}], "status": true, "id": "9400ZZLUODS2", "commonName": "Old Street 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": "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": "Help Points", "sourceSystemKey": "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": "Old Street Station,London Underground Ltd.,Old St,London,EC1Y 1BE"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.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": "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": "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": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "1"}], "children": [], "lat": 51.524979, "lon": -0.087547}], "lat": 51.525864, "lon": -0.08777}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "940GZZLUOSY", "modes": ["bus", "tube"], "icsCode": "1000171", "stopType": "NaptanMetroStation", "stationNaptan": "940GZZLUOSY", "lines": [{"$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": "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", "naptanIdReference": "490000171B", "stationAtcoCode": "490G00171A", "lineIdentifier": ["h91"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490000171A", "stationAtcoCode": "490G00171A", "lineIdentifier": ["h91"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "940GZZLUOSY", "lineIdentifier": ["piccadilly"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "bus", "lineIdentifier": ["h91"]}, {"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["piccadilly"]}], "status": true, "id": "940GZZLUOSY", "commonName": "Osterley 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": "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": "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": "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": "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": "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": "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": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "CarParks_800455"}, {"$type": "Tfl.Api.Presentation.Entities.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": "Escalators", "sourceSystemKey": "StaticObjects", "value": "0"}], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490G00171A", "modes": ["bus"], "icsCode": "1000171", "stopType": "NaptanOnstreetBusCoachStopCluster", "stationNaptan": "490G00171A", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490G00171A", "commonName": "Osterley Station", "placeType": "StopPoint", "additionalProperties": [], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000171A", "indicator": "Stop S", "stopLetter": "S", "modes": ["bus"], "icsCode": "1000171", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00171A", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000171A", "commonName": "Osterley Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.480872, "lon": -0.351907}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000171B", "indicator": "Stop P", "stopLetter": "P", "modes": ["bus"], "icsCode": "1000171", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00171A", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000171B", "commonName": "Osterley Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.480655, "lon": -0.351799}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "49000RB47E", "indicator": "Stop", "modes": ["bus"], "icsCode": "1000171", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00171A", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "49000RB47E", "commonName": "Osterley Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.48093, "lon": -0.351559}], "lat": 51.480655, "lon": -0.351799}, {"$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": "9400ZZLUOSY", "modes": ["tube"], "icsCode": "1000171", "stopType": "NaptanMetroAccessArea", "stationNaptan": "940GZZLUOSY", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "9400ZZLUOSY", "commonName": "Osterley 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": "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": "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": "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": "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": "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": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "4"}], "children": [], "lat": 51.481274, "lon": -0.352224}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUOSY1", "modes": ["tube"], "icsCode": "1000171", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUOSY", "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": "940GZZLUOSY", "lineIdentifier": ["piccadilly"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["piccadilly"]}], "status": true, "id": "9400ZZLUOSY1", "commonName": "Osterley 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": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "4"}, {"$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": "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": "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": "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"}], "children": [], "lat": 51.481502, "lon": -0.351812}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUOSY2", "modes": ["tube"], "icsCode": "1000171", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUOSY", "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": "940GZZLUOSY", "lineIdentifier": ["piccadilly"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["piccadilly"]}], "status": true, "id": "9400ZZLUOSY2", "commonName": "Osterley 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": "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": "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": "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": "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": "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": "Help Points", "sourceSystemKey": "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": "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": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "1"}], "children": [], "lat": 51.481448, "lon": -0.351843}], "lat": 51.481274, "lon": -0.352224}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "940GZZLUOVL", "modes": ["tube", "bus"], "icsCode": "1000172", "stopType": "NaptanMetroStation", "stationNaptan": "940GZZLUOVL", "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": "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": "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": "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": "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": "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": "n136", "name": "N136", "uri": "/Line/n136", "type": "Line", "crowding": {"$type": "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": "490000172Q", "stationAtcoCode": "490G00172N", "lineIdentifier": ["155", "333", "n155"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490000172R", "stationAtcoCode": "490G00172N", "lineIdentifier": ["n155", "155", "333"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "940GZZLUOVL", "lineIdentifier": ["northern"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490000172D", "stationAtcoCode": "490G00172N", "lineIdentifier": ["759", "185", "36", "436", "n136"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490000172C", "stationAtcoCode": "490G00172N", "lineIdentifier": ["n136", "185", "36", "759", "436"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "bus", "lineIdentifier": ["155", "333", "n155", "759", "185", "36", "436", "n136"]}, {"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["northern"]}], "status": true, "id": "940GZZLUOVL", "commonName": "Oval 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": "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": "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": "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"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.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": "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": "Photo 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": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_149"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_440"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_654"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_827"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5134"}], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490G00172N", "modes": ["bus"], "icsCode": "1000172", "stopType": "NaptanOnstreetBusCoachStopCluster", "stationNaptan": "490G00172N", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490G00172N", "commonName": "Oval Station", "placeType": "StopPoint", "additionalProperties": [], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000172C", "indicator": "Stop C", "stopLetter": "C", "modes": ["bus"], "icsCode": "1000172", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00172N", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000172C", "commonName": "Oval Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.482392, "lon": -0.112748}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000172D", "indicator": "Stop D", "stopLetter": "D", "modes": ["bus"], "icsCode": "1000172", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00172N", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000172D", "commonName": "Oval Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.482122, "lon": -0.112687}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000172Q", "indicator": "Stop Q", "stopLetter": "Q", "modes": ["bus"], "icsCode": "1000172", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00172N", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000172Q", "commonName": "Oval Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.481538, "lon": -0.11274}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000172R", "indicator": "Stop R", "stopLetter": "R", "modes": ["bus"], "icsCode": "1000172", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00172N", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000172R", "commonName": "Oval Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.481576, "lon": -0.112335}], "lat": 51.481538, "lon": -0.11274}, {"$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": "9400ZZLUOVL", "modes": ["tube"], "icsCode": "1000172", "stopType": "NaptanMetroAccessArea", "stationNaptan": "940GZZLUOVL", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "9400ZZLUOVL", "commonName": "Oval Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$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": "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": "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": "Photo 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": "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": "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": "Help 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.48185, "lon": -0.112439}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUOVL1", "modes": ["tube"], "icsCode": "1000172", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUOVL", "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": "940GZZLUOVL", "lineIdentifier": ["northern"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["northern"]}], "status": true, "id": "9400ZZLUOVL1", "commonName": "Oval 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": "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": "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": "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": "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": "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": "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.481574, "lon": -0.112623}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUOVL2", "modes": ["tube"], "icsCode": "1000172", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUOVL", "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": "940GZZLUOVL", "lineIdentifier": ["northern"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["northern"]}], "status": true, "id": "9400ZZLUOVL2", "commonName": "Oval 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": "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": "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": "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": "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": "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": "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": "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"}], "children": [], "lat": 51.481777, "lon": -0.112399}], "lat": 51.48185, "lon": -0.112439}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "940GZZLUOXC", "modes": ["bus", "tube"], "icsCode": "1000173", "stopType": "NaptanMetroStation", "stationNaptan": "940GZZLUOXC", "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "n3", "name": "N3", "uri": "/Line/n3", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "940GZZLUOXC", "lineIdentifier": ["victoria"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490000173RG", "stationAtcoCode": "490G00173RG", "lineIdentifier": ["n22", "22", "159", "n113", "n136", "n18", "139", "94", "n109", "n15"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490000173Z", "stationAtcoCode": "490G00173OQ", "lineIdentifier": ["n137"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "940GZZLUOXC", "lineIdentifier": ["central"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "940GZZLUOXC", "lineIdentifier": ["bakerloo"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490000173RC", "stationAtcoCode": "490G00173RG", "lineIdentifier": ["88", "n22", "22", "12", "159", "n3", "94", "n15"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["victoria", "central", "bakerloo"]}, {"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "bus", "lineIdentifier": ["n22", "22", "159", "n113", "n136", "n18", "139", "94", "n109", "n15", "n137", "88", "12", "n3"]}], "status": true, "id": "940GZZLUOXC", "commonName": "Oxford Circus 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": "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": "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": "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": "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": "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": "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": "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": "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": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_6"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_106"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_116"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_141"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_260"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_301"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_311"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_313"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_349"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5683"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5576"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5379"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_4334"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5580"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5866"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5500"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_4787"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5065"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5816"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5611"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_4603"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5627"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5015"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5660"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5677"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5074"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5195"}], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490G00173OQ", "modes": ["bus"], "icsCode": "1000173", "stopType": "NaptanOnstreetBusCoachStopCluster", "stationNaptan": "490G00173OQ", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490G00173OQ", "commonName": "Oxford Circus Station", "placeType": "StopPoint", "additionalProperties": [], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000173Z", "indicator": "Stop OH", "stopLetter": "OH", "modes": ["bus"], "icsCode": "1000173", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00173OQ", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000173Z", "commonName": "Oxford Circus Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.515286, "lon": -0.143658}], "lat": 51.515286, "lon": -0.143658}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490G00173RG", "modes": ["bus"], "icsCode": "1000173", "stopType": "NaptanOnstreetBusCoachStopCluster", "stationNaptan": "490G00173RG", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490G00173RG", "commonName": "Oxford Circus Station", "placeType": "StopPoint", "additionalProperties": [], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000173RC", "indicator": "Stop RC", "stopLetter": "RC", "modes": ["bus"], "icsCode": "1000173", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00173RG", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000173RC", "commonName": "Oxford Circus Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.51462, "lon": -0.141942}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000173RG", "indicator": "Stop RG", "stopLetter": "RG", "modes": ["bus"], "icsCode": "1000173", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00173RG", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000173RG", "commonName": "Oxford Circus Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.514589, "lon": -0.141669}], "lat": 51.514589, "lon": -0.141669}, {"$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": "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": "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.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": "9400ZZLUOXC", "modes": ["tube"], "icsCode": "1000173", "stopType": "NaptanMetroAccessArea", "stationNaptan": "940GZZLUOXC", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "9400ZZLUOXC", "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": "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": "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": "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": "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": "30"}, {"$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": "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": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}], "children": [], "lat": 51.515224, "lon": -0.141903}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUOXC1", "modes": ["tube"], "icsCode": "1000173", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUOXC", "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": "940GZZLUOXC", "lineIdentifier": ["central"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["central"]}], "status": true, "id": "9400ZZLUOXC1", "commonName": "Oxford Circus 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": "14"}, {"$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": "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": "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": "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": "Photo 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": "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": "Lifts", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "3"}], "children": [], "lat": 51.515377, "lon": -0.141363}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUOXC2", "modes": ["tube"], "icsCode": "1000173", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUOXC", "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": "940GZZLUOXC", "lineIdentifier": ["victoria"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["victoria"]}], "status": true, "id": "9400ZZLUOXC2", "commonName": "Oxford 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": "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": "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": "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": "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": "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": "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": "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": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "no"}], "children": [], "lat": 51.51576, "lon": -0.14227}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUOXC3", "modes": ["tube"], "icsCode": "1000173", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUOXC", "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": "940GZZLUOXC", "lineIdentifier": ["bakerloo"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["bakerloo"]}], "status": true, "id": "9400ZZLUOXC3", "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": "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": "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": "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": "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": "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": "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": "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": "Lifts", "sourceSystemKey": "StaticObjects", "value": "0"}], "children": [], "lat": 51.515721, "lon": -0.142084}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUOXC4", "modes": ["tube"], "icsCode": "1000173", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUOXC", "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": "940GZZLUOXC", "lineIdentifier": ["bakerloo"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["bakerloo"]}], "status": true, "id": "9400ZZLUOXC4", "commonName": "Oxford 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": "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": "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": "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": "WiFi", "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": "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": "Photo 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": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "3"}, {"$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"}], "children": [], "lat": 51.515697, "lon": -0.142244}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUOXC5", "modes": ["tube"], "icsCode": "1000173", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUOXC", "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": "940GZZLUOXC", "lineIdentifier": ["central"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["central"]}], "status": true, "id": "9400ZZLUOXC5", "commonName": "Oxford 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": "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": "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": "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": "Payphones", "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": "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": "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": "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": "14"}], "children": [], "lat": 51.515384, "lon": -0.141248}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUOXC6", "modes": ["tube"], "icsCode": "1000173", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUOXC", "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": "940GZZLUOXC", "lineIdentifier": ["victoria"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["victoria"]}], "status": true, "id": "9400ZZLUOXC6", "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": "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": "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": "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": "Waiting Room", "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": "Toilets", "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": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}], "children": [], "lat": 51.515794, "lon": -0.14211}], "lat": 51.515224, "lon": -0.141903}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "940GZZLUPAC", "modes": ["tube"], "icsCode": "1000174", "stopType": "NaptanMetroStation", "stationNaptan": "940GZZLUPAC", "hubNaptanCode": "HUBPAD", "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"}, {"$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": "940GZZLUPAC", "lineIdentifier": ["district", "circle"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "940GZZLUPAC", "lineIdentifier": ["bakerloo"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["district", "circle", "bakerloo"]}], "status": true, "id": "940GZZLUPAC", "commonName": "Paddington Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_752"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5711"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_4479"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_330"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_370"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_397"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5967"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5487"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_290"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5434"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5499"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5488"}, {"$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": "Payphones", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$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": "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": "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": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "TaxiRankOutsideStation", "sourceSystemKey": "LRAD", "value": "No"}, {"$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": "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": "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": "24"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, 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": "Paddington Underground Stations,London Underground Ltd.,Praed St,London,W2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_279"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_265"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.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": "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": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_186"}], "children": [{"$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": "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": "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": "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": "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": "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": "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": "Gates", "sourceSystemKey": "StaticObjects", "value": "24"}, {"$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": "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.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": "9400ZZLUPAC", "modes": ["tube"], "icsCode": "1000174", "stopType": "NaptanMetroAccessArea", "stationNaptan": "940GZZLUPAC", "hubNaptanCode": "HUBPAD", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "9400ZZLUPAC", "commonName": "Paddington 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": "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": "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": "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": "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": "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": "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": "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": "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": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}], "children": [], "lat": 51.516581, "lon": -0.175689}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUPAC1", "modes": ["tube"], "icsCode": "1000174", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUPAC", "hubNaptanCode": "HUBPAD", "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": "940GZZLUPAC", "lineIdentifier": ["bakerloo"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["bakerloo"]}], "status": true, "id": "9400ZZLUPAC1", "commonName": "Paddington Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$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": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$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": "Payphones", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$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": "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": "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": "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": "Gates", "sourceSystemKey": "StaticObjects", "value": "24"}, {"$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": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "0"}], "children": [], "lat": 51.516299, "lon": -0.17547}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUPAC2", "modes": ["tube"], "icsCode": "1000174", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUPAC", "hubNaptanCode": "HUBPAD", "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": "940GZZLUPAC", "lineIdentifier": ["bakerloo"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["bakerloo"]}], "status": true, "id": "9400ZZLUPAC2", "commonName": "Paddington Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$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": "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": "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": "4"}, {"$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": "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": "Ticket Halls", "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": "VisitorCentre", "key": "Location", "sourceSystemKey": "StaticObjects", "value": "Opposite Platform 1 Paddington Rail 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": "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"}], "children": [], "lat": 51.516345, "lon": -0.175526}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUPAC3", "modes": ["tube"], "icsCode": "1000174", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUPAC", "hubNaptanCode": "HUBPAD", "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": "940GZZLUPAC", "lineIdentifier": ["district", "circle"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["district", "circle"]}], "status": true, "id": "9400ZZLUPAC3", "commonName": "Paddington 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": "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": "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": "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": "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": "Gates", "sourceSystemKey": "StaticObjects", "value": "24"}, {"$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": "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": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$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": "Payphones", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "3"}], "children": [], "lat": 51.515383, "lon": -0.175521}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUPAC4", "modes": ["tube"], "icsCode": "1000174", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUPAC", "hubNaptanCode": "HUBPAD", "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": "940GZZLUPAC", "lineIdentifier": ["circle", "district"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["circle", "district"]}], "status": true, "id": "9400ZZLUPAC4", "commonName": "Paddington Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$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": "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": "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": "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": "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": "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": "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": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$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": "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": "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.515436, "lon": -0.175447}], "lat": 51.516581, "lon": -0.175689}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "940GZZLUPAH", "modes": ["tube"], "icsCode": "1000175", "stopType": "NaptanMetroStation", "stationNaptan": "940GZZLUPAH", "hubNaptanCode": "HUBPAD", "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": "940GZZLUPAH", "lineIdentifier": ["hammersmith-city"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "940GZZLUPAH", "lineIdentifier": ["circle", "hammersmith-city"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["hammersmith-city", "circle"]}], "status": true, "id": "940GZZLUPAH", "commonName": "Paddington (H&C Line)-Underground", "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": "LimitedCapacityLift", "sourceSystemKey": "LRAD", "value": "No"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_186"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_279"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_290"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_330"}, {"$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": "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_164"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_165"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5487"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5711"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5434"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5488"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_752"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_370"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_592"}, {"$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"}], "children": [{"$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": "9400ZZLUPAH", "modes": ["tube"], "icsCode": "1000175", "stopType": "NaptanMetroAccessArea", "stationNaptan": "940GZZLUPAH", "hubNaptanCode": "HUBPAD", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "9400ZZLUPAH", "commonName": "Paddington (H&C Line)-Underground", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.518187, "lon": -0.178306}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUPAH1", "modes": ["tube"], "icsCode": "1000175", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUPAH", "hubNaptanCode": "HUBPAD", "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": "940GZZLUPAH", "lineIdentifier": ["hammersmith-city", "circle"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["hammersmith-city", "circle"]}], "status": true, "id": "9400ZZLUPAH1", "commonName": "Paddington (H&C Line)-Underground", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.518201, "lon": -0.178623}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUPAH2", "modes": ["tube"], "icsCode": "1000175", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUPAH", "hubNaptanCode": "HUBPAD", "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": "940GZZLUPAH", "lineIdentifier": ["hammersmith-city"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["hammersmith-city"]}], "status": true, "id": "9400ZZLUPAH2", "commonName": "Paddington (H&C Line)-Underground", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.518163, "lon": -0.178523}], "lat": 51.518187, "lon": -0.178306}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "940GZZLUPCC", "modes": ["bus", "tube"], "icsCode": "1000179", "stopType": "NaptanMetroStation", "stationNaptan": "940GZZLUPCC", "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "940GZZLUPCC", "lineIdentifier": ["bakerloo"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490011515W", "stationAtcoCode": "490G00179D", "lineIdentifier": ["94", "n3", "139", "n109", "n15", "n113", "n136", "453", "n18", "12", "159", "88"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "940GZZLUPCC", "lineIdentifier": ["piccadilly"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490000179B", "stationAtcoCode": "490G00179B", "lineIdentifier": ["n38", "n97", "n19", "n9", "14", "38", "9", "19", "23"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490000179F", "stationAtcoCode": "490G00179D", "lineIdentifier": ["n113", "n136", "n18", "159", "88", "12", "453", "139", "n3", "n109", "94", "n15"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490000179S", "stationAtcoCode": "490G00179B", "lineIdentifier": ["n38", "n97", "14", "n19", "9", "38", "n9", "19", "23"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["bakerloo", "piccadilly"]}, {"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "bus", "lineIdentifier": ["94", "n3", "139", "n109", "n15", "n113", "n136", "453", "n18", "12", "159", "88", "n38", "n97", "n19", "n9", "14", "38", "9", "19", "23"]}], "status": true, "id": "940GZZLUPCC", "commonName": "Piccadilly Circus 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": "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": "VisitorCentre", "key": "Location", "sourceSystemKey": "StaticObjects", "value": "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": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$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": "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": "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": "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": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_83"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_129"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_160"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_192"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_226"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_228"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_233"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_260"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_318"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_325"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_383"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_386"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5596"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5016"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5510"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5670"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5191"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5468"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5364"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5325"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5671"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5809"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5737"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5778"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_4978"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5799"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5594"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5432"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5686"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_4182"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5855"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5090"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5481"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5853"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5779"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5317"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5867"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5363"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5017"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5509"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5715"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5854"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5856"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5758"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5572"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5687"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5065"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5800"}], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490G00179B", "modes": ["bus"], "icsCode": "1000179", "stopType": "NaptanOnstreetBusCoachStopCluster", "stationNaptan": "490G00179B", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490G00179B", "commonName": "Piccadilly Circus", "placeType": "StopPoint", "additionalProperties": [], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000179B", "indicator": "Stop B", "stopLetter": "B", "modes": ["bus"], "icsCode": "1000179", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00179B", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000179B", "commonName": "Piccadilly Circus", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.509305, "lon": -0.136235}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000179S", "indicator": "Stop S", "stopLetter": "S", "modes": ["bus"], "icsCode": "1000179", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00179B", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000179S", "commonName": "Piccadilly Circus", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.509153, "lon": -0.13627}], "lat": 51.509305, "lon": -0.136235}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490G00179C", "modes": ["bus"], "icsCode": "1000179", "stopType": "NaptanOnstreetBusCoachStopCluster", "stationNaptan": "940GZZLUPCC", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490G00179C", "commonName": "Piccadilly Circus", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.51005, "lon": -0.133798}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490G00179D", "modes": ["bus"], "icsCode": "1000179", "stopType": "NaptanOnstreetBusCoachStopCluster", "stationNaptan": "490G00179D", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490G00179D", "commonName": "Piccadilly Circus", "placeType": "StopPoint", "additionalProperties": [], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000179F", "indicator": "Stop F", "stopLetter": "F", "modes": ["bus"], "icsCode": "1000179", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00179D", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000179F", "commonName": "Piccadilly Circus", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.509963, "lon": -0.136886}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490011515W", "indicator": "Stop E", "stopLetter": "E", "modes": ["bus"], "icsCode": "1000179", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00179D", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490011515W", "commonName": "Piccadilly Circus", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.50988, "lon": -0.13735}], "lat": 51.50988, "lon": -0.13735}, {"$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": "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": "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": "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": "Help 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"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.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": "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": "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"}], "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": "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"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.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"}], "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": "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"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "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"}], "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": "9400ZZLUPCC", "modes": ["tube"], "icsCode": "1000179", "stopType": "NaptanMetroAccessArea", "stationNaptan": "940GZZLUPCC", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "9400ZZLUPCC", "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": "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": "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": "Help Points", "sourceSystemKey": "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": "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": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "16"}, {"$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": "Car park", "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"}], "children": [], "lat": 51.51005, "lon": -0.133798}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUPCC1", "modes": ["tube"], "icsCode": "1000179", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUPCC", "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": "940GZZLUPCC", "lineIdentifier": ["bakerloo"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["bakerloo"]}], "status": true, "id": "9400ZZLUPCC1", "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": "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": "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": "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": "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": "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": "Cash Machines", "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": "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": "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"}], "children": [], "lat": 51.510083, "lon": -0.135281}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUPCC2", "modes": ["tube"], "icsCode": "1000179", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUPCC", "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": "940GZZLUPCC", "lineIdentifier": ["bakerloo"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["bakerloo"]}], "status": true, "id": "9400ZZLUPCC2", "commonName": "Piccadilly Circus 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": "Photo 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": "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": "Lifts", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$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": "Help 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": "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"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.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": "Gates", "sourceSystemKey": "StaticObjects", "value": "16"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "6"}], "children": [], "lat": 51.510117, "lon": -0.135179}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUPCC3", "modes": ["tube"], "icsCode": "1000179", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUPCC", "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": "940GZZLUPCC", "lineIdentifier": ["piccadilly"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["piccadilly"]}], "status": true, "id": "9400ZZLUPCC3", "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": "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": "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": "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": "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": "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": "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": "Help 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": "Underground Station"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "no"}], "children": [], "lat": 51.509439, "lon": -0.135495}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUPCC4", "modes": ["tube"], "icsCode": "1000179", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUPCC", "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": "940GZZLUPCC", "lineIdentifier": ["piccadilly"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["piccadilly"]}], "status": true, "id": "9400ZZLUPCC4", "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": "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": "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": "Piccadilly Circus Station,London Underground Ltd.,Piccadilly Circus,London,W1J 9HP"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help 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": "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": "Cash Machines", "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": "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": "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": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}], "children": [], "lat": 51.509592, "lon": -0.134926}], "lat": 51.51005, "lon": -0.133798}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "940GZZLUPCO", "modes": ["tube", "bus"], "icsCode": "1000180", "stopType": "NaptanMetroStation", "stationNaptan": "940GZZLUPCO", "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": "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": "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": "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"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "940GZZLUPCO", "lineIdentifier": ["victoria"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490000180D", "stationAtcoCode": "490G00180A", "lineIdentifier": ["n2", "n136", "185", "2", "36"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490000180J", "stationAtcoCode": "490G00180H", "lineIdentifier": ["360", "c10"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490000180A", "stationAtcoCode": "490G00180A", "lineIdentifier": ["2", "36", "185", "n2", "n136"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490000180H", "stationAtcoCode": "490G00180H", "lineIdentifier": ["360", "c10"]}], "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": "bus", "lineIdentifier": ["n2", "n136", "185", "2", "36", "360", "c10"]}], "status": true, "id": "940GZZLUPCO", "commonName": "Pimlico 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": "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": "4 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": "Lifts", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$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": "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."}, {"$type": "Tfl.Api.Presentation.Entities.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": "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": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_146"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_148"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_185"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_190"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_243"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_267"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_294"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5495"}], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490G00180A", "modes": ["bus"], "icsCode": "1000180", "stopType": "NaptanOnstreetBusCoachStopCluster", "stationNaptan": "490G00180A", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490G00180A", "commonName": "Pimlico Station", "placeType": "StopPoint", "additionalProperties": [], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000180A", "indicator": "Stop A", "stopLetter": "A", "modes": ["bus"], "icsCode": "1000180", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00180A", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000180A", "commonName": "Pimlico Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.489982, "lon": -0.132414}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000180D", "indicator": "Stop D", "stopLetter": "D", "modes": ["bus"], "icsCode": "1000180", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00180A", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000180D", "commonName": "Pimlico Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.490388, "lon": -0.133074}], "lat": 51.490388, "lon": -0.133074}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490G00180H", "modes": ["bus"], "icsCode": "1000180", "stopType": "NaptanOnstreetBusCoachStopCluster", "stationNaptan": "490G00180H", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490G00180H", "commonName": "Pimlico Station", "placeType": "StopPoint", "additionalProperties": [], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000180H", "indicator": "Stop H", "stopLetter": "H", "modes": ["bus"], "icsCode": "1000180", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00180H", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000180H", "commonName": "Pimlico Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.489143, "lon": -0.133341}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000180J", "indicator": "Stop J", "stopLetter": "J", "modes": ["bus"], "icsCode": "1000180", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00180H", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000180J", "commonName": "Pimlico Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.488954, "lon": -0.13332}], "lat": 51.488954, "lon": -0.13332}, {"$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": "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": "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": "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": "Bridge", "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": "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": "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": "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"}, {"$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"}], "children": [], "lat": 51.489293, "lon": -0.133724}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUPCO", "modes": ["tube"], "icsCode": "1000180", "stopType": "NaptanMetroAccessArea", "stationNaptan": "940GZZLUPCO", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "9400ZZLUPCO", "commonName": "Pimlico 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": "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": "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": "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": "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": "Pimlico Station,London Underground Ltd.,Bessborough St,London,SW1V 2JA"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.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": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "7"}], "children": [], "lat": 51.489097, "lon": -0.133761}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUPCO1", "modes": ["tube"], "icsCode": "1000180", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUPCO", "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": "940GZZLUPCO", "lineIdentifier": ["victoria"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["victoria"]}], "status": true, "id": "9400ZZLUPCO1", "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": "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, 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": "Ticket Halls", "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": "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": "Gates", "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": "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": "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": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}], "children": [], "lat": 51.489219, "lon": -0.134044}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUPCO2", "modes": ["tube"], "icsCode": "1000180", "stopType": "NaptanRailAccessArea", "stationNaptan": "940GZZLUPCO", "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": "940GZZLUPCO", "lineIdentifier": ["victoria"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["victoria"]}], "status": true, "id": "9400ZZLUPCO2", "commonName": "Pimlico Station", "placeType": "StopPoint", "additionalProperties": [{"$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": "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": "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": "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": "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": "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": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}], "children": [], "lat": 51.489219, "lon": -0.134044}], "lat": 51.489097, "lon": -0.133761}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "940GZZLUPKR", "modes": ["bus", "tube"], "icsCode": "1000176", "stopType": "NaptanMetroStation", "stationNaptan": "940GZZLUPKR", "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": "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": "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": "226", "name": "226", "uri": "/Line/226", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "940GZZLUPKR", "lineIdentifier": ["piccadilly"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490000176L", "stationAtcoCode": "490G00176L", "lineIdentifier": ["95", "487"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490007599W", "stationAtcoCode": "490G00176L", "lineIdentifier": ["226"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490000176M", "stationAtcoCode": "490G00176L", "lineIdentifier": ["95", "487"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490007599E", "stationAtcoCode": "490G00176L", "lineIdentifier": ["226"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["piccadilly"]}, {"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "bus", "lineIdentifier": ["95", "487", "226"]}], "status": true, "id": "940GZZLUPKR", "commonName": "Park Royal 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": "Payphones", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$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": "Facility", "key": "Other Facilities", "sourceSystemKey": "StaticObjects", "value": "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": "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": "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": "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"}], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490G00176L", "modes": ["bus"], "icsCode": "1000176", "stopType": "NaptanOnstreetBusCoachStopCluster", "stationNaptan": "490G00176L", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490G00176L", "commonName": "Park Royal Station", "placeType": "StopPoint", "additionalProperties": [], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000176L", "indicator": "Stop L", "stopLetter": "L", "modes": ["bus"], "icsCode": "1000176", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00176L", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000176L", "commonName": "Park Royal Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.527183, "lon": -0.283589}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000176M", "indicator": "Stop M", "stopLetter": "M", "modes": ["bus"], "icsCode": "1000176", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00176L", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000176M", "commonName": "Park Royal Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.527121, "lon": -0.284269}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490007599E", "indicator": "Stop H", "stopLetter": "H", "modes": ["bus"], "icsCode": "1000176", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00176L", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490007599E", "commonName": "Park Royal Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.528963, "lon": -0.281735}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490007599W", "indicator": "Stop S", "stopLetter": "S", "modes": ["bus"], "icsCode": "1000176", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00176L", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490007599W", "commonName": "Park Royal Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.528876, "lon": -0.281911}], "lat": 51.527183, "lon": -0.283589}, {"$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": "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": "3"}, {"$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": "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": "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": "Help Points", "sourceSystemKey": "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": "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": "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"}], "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": "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"}, {"$type": "Tfl.Api.Presentation.Entities.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"}], "children": [], "lat": 51.52709, "lon": -0.284645}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUPKR", "modes": ["tube"], "icsCode": "1000176", "stopType": "NaptanMetroAccessArea", "stationNaptan": "940GZZLUPKR", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "9400ZZLUPKR", "commonName": "Park Royal 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": "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": "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": "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"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.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": "Help Points", "sourceSystemKey": "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": "Toilets", "sourceSystemKey": "StaticObjects", "value": "yes"}], "children": [], "lat": 51.527123, "lon": -0.284341}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUPKR1", "modes": ["tube"], "icsCode": "1000176", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUPKR", "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": "940GZZLUPKR", "lineIdentifier": ["piccadilly"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["piccadilly"]}], "status": true, "id": "9400ZZLUPKR1", "commonName": "Park Royal Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$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": "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": "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"}, {"$type": "Tfl.Api.Presentation.Entities.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": "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": "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": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}], "children": [], "lat": 51.526598, "lon": -0.284058}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUPKR2", "modes": ["tube"], "icsCode": "1000176", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUPKR", "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": "940GZZLUPKR", "lineIdentifier": ["piccadilly"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["piccadilly"]}], "status": true, "id": "9400ZZLUPKR2", "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": "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": "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": "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": "Photo Booths", "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": "Help 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": "Gates", "sourceSystemKey": "StaticObjects", "value": "3"}], "children": [], "lat": 51.526525, "lon": -0.284032}], "lat": 51.527123, "lon": -0.284341}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "940GZZLUPLW", "modes": ["bus", "tube"], "icsCode": "1000182", "stopType": "NaptanMetroStation", "stationNaptan": "940GZZLUPLW", "lines": [{"$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": "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": "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": "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": "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": "490000182B", "stationAtcoCode": "490G00182A", "lineIdentifier": ["69", "473", "241", "262"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "940GZZLUPLW", "lineIdentifier": ["district", "hammersmith-city"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490000182A", "stationAtcoCode": "490G00182A", "lineIdentifier": ["241", "69", "473", "262"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "bus", "lineIdentifier": ["69", "473", "241", "262"]}, {"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["district", "hammersmith-city"]}], "status": true, "id": "940GZZLUPLW", "commonName": "Plaistow Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$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": "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": "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": "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": "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": "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": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5505"}], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490G00182A", "modes": ["bus"], "icsCode": "1000182", "stopType": "NaptanOnstreetBusCoachStopCluster", "stationNaptan": "490G00182A", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490G00182A", "commonName": "Plaistow Station", "placeType": "StopPoint", "additionalProperties": [], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000182A", "indicator": "Stop A", "stopLetter": "A", "modes": ["bus"], "icsCode": "1000182", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00182A", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000182A", "commonName": "Plaistow Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.531253, "lon": 0.018255}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000182B", "indicator": "Stop B", "stopLetter": "B", "modes": ["bus"], "icsCode": "1000182", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00182A", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000182B", "commonName": "Plaistow Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.531866, "lon": 0.017143}], "lat": 51.531253, "lon": 0.018255}, {"$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": "9400ZZLUPLW", "modes": ["tube"], "icsCode": "1000182", "stopType": "NaptanMetroAccessArea", "stationNaptan": "940GZZLUPLW", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "9400ZZLUPLW", "commonName": "Plaistow 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": "Help Points", "sourceSystemKey": "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": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$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": "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"}, {"$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": "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": "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": "Toilets", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "0"}], "children": [], "lat": 51.531341, "lon": 0.017451}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUPLW1", "modes": ["tube"], "icsCode": "1000182", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUPLW", "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": "940GZZLUPLW", "lineIdentifier": ["district", "hammersmith-city"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["district", "hammersmith-city"]}], "status": true, "id": "9400ZZLUPLW1", "commonName": "Plaistow 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": "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": "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": "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": "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": "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": "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"}], "children": [], "lat": 51.531182, "lon": 0.016767}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUPLW2", "modes": ["tube"], "icsCode": "1000182", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUPLW", "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": "940GZZLUPLW", "lineIdentifier": ["district", "hammersmith-city"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["district", "hammersmith-city"]}], "status": true, "id": "9400ZZLUPLW2", "commonName": "Plaistow 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": "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": "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, taxi ranks outside station."}, {"$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": "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": "Plaistow Station,London Underground Ltd.,Plaistow Rd,London,E15"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.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": "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": "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": "2"}], "children": [], "lat": 51.531198, "lon": 0.016854}], "lat": 51.531341, "lon": 0.017451}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "940GZZLUPNR", "modes": ["bus", "tube"], "icsCode": "1000181", "stopType": "NaptanMetroStation", "stationNaptan": "940GZZLUPNR", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "h11", "name": "H11", "uri": "/Line/h11", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "h13", "name": "H13", "uri": "/Line/h13", "type": "Line", "crowding": {"$type": "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": "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": "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", "naptanIdReference": "490000181B", "stationAtcoCode": "490G00181B", "lineIdentifier": ["h11", "h13", "h12", "183"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490015522C", "stationAtcoCode": "490G00181B", "lineIdentifier": ["h11", "183", "h13", "h12"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490015522E", "stationAtcoCode": "490G00181B", "lineIdentifier": ["183"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "940GZZLUPNR", "lineIdentifier": ["metropolitan"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "bus", "lineIdentifier": ["h11", "h13", "h12", "183"]}, {"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["metropolitan"]}], "status": true, "id": "940GZZLUPNR", "commonName": "Pinner 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": "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": "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": "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": "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": "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": "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": "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": "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": "Pinner Station,London Underground Ltd.,Station Approach,Pinner,Middx,HA5 5LZ"}], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490G00181B", "modes": ["bus"], "stopType": "NaptanOnstreetBusCoachStopCluster", "stationNaptan": "490G00181B", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490G00181B", "commonName": "Pinner Station", "placeType": "StopPoint", "additionalProperties": [], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000181B", "indicator": "Stop B", "stopLetter": "B", "modes": ["bus"], "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00181B", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000181B", "commonName": "Pinner Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.592391, "lon": -0.382074}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490015522C", "indicator": "Stop C", "stopLetter": "C", "modes": ["bus"], "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00181B", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490015522C", "commonName": "Pinner Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.594339, "lon": -0.382496}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490015522E", "indicator": "Stand Z1", "stopLetter": "Z1", "modes": ["bus"], "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00181B", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490015522E", "commonName": "Pinner Station / Bridge Street", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.594382, "lon": -0.383}], "lat": 51.594339, "lon": -0.382496}, {"$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": "9400ZZLUPNR", "modes": ["tube"], "icsCode": "1000181", "stopType": "NaptanMetroAccessArea", "stationNaptan": "940GZZLUPNR", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "9400ZZLUPNR", "commonName": "Pinner 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": "Geo", "key": "Zone", "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": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$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": "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": "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": "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": "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": "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.592901, "lon": -0.381161}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUPNR1", "modes": ["tube"], "icsCode": "1000181", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUPNR", "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": "940GZZLUPNR", "lineIdentifier": ["metropolitan"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["metropolitan"]}], "status": true, "id": "9400ZZLUPNR1", "commonName": "Pinner 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": "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": "0"}, {"$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": "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": "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": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "5"}, {"$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": "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"}], "children": [], "lat": 51.59275, "lon": -0.381268}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUPNR2", "modes": ["tube"], "icsCode": "1000181", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUPNR", "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": "940GZZLUPNR", "lineIdentifier": ["metropolitan"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["metropolitan"]}], "status": true, "id": "9400ZZLUPNR2", "commonName": "Pinner Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$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": "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": "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": "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": "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": "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": "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": "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": "Payphones", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Car park", "sourceSystemKey": "StaticObjects", "value": "yes"}], "children": [], "lat": 51.592704, "lon": -0.381183}], "lat": 51.592901, "lon": -0.381161}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "940GZZLUPRD", "modes": ["tube", "bus"], "icsCode": "1000183", "stopType": "NaptanMetroStation", "stationNaptan": "940GZZLUPRD", "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": "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": "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": "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", "naptanIdReference": "490000183A", "stationAtcoCode": "490G00183B", "lineIdentifier": ["223", "204", "79"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "940GZZLUPRD", "lineIdentifier": ["metropolitan"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490000183B", "stationAtcoCode": "490G00183B", "lineIdentifier": ["79", "204", "223"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "bus", "lineIdentifier": ["223", "204", "79"]}, {"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["metropolitan"]}], "status": true, "id": "940GZZLUPRD", "commonName": "Preston 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": "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": "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": "Toilets", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$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": "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": "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": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "4"}], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490G00183B", "modes": ["bus"], "icsCode": "1000183", "stopType": "NaptanOnstreetBusCoachStopCluster", "stationNaptan": "490G00183B", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490G00183B", "commonName": "Preston Road Station", "placeType": "StopPoint", "additionalProperties": [], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000183A", "indicator": "Stop PA", "stopLetter": "PA", "modes": ["bus"], "icsCode": "1000183", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00183B", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000183A", "commonName": "Preston Road Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.572362, "lon": -0.294804}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000183B", "indicator": "Stop PB", "stopLetter": "PB", "modes": ["bus"], "icsCode": "1000183", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00183B", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000183B", "commonName": "Preston Road Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.571892, "lon": -0.294677}], "lat": 51.571892, "lon": -0.294677}, {"$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": "9400ZZLUPRD", "modes": ["tube"], "icsCode": "1000183", "stopType": "NaptanMetroAccessArea", "stationNaptan": "940GZZLUPRD", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "9400ZZLUPRD", "commonName": "Preston Road 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": "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": "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": "Preston Road Station,London Underground Ltd.,Preston Rd,Wembley,Middx,HA3 0PS"}, {"$type": "Tfl.Api.Presentation.Entities.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": "Help Points", "sourceSystemKey": "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"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.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"}], "children": [], "lat": 51.571972, "lon": -0.295107}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUPRD1", "modes": ["tube"], "icsCode": "1000183", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUPRD", "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": "940GZZLUPRD", "lineIdentifier": ["metropolitan"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["metropolitan"]}], "status": true, "id": "9400ZZLUPRD1", "commonName": "Preston 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": "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": "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": "Preston Road Station,London Underground Ltd.,Preston Rd,Wembley,Middx,HA3 0PS"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.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": "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": "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": "Car park", "sourceSystemKey": "StaticObjects", "value": "no"}], "children": [], "lat": 51.572024, "lon": -0.295581}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUPRD2", "modes": ["tube"], "icsCode": "1000183", "stopType": "NaptanRailAccessArea", "stationNaptan": "940GZZLUPRD", "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": "940GZZLUPRD", "lineIdentifier": ["metropolitan"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["metropolitan"]}], "status": true, "id": "9400ZZLUPRD2", "commonName": "Preston Road 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": "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": "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": "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"}, {"$type": "Tfl.Api.Presentation.Entities.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": "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": "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.572024, "lon": -0.295581}], "lat": 51.571972, "lon": -0.295107}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "940GZZLUPSG", "modes": ["tube"], "icsCode": "1000177", "stopType": "NaptanMetroStation", "stationNaptan": "940GZZLUPSG", "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": "940GZZLUPSG", "lineIdentifier": ["district"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["district"]}], "status": true, "id": "940GZZLUPSG", "commonName": "Parsons Green 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": "Help Points", "sourceSystemKey": "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": "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": "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": "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": "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": "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"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_596"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_619"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_671"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_727"}], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490G00177S", "modes": ["bus"], "icsCode": "1000177", "stopType": "NaptanOnstreetBusCoachStopCluster", "stationNaptan": "940GZZLUPSG", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490G00177S", "commonName": "Parsons Green", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.475277, "lon": -0.20117}, {"$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": "Help Points", "sourceSystemKey": "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"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, 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"}], "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": "Facility", "key": "Payphones", "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": "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": "9400ZZLUPSG", "modes": ["tube"], "icsCode": "1000177", "stopType": "NaptanMetroAccessArea", "stationNaptan": "940GZZLUPSG", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "9400ZZLUPSG", "commonName": "Parsons 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": "Help Points", "sourceSystemKey": "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": "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"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.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": "canopies over platform (part), taxi ranks outside 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": "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": "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": "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": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}], "children": [], "lat": 51.475277, "lon": -0.20117}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUPSG1", "modes": ["tube"], "icsCode": "1000177", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUPSG", "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": "940GZZLUPSG", "lineIdentifier": ["district"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["district"]}], "status": true, "id": "9400ZZLUPSG1", "commonName": "Parsons Green 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": "canopies over platform (part), taxi ranks outside station."}, {"$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": "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": "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": "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": "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"}], "children": [], "lat": 51.475104, "lon": -0.201637}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUPSG2", "modes": ["tube"], "icsCode": "1000177", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUPSG", "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": "940GZZLUPSG", "lineIdentifier": ["district"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["district"]}], "status": true, "id": "9400ZZLUPSG2", "commonName": "Parsons 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": "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": "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": "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": "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": "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": "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": "Euro Cash Machines", "sourceSystemKey": "StaticObjects", "value": "yes"}], "children": [], "lat": 51.475157, "lon": -0.201534}], "lat": 51.475277, "lon": -0.20117}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "940GZZLUPVL", "modes": ["tube", "bus"], "icsCode": "1000178", "stopType": "NaptanMetroStation", "stationNaptan": "940GZZLUPVL", "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": "297", "name": "297", "uri": "/Line/297", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "940GZZLUPVL", "lineIdentifier": ["central"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490000178A", "stationAtcoCode": "490G00178B", "lineIdentifier": ["297"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490000178B", "stationAtcoCode": "490G00178B", "lineIdentifier": ["297"]}], "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": "bus", "lineIdentifier": ["297"]}], "status": true, "id": "940GZZLUPVL", "commonName": "Perivale 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": "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": "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": "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": "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": "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": "Payphones", "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": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "CarParks_800456"}], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490G00178B", "modes": ["bus"], "icsCode": "1000178", "stopType": "NaptanOnstreetBusCoachStopCluster", "stationNaptan": "490G00178B", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490G00178B", "commonName": "Perivale Station", "placeType": "StopPoint", "additionalProperties": [], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000178A", "indicator": "Stop PF", "stopLetter": "PF", "modes": ["bus"], "icsCode": "1000178", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00178B", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000178A", "commonName": "Perivale Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.537074, "lon": -0.323995}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000178B", "indicator": "Stop G", "stopLetter": "G", "modes": ["bus"], "icsCode": "1000178", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00178B", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000178B", "commonName": "Perivale Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.536565, "lon": -0.32423}], "lat": 51.536565, "lon": -0.32423}, {"$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": "9400ZZLUPVL", "modes": ["tube"], "icsCode": "1000178", "stopType": "NaptanMetroAccessArea", "stationNaptan": "940GZZLUPVL", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "9400ZZLUPVL", "commonName": "Perivale 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": "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"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.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": "Perivale Station,London Underground Ltd.,Horsenden Lane,Greenford,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": "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": "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": "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.536717, "lon": -0.323446}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUPVL1", "modes": ["tube"], "icsCode": "1000178", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUPVL", "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": "940GZZLUPVL", "lineIdentifier": ["central"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["central"]}], "status": true, "id": "9400ZZLUPVL1", "commonName": "Perivale 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": "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": "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": "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 (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": "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": "Perivale Station,London Underground Ltd.,Horsenden Lane,Greenford,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": "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.536672, "lon": -0.322799}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUPVL2", "modes": ["tube"], "icsCode": "1000178", "stopType": "NaptanRailAccessArea", "stationNaptan": "940GZZLUPVL", "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": "940GZZLUPVL", "lineIdentifier": ["central"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["central"]}], "status": true, "id": "9400ZZLUPVL2", "commonName": "Perivale", "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, 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"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.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": "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": "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": "yes"}, {"$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": "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": "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.536663, "lon": -0.322785}], "lat": 51.536717, "lon": -0.323446}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "940GZZLUPYB", "modes": ["bus", "tube"], "icsCode": "1000184", "stopType": "NaptanMetroStation", "stationNaptan": "940GZZLUPYB", "lines": [{"$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": "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": "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": "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": "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": "414", "name": "414", "uri": "/Line/414", "type": "Line", "crowding": {"$type": "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": "490000184Z", "stationAtcoCode": "490G00184X", "lineIdentifier": ["39", "270", "85", "93"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "940GZZLUPYB", "lineIdentifier": ["district"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490000184Y", "stationAtcoCode": "490G00184X", "lineIdentifier": ["265", "414"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490007281E", "stationAtcoCode": "490G07281E", "lineIdentifier": ["85", "414", "270", "93", "39", "265"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "bus", "lineIdentifier": ["39", "270", "85", "93", "265", "414"]}, {"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["district"]}], "status": true, "id": "940GZZLUPYB", "commonName": "Putney Bridge 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": "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": "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": "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": "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": "Putney Bridge Station,London Underground Ltd.,Station Approach,London,SW6 3UH"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.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 (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": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_607"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_617"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_765"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_774"}], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490G00184X", "modes": ["bus"], "icsCode": "1000184", "stopType": "NaptanOnstreetBusCoachStopCluster", "stationNaptan": "490G00184X", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490G00184X", "commonName": "Putney Bridge Station", "placeType": "StopPoint", "additionalProperties": [], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000184N", "indicator": "Stop", "modes": ["bus"], "icsCode": "1000184", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00184X", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000184N", "commonName": "Putney Bridge Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.468385, "lon": -0.209259}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000184X", "indicator": "Stop FA", "stopLetter": "FA", "modes": ["bus"], "icsCode": "1000184", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00184X", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000184X", "commonName": "Putney Bridge Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.468042, "lon": -0.209186}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000184Y", "indicator": "Stop FB", "stopLetter": "FB", "modes": ["bus"], "icsCode": "1000184", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00184X", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000184Y", "commonName": "Putney Bridge Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.468166, "lon": -0.209022}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000184Z", "indicator": "Stop FC", "stopLetter": "FC", "modes": ["bus"], "icsCode": "1000184", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00184X", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000184Z", "commonName": "Putney Bridge Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.467918, "lon": -0.209306}], "lat": 51.468385, "lon": -0.209259}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490G07281E", "modes": ["bus"], "icsCode": "1000184", "stopType": "NaptanOnstreetBusCoachStopCluster", "stationNaptan": "490G07281E", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490G07281E", "commonName": "Putney Bridge Station", "placeType": "StopPoint", "additionalProperties": [], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490007281E", "indicator": "Stop AP", "stopLetter": "AP", "modes": ["bus"], "icsCode": "1000184", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G07281E", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490007281E", "commonName": "Putney Bridge Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.468453, "lon": -0.210782}], "lat": 51.468453, "lon": -0.210782}, {"$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": "9400ZZLUPYB", "modes": ["tube"], "icsCode": "1000184", "stopType": "NaptanMetroAccessArea", "stationNaptan": "940GZZLUPYB", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "9400ZZLUPYB", "commonName": "Putney Bridge 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": "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": "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": "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": "Bridge", "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": "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": "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": "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.468262, "lon": -0.208731}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUPYB1", "modes": ["tube"], "icsCode": "1000184", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUPYB", "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": "940GZZLUPYB", "lineIdentifier": ["district"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["district"]}], "status": true, "id": "9400ZZLUPYB1", "commonName": "Putney Bridge Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$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": "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": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.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": "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": "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": "4"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "no"}], "children": [], "lat": 51.468299, "lon": -0.208816}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUPYB2", "modes": ["tube"], "icsCode": "1000184", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUPYB", "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": "940GZZLUPYB", "lineIdentifier": ["district"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["district"]}], "status": true, "id": "9400ZZLUPYB2", "commonName": "Putney Bridge 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": "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": "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": "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": "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": "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": "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": "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": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}], "children": [], "lat": 51.468298, "lon": -0.208787}], "lat": 51.468262, "lon": -0.208731}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "940GZZLUQBY", "modes": ["tube", "bus"], "icsCode": "1000185", "stopType": "NaptanMetroStation", "stationNaptan": "940GZZLUQBY", "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": "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": "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": "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": "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": "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": "688", "name": "688", "uri": "/Line/688", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "940GZZLUQBY", "lineIdentifier": ["jubilee"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490000185AA", "stationAtcoCode": "490G00185BB", "lineIdentifier": ["n98", "288", "114", "79", "606"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490000185BB", "stationAtcoCode": "490G00185BB", "lineIdentifier": ["n98", "114", "79", "288", "688", "606"]}], "lineModeGroups": [{"$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": ["n98", "288", "114", "79", "606", "688"]}], "status": true, "id": "940GZZLUQBY", "commonName": "Queensbury 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": "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": "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": "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": "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": "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": "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": "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": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5831"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "CarParks_800486"}], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490G00185BB", "modes": ["bus"], "icsCode": "1000185", "stopType": "NaptanOnstreetBusCoachStopCluster", "stationNaptan": "490G00185BB", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490G00185BB", "commonName": "Queensbury Station", "placeType": "StopPoint", "additionalProperties": [], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000185AA", "indicator": "Stop AA", "stopLetter": "AA", "modes": ["bus"], "icsCode": "1000185", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00185BB", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000185AA", "commonName": "Queensbury Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.594454, "lon": -0.285444}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000185BB", "indicator": "Stop BB", "stopLetter": "BB", "modes": ["bus"], "icsCode": "1000185", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00185BB", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000185BB", "commonName": "Queensbury Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.594736, "lon": -0.285043}], "lat": 51.594736, "lon": -0.285043}, {"$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": "9400ZZLUQBY", "modes": ["tube"], "icsCode": "1000185", "stopType": "NaptanMetroAccessArea", "stationNaptan": "940GZZLUQBY", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "9400ZZLUQBY", "commonName": "Queensbury 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": "Lifts", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$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": "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": "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": "Help Points", "sourceSystemKey": "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": "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": "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.594188, "lon": -0.286219}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUQBY1", "modes": ["tube"], "icsCode": "1000185", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUQBY", "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": "940GZZLUQBY", "lineIdentifier": ["jubilee"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["jubilee"]}], "status": true, "id": "9400ZZLUQBY1", "commonName": "Queensbury 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": "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": "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": "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": "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": "yes (male, female, disabled/baby-changing facilities)"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "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": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "4"}], "children": [], "lat": 51.59413, "lon": -0.285947}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUQBY2", "modes": ["tube"], "icsCode": "1000185", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUQBY", "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": "940GZZLUQBY", "lineIdentifier": ["jubilee"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["jubilee"]}], "status": true, "id": "9400ZZLUQBY2", "commonName": "Queensbury 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": "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": "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": "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": "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": "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": "Queensbury Station,London Underground Ltd.,Cumberland Rd,Harrow,Middx,HA8 5NP"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}], "children": [], "lat": 51.594103, "lon": -0.28589}], "lat": 51.594188, "lon": -0.286219}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "940GZZLUQPS", "modes": ["tube"], "icsCode": "1000186", "stopType": "NaptanMetroStation", "stationNaptan": "940GZZLUQPS", "hubNaptanCode": "HUBQPW", "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": "940GZZLUQPS", "lineIdentifier": ["bakerloo"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["bakerloo"]}], "status": true, "id": "940GZZLUQPS", "commonName": "Queen's 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": "Lifts", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$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": "Ticket Halls", "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": "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": "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": "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": "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": "8"}, {"$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": "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"}], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUQPS", "modes": ["tube"], "icsCode": "1000186", "stopType": "NaptanMetroAccessArea", "stationNaptan": "940GZZLUQPS", "hubNaptanCode": "HUBQPW", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "9400ZZLUQPS", "commonName": "Queen'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": "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": "Photo 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": "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": "Gates", "sourceSystemKey": "StaticObjects", "value": "8"}, {"$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": "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": "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": "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": "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": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}], "children": [], "lat": 51.534158, "lon": -0.204574}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUQPS1", "modes": ["tube"], "icsCode": "1000186", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUQPS", "hubNaptanCode": "HUBQPW", "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": "940GZZLUQPS", "lineIdentifier": ["bakerloo"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["bakerloo"]}], "status": true, "id": "9400ZZLUQPS1", "commonName": "Queen's Park Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$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": "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": "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": "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": "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": "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": "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": "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": "Toilets", "sourceSystemKey": "StaticObjects", "value": "no"}], "children": [], "lat": 51.53416, "lon": -0.205309}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUQPS2", "modes": ["tube"], "icsCode": "1000186", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUQPS", "hubNaptanCode": "HUBQPW", "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": "940GZZLUQPS", "lineIdentifier": ["bakerloo"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["bakerloo"]}], "status": true, "id": "9400ZZLUQPS2", "commonName": "Queen's Park 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": "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": "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"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.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": "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": "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": "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": "Facility", "key": "Toilets", "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.534177, "lon": -0.205222}], "lat": 51.534158, "lon": -0.204574}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "940GZZLUQWY", "modes": ["tube", "bus"], "icsCode": "1000187", "stopType": "NaptanMetroStation", "stationNaptan": "940GZZLUQWY", "lines": [{"$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": "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": "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": "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": "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", "naptanIdReference": "490000187C", "stationAtcoCode": "490G00187B", "lineIdentifier": ["n207", "148", "94"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490000187B", "stationAtcoCode": "490G00187B", "lineIdentifier": ["70"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "940GZZLUQWY", "lineIdentifier": ["central"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490000187A", "stationAtcoCode": "490G00187B", "lineIdentifier": ["148", "n207", "70", "94"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "bus", "lineIdentifier": ["n207", "148", "94", "70"]}, {"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["central"]}], "status": true, "id": "940GZZLUQWY", "commonName": "Queensway 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": "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": "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"}, {"$type": "Tfl.Api.Presentation.Entities.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": "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": "Help Points", "sourceSystemKey": "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": "Queensway Station,London Underground Ltd.,Bayswater Rd,London,W2 4SS"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.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": "BikePoints_224"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_261"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_307"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_333"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_584"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5653"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5859"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_4213"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5975"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5036"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_4529"}], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490G00187B", "modes": ["bus"], "icsCode": "1000187", "stopType": "NaptanOnstreetBusCoachStopCluster", "stationNaptan": "490G00187B", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490G00187B", "commonName": "Queensway Station", "placeType": "StopPoint", "additionalProperties": [], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000187A", "indicator": "Stop A", "stopLetter": "A", "modes": ["bus"], "icsCode": "1000187", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00187B", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000187A", "commonName": "Queensway Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.510211, "lon": -0.187761}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000187B", "indicator": "Stop B", "stopLetter": "B", "modes": ["bus"], "icsCode": "1000187", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00187B", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000187B", "commonName": "Queensway Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.510669, "lon": -0.187123}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000187C", "indicator": "Stop C", "stopLetter": "C", "modes": ["bus"], "icsCode": "1000187", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00187B", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000187C", "commonName": "Queensway Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.510214, "lon": -0.188496}], "lat": 51.510214, "lon": -0.188496}, {"$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": "9400ZZLUQWY", "modes": ["tube"], "icsCode": "1000187", "stopType": "NaptanMetroAccessArea", "stationNaptan": "940GZZLUQWY", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "9400ZZLUQWY", "commonName": "Queensway 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": "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": "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": "Facility", "key": "Photo 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": "Toilets", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$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": "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.510312, "lon": -0.187152}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUQWY1", "modes": ["tube"], "icsCode": "1000187", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUQWY", "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": "940GZZLUQWY", "lineIdentifier": ["central"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["central"]}], "status": true, "id": "9400ZZLUQWY1", "commonName": "Queensway 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": "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": "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": "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": "Help Points", "sourceSystemKey": "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": "Queensway Station,London Underground Ltd.,Bayswater Rd,London,W2 4SS"}, {"$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": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "1"}], "children": [], "lat": 51.510312, "lon": -0.187209}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUQWY2", "modes": ["tube"], "icsCode": "1000187", "stopType": "NaptanRailAccessArea", "stationNaptan": "940GZZLUQWY", "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": "940GZZLUQWY", "lineIdentifier": ["central"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["central"]}], "status": true, "id": "9400ZZLUQWY2", "commonName": "Queensway 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": "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": "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": "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": "Help Points", "sourceSystemKey": "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": "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": "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.510321, "lon": -0.187209}], "lat": 51.510312, "lon": -0.187152}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "940GZZLURBG", "modes": ["bus", "tube"], "icsCode": "1000190", "stopType": "NaptanMetroStation", "stationNaptan": "940GZZLURBG", "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": "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": "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": "145", "name": "145", "uri": "/Line/145", "type": "Line", "crowding": {"$type": "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"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "940GZZLURBG", "lineIdentifier": ["central"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490015554C", "stationAtcoCode": "490G00190038", "lineIdentifier": ["n8", "366", "145", "66"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490000190B", "stationAtcoCode": "490G00190038", "lineIdentifier": ["366"]}], "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": "bus", "lineIdentifier": ["n8", "366", "145", "66"]}], "status": true, "id": "940GZZLURBG", "commonName": "Redbridge 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": "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": "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": "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": "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": "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": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$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": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "4"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "CarParks_800487"}], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490G00190038", "modes": ["bus"], "icsCode": "1000190", "stopType": "NaptanOnstreetBusCoachStopCluster", "stationNaptan": "490G00190038", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490G00190038", "commonName": "Redbridge Station", "placeType": "StopPoint", "additionalProperties": [], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000190038", "indicator": "Stop B", "stopLetter": "B", "modes": ["bus"], "icsCode": "1000190", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00190038", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000190038", "commonName": "Redbridge Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.576301, "lon": 0.045593}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000190B", "indicator": "Stop RB", "stopLetter": "RB", "modes": ["bus"], "icsCode": "1000190", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00190038", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000190B", "commonName": "Redbridge Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.576449, "lon": 0.045354}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490015554C", "indicator": "Stop RC", "stopLetter": "RC", "modes": ["bus"], "icsCode": "1000190", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00190038", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490015554C", "commonName": "Redbridge Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.57585, "lon": 0.04566}], "lat": 51.576301, "lon": 0.045593}, {"$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": "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": "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": "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": "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"}], "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": "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": "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": "9400ZZLURBG", "modes": ["tube"], "icsCode": "1000190", "stopType": "NaptanMetroAccessArea", "stationNaptan": "940GZZLURBG", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "9400ZZLURBG", "commonName": "Redbridge 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": "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"}, {"$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": "Redbridge Station,London Underground Ltd.,Eastern Avenue,Ilford,Essex,IG4 5DQ"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.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": "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"}], "children": [], "lat": 51.576243, "lon": 0.04536}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLURBG1", "modes": ["tube"], "icsCode": "1000190", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLURBG", "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": "940GZZLURBG", "lineIdentifier": ["central"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["central"]}], "status": true, "id": "9400ZZLURBG1", "commonName": "Redbridge 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": "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": "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": "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": "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": "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": "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": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}], "children": [], "lat": 51.576188, "lon": 0.046454}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLURBG2", "modes": ["tube"], "icsCode": "1000190", "stopType": "NaptanRailAccessArea", "stationNaptan": "940GZZLURBG", "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": "940GZZLURBG", "lineIdentifier": ["central"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["central"]}], "status": true, "id": "9400ZZLURBG2", "commonName": "Redbridge 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": "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": "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": "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 (male, female)"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.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": "Redbridge Station,London Underground Ltd.,Eastern Avenue,Ilford,Essex,IG4 5DQ"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.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": "Help Points", "sourceSystemKey": "StaticObjects", "value": "0 on platforms, 0 in ticket halls, 0 elsewhere"}], "children": [], "lat": 51.576188, "lon": 0.046454}], "lat": 51.576243, "lon": 0.04536}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "940GZZLURGP", "modes": ["tube", "bus"], "icsCode": "1000191", "stopType": "NaptanMetroStation", "stationNaptan": "940GZZLURGP", "lines": [{"$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": "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": "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": "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": "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": "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": "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": "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": "490000191B", "stationAtcoCode": "490G00191A", "lineIdentifier": ["30", "205", "18", "27", "n205", "n27", "n18", "453"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "940GZZLURGP", "lineIdentifier": ["bakerloo"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490000191A", "stationAtcoCode": "490G00191A", "lineIdentifier": ["n18", "n27", "n205", "205", "27", "18", "453", "30"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "bus", "lineIdentifier": ["30", "205", "18", "27", "n205", "n27", "n18", "453"]}, {"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["bakerloo"]}], "status": true, "id": "940GZZLURGP", "commonName": "Regent's Park 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": "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": "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": "Lifts", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$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": "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": "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": "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": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_28"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_76"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_81"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_184"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_242"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_581"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5405"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5590"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5592"}], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490G00191A", "modes": ["bus"], "icsCode": "1000191", "stopType": "NaptanOnstreetBusCoachStopCluster", "stationNaptan": "490G00191A", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490G00191A", "commonName": "Regent's Park Station", "placeType": "StopPoint", "additionalProperties": [], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000191A", "indicator": "Stop A", "stopLetter": "A", "modes": ["bus"], "icsCode": "1000191", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00191A", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000191A", "commonName": "Regent's Park Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.523756, "lon": -0.147033}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000191B", "indicator": "Stop B", "stopLetter": "B", "modes": ["bus"], "icsCode": "1000191", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00191A", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000191B", "commonName": "Regent's Park Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.523624, "lon": -0.146606}], "lat": 51.523624, "lon": -0.146606}, {"$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": "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": "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": "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": "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": "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": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "1"}], "children": [], "lat": 51.523589, "lon": -0.146708}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLURGP", "modes": ["tube"], "icsCode": "1000191", "stopType": "NaptanMetroAccessArea", "stationNaptan": "940GZZLURGP", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "9400ZZLURGP", "commonName": "Regent's 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": "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": "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": "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": "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": "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": "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": "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": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "1"}], "children": [], "lat": 51.523344, "lon": -0.146444}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLURGP1", "modes": ["tube"], "icsCode": "1000191", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLURGP", "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": "940GZZLURGP", "lineIdentifier": ["bakerloo"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["bakerloo"]}], "status": true, "id": "9400ZZLURGP1", "commonName": "Regent's 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": "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": "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": "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": "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": "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": "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": "Escalators", "sourceSystemKey": "StaticObjects", "value": "0"}], "children": [], "lat": 51.523153, "lon": -0.146294}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLURGP2", "modes": ["tube"], "icsCode": "1000191", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLURGP", "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": "940GZZLURGP", "lineIdentifier": ["bakerloo"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["bakerloo"]}], "status": true, "id": "9400ZZLURGP2", "commonName": "Regent's 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": "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": "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": "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": "Help Points", "sourceSystemKey": "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": "Gates", "sourceSystemKey": "StaticObjects", "value": "4"}, {"$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": "Lifts", "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": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}], "children": [], "lat": 51.523089, "lon": -0.146267}], "lat": 51.523344, "lon": -0.146444}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "940GZZLURKW", "modes": ["tube"], "icsCode": "1000193", "stopType": "NaptanMetroStation", "stationNaptan": "940GZZLURKW", "hubNaptanCode": "HUBRIC", "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": "940GZZLURKW", "lineIdentifier": ["metropolitan"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["metropolitan"]}], "status": true, "id": "940GZZLURKW", "commonName": "Rickmansworth 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": "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": "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": "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": "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": "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": "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": "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": [{"$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": "9400ZZLURKW", "modes": ["tube"], "icsCode": "1000193", "stopType": "NaptanMetroAccessArea", "stationNaptan": "940GZZLURKW", "hubNaptanCode": "HUBRIC", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "9400ZZLURKW", "commonName": "Rickmansworth 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": "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": "Help Points", "sourceSystemKey": "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": "Rickmansworth Station,London Underground Ltd.,Station Approach,Rickmansworth,Herts,WD3 1QY"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.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": "Payphones", "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": "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": "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"}], "children": [], "lat": 51.640207, "lon": -0.473703}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLURKW1", "modes": ["tube"], "icsCode": "1000193", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLURKW", "hubNaptanCode": "HUBRIC", "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": "940GZZLURKW", "lineIdentifier": ["metropolitan"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["metropolitan"]}], "status": true, "id": "9400ZZLURKW1", "commonName": "Rickmansworth 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": "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": "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": "Toilets", "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": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "7"}, {"$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": "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": "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.640198, "lon": -0.47366}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLURKW2", "modes": ["tube"], "icsCode": "1000193", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLURKW", "hubNaptanCode": "HUBRIC", "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": "940GZZLURKW", "lineIdentifier": ["metropolitan"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["metropolitan"]}], "status": true, "id": "9400ZZLURKW2", "commonName": "Rickmansworth 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": "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": "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": "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": "Geo", "key": "Zone", "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": "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": "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": "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.640179, "lon": -0.473574}], "lat": 51.640207, "lon": -0.473703}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "940GZZLURMD", "modes": ["tube"], "icsCode": "1000192", "stopType": "NaptanMetroStation", "stationNaptan": "940GZZLURMD", "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"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "940GZZLURMD", "lineIdentifier": ["district"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["district"]}], "status": true, "id": "940GZZLURMD", "commonName": "Richmond 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": "Opening Time", "key": "MonFriFrom", "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": "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": "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": "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": "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": "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": "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": "Payphones", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$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": "Other Facilities", "sourceSystemKey": "StaticObjects", "value": "none"}, {"$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": "Photo 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": "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": "9400ZZLURMD", "modes": ["tube"], "icsCode": "1000192", "stopType": "NaptanMetroAccessArea", "stationNaptan": "940GZZLURMD", "hubNaptanCode": "HUBRMD", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "9400ZZLURMD", "commonName": "Richmond 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": "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": "Opening Time", "key": "SunTo", "sourceSystemKey": "StaticObjects", "value": "21: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": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "6"}, {"$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": "SatFrom", "sourceSystemKey": "StaticObjects", "value": "06: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": "Help Points", "sourceSystemKey": "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": "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": "Escalators", "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": "Opening Time", "key": "MonFriTo", "sourceSystemKey": "StaticObjects", "value": "21: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": "Opening Time", "key": "SatTo", "sourceSystemKey": "StaticObjects", "value": "21:45"}, {"$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": "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": "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.463237, "lon": -0.301336}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLURMD1", "modes": ["tube"], "icsCode": "1000192", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLURMD", "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"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "940GZZLURMD", "lineIdentifier": ["district"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["district"]}], "status": true, "id": "9400ZZLURMD1", "commonName": "Richmond Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$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": "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": "Opening Time", "key": "SunTo", "sourceSystemKey": "StaticObjects", "value": "21: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": "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": "Opening Time", "key": "SatTo", "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": "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": "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": "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": "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": "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": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "no"}], "children": [], "lat": 51.463254, "lon": -0.301249}], "lat": 51.463237, "lon": -0.301336}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "940GZZLURSG", "modes": ["tube", "bus"], "icsCode": "1000198", "stopType": "NaptanMetroStation", "stationNaptan": "940GZZLURSG", "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": "696", "name": "696", "uri": "/Line/696", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "e7", "name": "E7", "uri": "/Line/e7", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "940GZZLURSG", "lineIdentifier": ["central"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490000198B", "stationAtcoCode": "490G00198B", "lineIdentifier": ["696", "e7"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490000198A", "stationAtcoCode": "490G00198B", "lineIdentifier": ["696", "e7"]}], "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": "bus", "lineIdentifier": ["696", "e7"]}], "status": true, "id": "940GZZLURSG", "commonName": "Ruislip Gardens 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": "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": "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": "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": "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": "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": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "CarParks_800459"}], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490G00198B", "modes": ["bus"], "icsCode": "1000198", "stopType": "NaptanOnstreetBusCoachStopCluster", "stationNaptan": "490G00198B", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490G00198B", "commonName": "Ruislip Gardens Station", "placeType": "StopPoint", "additionalProperties": [], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000198A", "indicator": "Stop A", "stopLetter": "A", "modes": ["bus"], "icsCode": "1000198", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00198B", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000198A", "commonName": "Ruislip Gardens Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.560268, "lon": -0.410813}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000198B", "indicator": "Stop B", "stopLetter": "B", "modes": ["bus"], "icsCode": "1000198", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00198B", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000198B", "commonName": "Ruislip Gardens Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.560509, "lon": -0.411338}], "lat": 51.560268, "lon": -0.410813}, {"$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": "9400ZZLURSG", "modes": ["tube"], "icsCode": "1000198", "stopType": "NaptanMetroAccessArea", "stationNaptan": "940GZZLURSG", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "9400ZZLURSG", "commonName": "Ruislip Gardens Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$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": "Car park", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$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": "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": "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": "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": "Gates", "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": "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": "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)"}], "children": [], "lat": 51.560736, "lon": -0.41071}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLURSG1", "modes": ["tube"], "icsCode": "1000198", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLURSG", "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": "940GZZLURSG", "lineIdentifier": ["central"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["central"]}], "status": true, "id": "9400ZZLURSG1", "commonName": "Ruislip Gardens 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": "Gates", "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": "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": "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": "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": "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": "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": "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"}], "children": [], "lat": 51.560755, "lon": -0.410839}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLURSG2", "modes": ["tube"], "icsCode": "1000198", "stopType": "NaptanRailAccessArea", "stationNaptan": "940GZZLURSG", "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": "940GZZLURSG", "lineIdentifier": ["central"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["central"]}], "status": true, "id": "9400ZZLURSG2", "commonName": "Ruislip Gardens", "placeType": "StopPoint", "additionalProperties": [{"$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": "Escalators", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$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": "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": "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": "Toilets", "sourceSystemKey": "StaticObjects", "value": "yes (male, female)"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.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": "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": "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"}], "children": [], "lat": 51.560737, "lon": -0.410839}], "lat": 51.560736, "lon": -0.41071}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "940GZZLURSM", "modes": ["tube", "bus"], "icsCode": "1000199", "stopType": "NaptanMetroStation", "stationNaptan": "940GZZLURSM", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "h13", "name": "H13", "uri": "/Line/h13", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "696", "name": "696", "uri": "/Line/696", "type": "Line", "crowding": {"$type": "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": "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": "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": "398", "name": "398", "uri": "/Line/398", "type": "Line", "crowding": {"$type": "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": "490000199C", "stationAtcoCode": "490G00199C", "lineIdentifier": ["h13", "696"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "940GZZLURSM", "lineIdentifier": ["metropolitan", "piccadilly"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490000199D", "stationAtcoCode": "490G00199C", "lineIdentifier": ["h13", "696"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490000199A", "stationAtcoCode": "490G00199S", "lineIdentifier": ["114", "398"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490000199B", "stationAtcoCode": "490G00199S", "lineIdentifier": ["114", "398"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "bus", "lineIdentifier": ["h13", "696", "114", "398"]}, {"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["metropolitan", "piccadilly"]}], "status": true, "id": "940GZZLURSM", "commonName": "Ruislip Manor 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": "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": "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": "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": "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": "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": "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": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490G00199C", "modes": ["bus"], "icsCode": "1000199", "stopType": "NaptanOnstreetBusCoachStopCluster", "stationNaptan": "490G00199C", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490G00199C", "commonName": "Ruislip Manor Station", "placeType": "StopPoint", "additionalProperties": [], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000199C", "indicator": "Stop C", "stopLetter": "C", "modes": ["bus"], "icsCode": "1000199", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00199C", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000199C", "commonName": "Ruislip Manor Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.574564, "lon": -0.414066}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000199D", "indicator": "Stop D", "stopLetter": "D", "modes": ["bus"], "icsCode": "1000199", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00199C", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000199D", "commonName": "Ruislip Manor Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.574371, "lon": -0.413698}], "lat": 51.574564, "lon": -0.414066}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490G00199S", "modes": ["bus"], "icsCode": "1000199", "stopType": "NaptanOnstreetBusCoachStopCluster", "stationNaptan": "490G00199S", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490G00199S", "commonName": "Ruislip Manor Station", "placeType": "StopPoint", "additionalProperties": [], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000199A", "indicator": "Stop A", "stopLetter": "A", "modes": ["bus"], "icsCode": "1000199", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00199S", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000199A", "commonName": "Ruislip Manor Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.572844, "lon": -0.412553}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000199B", "indicator": "Stop B", "stopLetter": "B", "modes": ["bus"], "icsCode": "1000199", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00199S", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000199B", "commonName": "Ruislip Manor Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.573166, "lon": -0.41309}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000199S", "indicator": "Stop S", "stopLetter": "S", "modes": ["bus"], "icsCode": "1000199", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00199S", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000199S", "commonName": "Ruislip Manor Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.574233, "lon": -0.412129}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000199T", "indicator": "Stop T", "stopLetter": "T", "modes": ["bus"], "icsCode": "1000199", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00199S", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000199T", "commonName": "Ruislip Manor Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.573953, "lon": -0.412716}], "lat": 51.573166, "lon": -0.41309}, {"$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": "9400ZZLURSM", "modes": ["tube"], "icsCode": "1000199", "stopType": "NaptanMetroAccessArea", "stationNaptan": "940GZZLURSM", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "9400ZZLURSM", "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": "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": "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": "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": "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": "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": "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.573202, "lon": -0.412973}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLURSM1", "modes": ["tube"], "icsCode": "1000199", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLURSM", "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": "940GZZLURSM", "lineIdentifier": ["piccadilly", "metropolitan"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["piccadilly", "metropolitan"]}], "status": true, "id": "9400ZZLURSM1", "commonName": "Ruislip Manor 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": "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": "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": "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": "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": "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": "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": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "3"}], "children": [], "lat": 51.573435, "lon": -0.412215}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLURSM2", "modes": ["tube"], "icsCode": "1000199", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLURSM", "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": "940GZZLURSM", "lineIdentifier": ["piccadilly", "metropolitan"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["piccadilly", "metropolitan"]}], "status": true, "id": "9400ZZLURSM2", "commonName": "Ruislip Manor 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": "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": "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": "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": "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": "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": "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": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "yes"}], "children": [], "lat": 51.573461, "lon": -0.412113}], "lat": 51.573202, "lon": -0.412973}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "940GZZLURSP", "modes": ["tube", "bus"], "icsCode": "1000197", "stopType": "NaptanMetroStation", "stationNaptan": "940GZZLURSP", "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": "278", "name": "278", "uri": "/Line/278", "type": "Line", "crowding": {"$type": "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": "331", "name": "331", "uri": "/Line/331", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "e7", "name": "E7", "uri": "/Line/e7", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "u1", "name": "U1", "uri": "/Line/u1", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "h13", "name": "H13", "uri": "/Line/h13", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "398", "name": "398", "uri": "/Line/398", "type": "Line", "crowding": {"$type": "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": "u10", "name": "U10", "uri": "/Line/u10", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "940GZZLURSP", "lineIdentifier": ["piccadilly"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490000197Z1", "stationAtcoCode": "490G00197Z2", "lineIdentifier": ["278", "114", "331", "e7", "u1"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490000197A", "stationAtcoCode": "490G00197Z2", "lineIdentifier": ["h13", "114", "398"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "940GZZLURSP", "lineIdentifier": ["metropolitan"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490000197B", "stationAtcoCode": "490G00197Z2", "lineIdentifier": ["e7", "u1", "u10", "h13", "331"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["piccadilly", "metropolitan"]}, {"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "bus", "lineIdentifier": ["278", "114", "331", "e7", "u1", "h13", "398", "u10"]}], "status": true, "id": "940GZZLURSP", "commonName": "Ruislip 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": "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": "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": "Facility", "key": "WiFi", "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": "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": "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 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"}, {"$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": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "CarParks_800460"}], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490G00197Z2", "modes": ["bus"], "icsCode": "1000197", "stopType": "NaptanOnstreetBusCoachStopCluster", "stationNaptan": "490G00197Z2", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490G00197Z2", "commonName": "Ruislip Station", "placeType": "StopPoint", "additionalProperties": [], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000197A", "indicator": "Stop A", "stopLetter": "A", "modes": ["bus"], "icsCode": "1000197", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00197Z2", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000197A", "commonName": "Ruislip Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.572021, "lon": -0.421499}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000197B", "indicator": "Stop B", "stopLetter": "B", "modes": ["bus"], "icsCode": "1000197", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00197Z2", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000197B", "commonName": "Ruislip Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.572229, "lon": -0.421622}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000197R", "indicator": "Stop", "modes": ["bus"], "icsCode": "1000197", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00197Z2", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000197R", "commonName": "Ruislip Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.572352, "lon": -0.421387}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000197Z1", "indicator": "Stop Z1", "stopLetter": "Z1", "modes": ["bus"], "icsCode": "1000197", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00197Z2", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000197Z1", "commonName": "Ruislip Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.572055, "lon": -0.421325}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000197Z2", "indicator": "Stop Z2", "stopLetter": "Z2", "modes": ["bus"], "icsCode": "1000197", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00197Z2", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000197Z2", "commonName": "Ruislip Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.571855, "lon": -0.421217}], "lat": 51.571855, "lon": -0.421217}, {"$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": "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": "Help Points", "sourceSystemKey": "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": "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": "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"}, {"$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.571578, "lon": -0.421327}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLURSP", "modes": ["tube"], "icsCode": "1000197", "stopType": "NaptanMetroAccessArea", "stationNaptan": "940GZZLURSP", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "9400ZZLURSP", "commonName": "Ruislip 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": "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": "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": "Help Points", "sourceSystemKey": "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"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, 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": "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": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "0"}], "children": [], "lat": 51.571354, "lon": -0.421898}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLURSP1", "modes": ["tube"], "icsCode": "1000197", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLURSP", "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": "940GZZLURSP", "lineIdentifier": ["piccadilly"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["piccadilly"]}], "status": true, "id": "9400ZZLURSP1", "commonName": "Ruislip 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": "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": "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": "Payphones", "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": "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": "Ruislip Station,London Underground Ltd.,Station Approach,Ruislip,Middx,HA4 8LD"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.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": "post office style queuing for tickets."}], "children": [], "lat": 51.571367, "lon": -0.421537}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLURSP2", "modes": ["tube"], "icsCode": "1000197", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLURSP", "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": "940GZZLURSP", "lineIdentifier": ["piccadilly"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["piccadilly"]}], "status": true, "id": "9400ZZLURSP2", "commonName": "Ruislip 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": "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": "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": "Help Points", "sourceSystemKey": "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": "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": "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"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, 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": "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": "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.571392, "lon": -0.42142}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLURSP3", "indicator": "eastbound", "modes": ["tube"], "icsCode": "1000197", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLURSP", "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": "940GZZLURSP", "lineIdentifier": ["metropolitan"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["metropolitan"]}], "status": true, "id": "9400ZZLURSP3", "commonName": "Ruislip 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": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$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": "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": "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": "Help Points", "sourceSystemKey": "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": "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": "Gates", "sourceSystemKey": "StaticObjects", "value": "3"}], "children": [], "lat": 51.571341, "lon": -0.421653}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLURSP4", "indicator": "westbound", "modes": ["tube"], "icsCode": "1000197", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLURSP", "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": "940GZZLURSP", "lineIdentifier": ["metropolitan"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["metropolitan"]}], "status": true, "id": "9400ZZLURSP4", "commonName": "Ruislip 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": "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": "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": "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"}, {"$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": "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": "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"}], "children": [], "lat": 51.571366, "lon": -0.421464}], "lat": 51.571354, "lon": -0.421898}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "940GZZLURSQ", "modes": ["tube", "bus"], "icsCode": "1000200", "stopType": "NaptanMetroStation", "stationNaptan": "940GZZLURSQ", "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": "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": "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": "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": "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": "14", "name": "14", "uri": "/Line/14", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "940GZZLURSQ", "lineIdentifier": ["piccadilly"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490000200J", "stationAtcoCode": "490G00200H", "lineIdentifier": ["68", "1", "91", "n91"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490000200D", "stationAtcoCode": "490G00200H", "lineIdentifier": ["sl6"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490000200H", "stationAtcoCode": "490G00200H", "lineIdentifier": ["n91", "1", "91", "68"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490000200E", "stationAtcoCode": "490G00200H", "lineIdentifier": ["14", "sl6"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["piccadilly"]}, {"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "bus", "lineIdentifier": ["68", "1", "91", "n91", "sl6", "14"]}], "status": true, "id": "940GZZLURSQ", "commonName": "Russell Square Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_77"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_57"}, {"$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_24"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_12"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_11"}, {"$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": "ServiceInfo", "key": "Night", "sourceSystemKey": "TransXchangeETL", "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": "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"}, {"$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": "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": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "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": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_89"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_287"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_796"}, {"$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_4203"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_4878"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_4616"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5545"}, {"$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_5701"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.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": "Russell Square Station,London Underground Ltd.,Bernard St,London,WC1N 1LJ"}], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490G00200H", "modes": ["bus"], "icsCode": "1000200", "stopType": "NaptanOnstreetBusCoachStopCluster", "stationNaptan": "490G00200H", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490G00200H", "commonName": "Russell Square", "placeType": "StopPoint", "additionalProperties": [], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000200D", "indicator": "Stop D", "stopLetter": "D", "modes": ["bus"], "icsCode": "1000200", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00200H", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000200D", "commonName": "Russell Square", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.520861, "lon": -0.125529}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000200E", "indicator": "Stop E", "stopLetter": "E", "modes": ["bus"], "icsCode": "1000200", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00200H", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000200E", "commonName": ".Russell Square", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.522334, "lon": -0.127126}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000200EB", "indicator": "Stop", "modes": ["bus"], "icsCode": "1000200", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00200H", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000200EB", "commonName": ".Russell Square", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.523479, "lon": -0.126762}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000200H", "indicator": "Stop H", "stopLetter": "H", "modes": ["bus"], "icsCode": "1000200", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00200H", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000200H", "commonName": "Russell Square Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.523212, "lon": -0.126384}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000200J", "indicator": "Stop J", "stopLetter": "J", "modes": ["bus"], "icsCode": "1000200", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00200H", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000200J", "commonName": "Russell Square", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.523355, "lon": -0.126277}], "lat": 51.520861, "lon": -0.125529}, {"$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": "9400ZZLURSQ", "modes": ["tube"], "icsCode": "1000200", "stopType": "NaptanMetroAccessArea", "stationNaptan": "940GZZLURSQ", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "9400ZZLURSQ", "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": "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": "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": "Payphones", "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": "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": "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": "Lifts", "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": "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.523073, "lon": -0.124285}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLURSQ1", "modes": ["tube"], "icsCode": "1000200", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLURSQ", "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": "940GZZLURSQ", "lineIdentifier": ["piccadilly"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["piccadilly"]}], "status": true, "id": "9400ZZLURSQ1", "commonName": "Russell Square 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": "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": "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": "3"}, {"$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": "Help Points", "sourceSystemKey": "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": "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": "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": "Photo 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.523461, "lon": -0.124399}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLURSQ2", "modes": ["tube"], "icsCode": "1000200", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLURSQ", "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": "940GZZLURSQ", "lineIdentifier": ["piccadilly"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["piccadilly"]}], "status": true, "id": "9400ZZLURSQ2", "commonName": "Russell Square Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$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": "Help Points", "sourceSystemKey": "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": "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": "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": "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": "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": "Photo 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": "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.523398, "lon": -0.124358}], "lat": 51.523073, "lon": -0.124285}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "940GZZLURVP", "modes": ["bus", "tube"], "icsCode": "1000188", "stopType": "NaptanMetroStation", "stationNaptan": "940GZZLURVP", "lines": [{"$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": "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": "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": "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": "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": "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": "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": "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": "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": "h91", "name": "H91", "uri": "/Line/h91", "type": "Line", "crowding": {"$type": "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": "490000188B", "stationAtcoCode": "490G00188A", "lineIdentifier": ["218", "306", "n266"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "940GZZLURVP", "lineIdentifier": ["district"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490011438E", "stationAtcoCode": "490G00188A", "lineIdentifier": ["110", "267", "n9", "190", "n11", "h91"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490011594W", "stationAtcoCode": "490G00188A", "lineIdentifier": ["h91", "n11", "n9", "110", "267", "190"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490000188A", "stationAtcoCode": "490G00188A", "lineIdentifier": ["306", "218", "n266"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "bus", "lineIdentifier": ["218", "306", "n266", "110", "267", "n9", "190", "n11", "h91"]}, {"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["district"]}], "status": true, "id": "940GZZLURVP", "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": "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": "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": "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": "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": "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": "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": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_668"}], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490G00188A", "modes": ["bus"], "icsCode": "1000188", "stopType": "NaptanOnstreetBusCoachStopCluster", "stationNaptan": "490G00188A", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490G00188A", "commonName": "Ravenscourt Park Station", "placeType": "StopPoint", "additionalProperties": [], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000188A", "indicator": "Stop A", "stopLetter": "A", "modes": ["bus"], "icsCode": "1000188", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00188A", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000188A", "commonName": "Ravenscourt Park Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.495476, "lon": -0.234561}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000188B", "indicator": "Stop B", "stopLetter": "B", "modes": ["bus"], "icsCode": "1000188", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00188A", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000188B", "commonName": "Ravenscourt Park Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.494918, "lon": -0.234525}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490011438E", "indicator": "Stop E", "stopLetter": "E", "modes": ["bus"], "icsCode": "1000188", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00188A", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490011438E", "commonName": "Ravenscourt Park Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.493267, "lon": -0.237124}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490011594W", "indicator": "Stop D", "stopLetter": "D", "modes": ["bus"], "icsCode": "1000188", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00188A", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490011594W", "commonName": "Ravenscourt Park Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.492896, "lon": -0.235827}], "lat": 51.492896, "lon": -0.235827}, {"$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": "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": "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": "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": "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": "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": "Help Points", "sourceSystemKey": "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"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.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"}], "children": [], "lat": 51.493974, "lon": -0.236333}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLURVP", "modes": ["tube"], "icsCode": "1000188", "stopType": "NaptanMetroAccessArea", "stationNaptan": "940GZZLURVP", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "9400ZZLURVP", "commonName": "Ravenscourt 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": "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": "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": "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": "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": "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": "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"}], "children": [], "lat": 51.494122, "lon": -0.235881}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLURVP1", "modes": ["tube"], "icsCode": "1000188", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLURVP", "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": "940GZZLURVP", "lineIdentifier": ["district"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["district"]}], "status": true, "id": "9400ZZLURVP1", "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": "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": "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": "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": "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": "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": "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": "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"}], "children": [], "lat": 51.494132, "lon": -0.235924}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLURVP2", "modes": ["tube"], "icsCode": "1000188", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLURVP", "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": "940GZZLURVP", "lineIdentifier": ["district"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["district"]}], "status": true, "id": "9400ZZLURVP2", "commonName": "Ravenscourt 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": "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": "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": "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": "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": "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": "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.49413, "lon": -0.235837}], "lat": 51.494122, "lon": -0.235881}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "940GZZLURVY", "modes": ["tube"], "icsCode": "1000194", "stopType": "NaptanMetroStation", "stationNaptan": "940GZZLURVY", "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": "940GZZLURVY", "lineIdentifier": ["central"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["central"]}], "status": true, "id": "940GZZLURVY", "commonName": "Roding Valley 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": "Help Points", "sourceSystemKey": "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": "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"}, {"$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": "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": "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": "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": "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"}], "children": [{"$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": "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": "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"}], "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": "Photo 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": "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": "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": "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": "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": "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"}], "children": [], "lat": 51.616851, "lon": 0.043877}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLURVY", "modes": ["tube"], "icsCode": "1000194", "stopType": "NaptanMetroAccessArea", "stationNaptan": "940GZZLURVY", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "9400ZZLURVY", "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": "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": "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": "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": "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": "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": "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.617199, "lon": 0.043647}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLURVY1", "modes": ["tube"], "icsCode": "1000194", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLURVY", "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": "940GZZLURVY", "lineIdentifier": ["central"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["central"]}], "status": true, "id": "9400ZZLURVY1", "commonName": "Roding Valley 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": "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": "Photo Booths", "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": "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": "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": "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": "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": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}], "children": [], "lat": 51.617367, "lon": 0.043814}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLURVY2", "modes": ["tube"], "icsCode": "1000194", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLURVY", "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": "940GZZLURVY", "lineIdentifier": ["central"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["central"]}], "status": true, "id": "9400ZZLURVY2", "commonName": "Roding Valley 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": "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": "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": "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": "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"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, 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": "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": "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.617383, "lon": 0.043915}], "lat": 51.617199, "lon": 0.043647}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "940GZZLURYL", "modes": ["bus", "tube"], "icsCode": "1000189", "stopType": "NaptanMetroStation", "stationNaptan": "940GZZLURYL", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "398", "name": "398", "uri": "/Line/398", "type": "Line", "crowding": {"$type": "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": "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": "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"}, {"$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": "490000189B", "stationAtcoCode": "490G00189S", "lineIdentifier": ["398", "h12", "h9"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "940GZZLURYL", "lineIdentifier": ["piccadilly", "metropolitan"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490000189A", "stationAtcoCode": "490G00189S", "lineIdentifier": ["398", "h10", "h12"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490000189C", "stationAtcoCode": "490G00189S", "lineIdentifier": ["398", "h12", "h9"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "bus", "lineIdentifier": ["398", "h12", "h9", "h10"]}, {"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["piccadilly", "metropolitan"]}], "status": true, "id": "940GZZLURYL", "commonName": "Rayners Lane Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$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": "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": "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": "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": "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": "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": "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": "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"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5693"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "CarParks_800457"}], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490G00189S", "modes": ["bus"], "icsCode": "1000189", "stopType": "NaptanOnstreetBusCoachStopCluster", "stationNaptan": "490G00189S", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490G00189S", "commonName": "Rayners Lane Station", "placeType": "StopPoint", "additionalProperties": [], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000189A", "indicator": "Stop A", "stopLetter": "A", "modes": ["bus"], "icsCode": "1000189", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00189S", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000189A", "commonName": "Rayners Lane Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.575764, "lon": -0.371004}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000189B", "indicator": "Stop B", "stopLetter": "B", "modes": ["bus"], "icsCode": "1000189", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00189S", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000189B", "commonName": "Rayners Lane", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.576081, "lon": -0.369867}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000189C", "indicator": "Stop C", "stopLetter": "C", "modes": ["bus"], "icsCode": "1000189", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00189S", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000189C", "commonName": "Rayners Lane Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.57452, "lon": -0.370789}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000189S", "indicator": "->S", "stopLetter": "->S", "modes": ["bus"], "icsCode": "1000189", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00189S", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000189S", "commonName": "Rayners Lane Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.575609, "lon": -0.370231}], "lat": 51.575764, "lon": -0.371004}, {"$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": "9400ZZLURYL", "modes": ["tube"], "icsCode": "1000189", "stopType": "NaptanMetroAccessArea", "stationNaptan": "940GZZLURYL", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "9400ZZLURYL", "commonName": "Rayners 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": "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": "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": "Car park", "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": "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": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$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": "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"}], "children": [], "lat": 51.575147, "lon": -0.371127}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLURYL1", "modes": ["tube"], "icsCode": "1000189", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLURYL", "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": "940GZZLURYL", "lineIdentifier": ["piccadilly", "metropolitan"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["piccadilly", "metropolitan"]}], "status": true, "id": "9400ZZLURYL1", "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": "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": "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": "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": "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": "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": "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.575179, "lon": -0.371458}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLURYL2", "modes": ["tube"], "icsCode": "1000189", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLURYL", "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": "940GZZLURYL", "lineIdentifier": ["piccadilly", "metropolitan"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["piccadilly", "metropolitan"]}], "status": true, "id": "9400ZZLURYL2", "commonName": "Rayners Lane 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": "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": "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": "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": "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": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$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": "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"}], "children": [], "lat": 51.575159, "lon": -0.371372}], "lat": 51.575147, "lon": -0.371127}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "940GZZLURYO", "modes": ["bus", "tube"], "icsCode": "1000196", "stopType": "NaptanMetroStation", "stationNaptan": "940GZZLURYO", "lines": [{"$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": "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": "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", "naptanIdReference": "490000196B", "stationAtcoCode": "490G00196B", "lineIdentifier": ["36"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490000196W", "stationAtcoCode": "490G00196B", "lineIdentifier": ["18", "36", "n18"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "940GZZLURYO", "lineIdentifier": ["circle", "hammersmith-city"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490000196C", "stationAtcoCode": "490G00196B", "lineIdentifier": ["n18", "18"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "bus", "lineIdentifier": ["36", "18", "n18"]}, {"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["circle", "hammersmith-city"]}], "status": true, "id": "940GZZLURYO", "commonName": "Royal 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": "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": "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": "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": "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": "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": "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": "Toilets", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_105"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_165"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_176"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_327"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_568"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_592"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5860"}], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490G00196B", "modes": ["bus"], "icsCode": "1000196", "stopType": "NaptanOnstreetBusCoachStopCluster", "stationNaptan": "490G00196B", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490G00196B", "commonName": "Royal Oak", "placeType": "StopPoint", "additionalProperties": [], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000196B", "indicator": "Stop RH", "stopLetter": "RH", "modes": ["bus"], "icsCode": "1000196", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00196B", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000196B", "commonName": "Royal Oak Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.517989, "lon": -0.188865}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000196C", "indicator": "Stop RC", "stopLetter": "RC", "modes": ["bus"], "icsCode": "1000196", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00196B", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000196C", "commonName": "Royal Oak Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.519931, "lon": -0.189407}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000196W", "indicator": "Stop RD", "stopLetter": "RD", "modes": ["bus"], "icsCode": "1000196", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00196B", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000196W", "commonName": "Royal Oak Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.519635, "lon": -0.189462}], "lat": 51.519635, "lon": -0.189462}, {"$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": "9400ZZLURYO", "modes": ["tube"], "icsCode": "1000196", "stopType": "NaptanMetroAccessArea", "stationNaptan": "940GZZLURYO", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "9400ZZLURYO", "commonName": "Royal Oak 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, 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": "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": "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": "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": "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"}], "children": [], "lat": 51.519113, "lon": -0.188748}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLURYO1", "modes": ["tube"], "icsCode": "1000196", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLURYO", "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": "940GZZLURYO", "lineIdentifier": ["hammersmith-city", "circle"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["hammersmith-city", "circle"]}], "status": true, "id": "9400ZZLURYO1", "commonName": "Royal Oak 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": "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": "1"}, {"$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"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.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": "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": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}], "children": [], "lat": 51.519078, "lon": -0.188259}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLURYO2", "modes": ["tube"], "icsCode": "1000196", "stopType": "NaptanRailAccessArea", "stationNaptan": "940GZZLURYO", "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": "940GZZLURYO", "lineIdentifier": ["hammersmith-city", "circle"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["hammersmith-city", "circle"]}], "status": true, "id": "9400ZZLURYO2", "commonName": "Royal Oak", "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": "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": "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": "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": "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, 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": "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.519078, "lon": -0.18823}], "lat": 51.519113, "lon": -0.188748}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "940GZZLUSBC", "modes": ["tube"], "icsCode": "1000203", "stopType": "NaptanMetroStation", "stationNaptan": "940GZZLUSBC", "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"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "940GZZLUSBC", "lineIdentifier": ["central"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["central"]}], "status": true, "id": "940GZZLUSBC", "commonName": "Shepherd's Bush (Central) 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": "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": "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": "Escalators", "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": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$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": "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": "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": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$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_647"}, {"$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": "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": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.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": "9400ZZLUSBC", "modes": ["tube"], "icsCode": "1000203", "stopType": "NaptanMetroAccessArea", "stationNaptan": "940GZZLUSBC", "hubNaptanCode": "HUBSPB", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "9400ZZLUSBC", "commonName": "Shepherd's Bush (Central) 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": "Toilets", "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": "Facility", "key": "Help Points", "sourceSystemKey": "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": "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": "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": "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": "Other Facilities", "sourceSystemKey": "StaticObjects", "value": "none"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}], "children": [], "lat": 51.504376, "lon": -0.218813}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUSBC1", "modes": ["tube"], "icsCode": "1000203", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUSBC", "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"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "940GZZLUSBC", "lineIdentifier": ["central"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["central"]}], "status": true, "id": "9400ZZLUSBC1", "commonName": "Shepherd's Bush (Central) Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$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": "Photo 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"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.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": "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": "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": "Help Points", "sourceSystemKey": "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": "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.504564, "lon": -0.218129}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUSBC2", "modes": ["tube"], "icsCode": "1000203", "stopType": "NaptanRailAccessArea", "stationNaptan": "940GZZLUSBC", "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"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "940GZZLUSBC", "lineIdentifier": ["central"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["central"]}], "status": true, "id": "9400ZZLUSBC2", "commonName": "Shepherd's Bush (Central Line)", "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": "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": "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": "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"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.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": "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": "Photo 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.504572, "lon": -0.2181}], "lat": 51.504376, "lon": -0.218813}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "940GZZLUSBM", "modes": ["tube"], "icsCode": "1000204", "stopType": "NaptanMetroStation", "stationNaptan": "940GZZLUSBM", "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": "940GZZLUSBM", "lineIdentifier": ["hammersmith-city", "circle"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["hammersmith-city", "circle"]}], "status": true, "id": "940GZZLUSBM", "commonName": "Shepherd's Bush Market 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": "Help Points", "sourceSystemKey": "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": "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": "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": "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": "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": "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": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_566"}, {"$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": "TaxiRank_5931"}], "children": [{"$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": "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"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, 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": "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": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "0"}], "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": "9400ZZLUSBM", "modes": ["tube"], "icsCode": "1000204", "stopType": "NaptanMetroAccessArea", "stationNaptan": "940GZZLUSBM", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "9400ZZLUSBM", "commonName": "Shepherd's Bush Market Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$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": "Help Points", "sourceSystemKey": "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": "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": "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": "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": "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"}], "children": [], "lat": 51.505579, "lon": -0.226375}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUSBM1", "modes": ["tube"], "icsCode": "1000204", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUSBM", "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": "940GZZLUSBM", "lineIdentifier": ["hammersmith-city", "circle"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["hammersmith-city", "circle"]}], "status": true, "id": "9400ZZLUSBM1", "commonName": "Shepherd's Bush Market 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": "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": "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": "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": "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": "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": "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"}], "children": [], "lat": 51.505956, "lon": -0.22636}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUSBM2", "modes": ["tube"], "icsCode": "1000204", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUSBM", "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": "940GZZLUSBM", "lineIdentifier": ["hammersmith-city", "circle"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["hammersmith-city", "circle"]}], "status": true, "id": "9400ZZLUSBM2", "commonName": "Shepherd's Bush Market 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": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}, {"$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": "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": "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": "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": "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": "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.505992, "lon": -0.22633}], "lat": 51.505579, "lon": -0.226375}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "940GZZLUSEA", "modes": ["bus", "tube"], "icsCode": "1000208", "stopType": "NaptanMetroStation", "stationNaptan": "940GZZLUSEA", "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": "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": "65", "name": "65", "uri": "/Line/65", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "940GZZLUSEA", "lineIdentifier": ["piccadilly"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490000208A", "stationAtcoCode": "490G00208B", "lineIdentifier": ["n65", "65"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490000208B", "stationAtcoCode": "490G00208B", "lineIdentifier": ["65", "n65"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["piccadilly"]}, {"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "bus", "lineIdentifier": ["n65", "65"]}], "status": true, "id": "940GZZLUSEA", "commonName": "South Ealing 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": "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": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5785"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.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": "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": "Car park", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$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": "Help Points", "sourceSystemKey": "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": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "3"}], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490G00208B", "modes": ["bus"], "icsCode": "1000208", "stopType": "NaptanOnstreetBusCoachStopCluster", "stationNaptan": "490G00208B", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490G00208B", "commonName": "South Ealing Station", "placeType": "StopPoint", "additionalProperties": [], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000208A", "indicator": "Stop J", "stopLetter": "J", "modes": ["bus"], "icsCode": "1000208", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00208B", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000208A", "commonName": "South Ealing Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.500884, "lon": -0.306737}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000208B", "indicator": "Stop D", "stopLetter": "D", "modes": ["bus"], "icsCode": "1000208", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00208B", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000208B", "commonName": "South Ealing Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.501098, "lon": -0.306614}], "lat": 51.500884, "lon": -0.306737}, {"$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": "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": "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": "WiFi", "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": "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": "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": "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.50138, "lon": -0.306848}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUSEA", "modes": ["tube"], "icsCode": "1000208", "stopType": "NaptanMetroAccessArea", "stationNaptan": "940GZZLUSEA", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "9400ZZLUSEA", "commonName": "South Ealing 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": "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": "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": "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": "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": "Escalators", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$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": "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.501003, "lon": -0.307424}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUSEA1", "modes": ["tube"], "icsCode": "1000208", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUSEA", "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": "940GZZLUSEA", "lineIdentifier": ["piccadilly"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["piccadilly"]}], "status": true, "id": "9400ZZLUSEA1", "commonName": "South Ealing 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": "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": "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": "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": "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": "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": "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": "routeways platform to ticket hall."}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "4"}], "children": [], "lat": 51.501102, "lon": -0.30742}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUSEA2", "indicator": "westbound", "modes": ["tube"], "icsCode": "1000208", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUSEA", "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": "940GZZLUSEA", "lineIdentifier": ["piccadilly"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["piccadilly"]}], "status": true, "id": "9400ZZLUSEA2", "commonName": "South Ealing 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": "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": "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": "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": "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": "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": "4"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}], "children": [], "lat": 51.501083, "lon": -0.307364}], "lat": 51.501003, "lon": -0.307424}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "940GZZLUSFB", "modes": ["bus", "tube"], "icsCode": "1000218", "stopType": "NaptanMetroStation", "stationNaptan": "940GZZLUSFB", "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": "237", "name": "237", "uri": "/Line/237", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "940GZZLUSFB", "lineIdentifier": ["district"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490000218N", "stationAtcoCode": "490G00218N", "lineIdentifier": ["237"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490000218P", "stationAtcoCode": "490G00218N", "lineIdentifier": ["237"]}], "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": "bus", "lineIdentifier": ["237"]}], "status": true, "id": "940GZZLUSFB", "commonName": "Stamford Brook 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": "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": "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": "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."}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.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": "Stamford Brook Station,London Underground Ltd.,Goldhawk Rd,London,W6"}, {"$type": "Tfl.Api.Presentation.Entities.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": "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": "490G00218N", "modes": ["bus"], "icsCode": "1000218", "stopType": "NaptanOnstreetBusCoachStopCluster", "stationNaptan": "490G00218N", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490G00218N", "commonName": "Stamford Brook Station", "placeType": "StopPoint", "additionalProperties": [], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000218N", "indicator": "Stop N", "stopLetter": "N", "modes": ["bus"], "icsCode": "1000218", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00218N", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000218N", "commonName": "Stamford Brook Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.494668, "lon": -0.244806}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000218P", "indicator": "Stop P", "stopLetter": "P", "modes": ["bus"], "icsCode": "1000218", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00218N", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000218P", "commonName": "Stamford Brook Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.495307, "lon": -0.244824}], "lat": 51.495307, "lon": -0.244824}, {"$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": "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"}], "children": [], "lat": 51.494949, "lon": -0.244968}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUSFB", "modes": ["tube"], "icsCode": "1000218", "stopType": "NaptanMetroAccessArea", "stationNaptan": "940GZZLUSFB", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "9400ZZLUSFB", "commonName": "Stamford Brook 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": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$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": "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": "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 (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": "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": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "yes"}], "children": [], "lat": 51.494917, "lon": -0.245704}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUSFB1", "modes": ["tube"], "icsCode": "1000218", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUSFB", "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": "940GZZLUSFB", "lineIdentifier": ["district"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["district"]}], "status": true, "id": "9400ZZLUSFB1", "commonName": "Stamford Brook 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": "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": "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": "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"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.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": "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": "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.495001, "lon": -0.245931}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUSFB2", "modes": ["tube"], "icsCode": "1000218", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUSFB", "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": "940GZZLUSFB", "lineIdentifier": ["district"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["district"]}], "status": true, "id": "9400ZZLUSFB2", "commonName": "Stamford Brook 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": "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": "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": "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": "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": "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": "Help Points", "sourceSystemKey": "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."}], "children": [], "lat": 51.495001, "lon": -0.245917}], "lat": 51.494917, "lon": -0.245704}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "940GZZLUSFS", "modes": ["bus", "tube"], "icsCode": "1000209", "stopType": "NaptanMetroStation", "stationNaptan": "940GZZLUSFS", "lines": [{"$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": "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", "naptanIdReference": "490000209B", "stationAtcoCode": "490G00209E", "lineIdentifier": ["39", "493", "639"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "940GZZLUSFS", "lineIdentifier": ["district"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490000209C", "stationAtcoCode": "490G00209E", "lineIdentifier": ["493", "39", "639"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "bus", "lineIdentifier": ["39", "493", "639"]}, {"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["district"]}], "status": true, "id": "940GZZLUSFS", "commonName": "Southfields 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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5619"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5639"}], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490G00209E", "modes": ["bus"], "stopType": "NaptanOnstreetBusCoachStopCluster", "stationNaptan": "490G00209E", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490G00209E", "commonName": "Southfields Station", "placeType": "StopPoint", "additionalProperties": [], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000209B", "indicator": "Stop U", "stopLetter": "U", "modes": ["bus"], "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00209E", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000209B", "commonName": "Southfields Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.444349, "lon": -0.206976}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000209C", "indicator": "Stop B", "stopLetter": "B", "modes": ["bus"], "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00209E", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000209C", "commonName": "Southfields Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.444005, "lon": -0.207406}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000209E1", "indicator": "Stop", "modes": ["bus"], "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00209E", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000209E1", "commonName": "Southfields Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.444831, "lon": -0.206122}], "lat": 51.444005, "lon": -0.207406}, {"$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": "9400ZZLUSFS", "modes": ["tube"], "icsCode": "1000209", "stopType": "NaptanMetroAccessArea", "stationNaptan": "940GZZLUSFS", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "9400ZZLUSFS", "commonName": "Southfields 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 (part), 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": "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": "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": "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": "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": "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": "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"}], "children": [], "lat": 51.445073, "lon": -0.206602}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUSFS1", "modes": ["tube"], "icsCode": "1000209", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUSFS", "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": "940GZZLUSFS", "lineIdentifier": ["district"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["district"]}], "status": true, "id": "9400ZZLUSFS1", "commonName": "Southfields 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": "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": "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": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Southfields Station,Wimbledon Park Rd,London,SW18"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.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": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.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": "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": "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": "Toilets", "sourceSystemKey": "StaticObjects", "value": "no"}], "children": [], "lat": 51.4454, "lon": -0.206805}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUSFS2", "modes": ["tube"], "icsCode": "1000209", "stopType": "NaptanRailAccessArea", "stationNaptan": "940GZZLUSFS", "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": "940GZZLUSFS", "lineIdentifier": ["district"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["district"]}], "status": true, "id": "9400ZZLUSFS2", "commonName": "Southfields 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": "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": "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 (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": "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": "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": "Photo 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": "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": "Toilets", "sourceSystemKey": "StaticObjects", "value": "no"}], "children": [], "lat": 51.4454, "lon": -0.206805}], "lat": 51.445073, "lon": -0.206602}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "940GZZLUSGN", "modes": ["bus", "tube"], "icsCode": "1000220", "stopType": "NaptanMetroStation", "stationNaptan": "940GZZLUSGN", "lines": [{"$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": "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": "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": "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": "309", "name": "309", "uri": "/Line/309", "type": "Line", "crowding": {"$type": "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": "490000220E1", "stationAtcoCode": "490G00220E1", "lineIdentifier": ["25", "n205", "205", "n25"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490000220S", "stationAtcoCode": "490G00220N", "lineIdentifier": ["309"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "940GZZLUSGN", "lineIdentifier": ["district", "hammersmith-city"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490000220W2", "stationAtcoCode": "490G00220E1", "lineIdentifier": ["205", "25", "n25", "n205"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490000220N", "stationAtcoCode": "490G00220N", "lineIdentifier": ["309"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "bus", "lineIdentifier": ["25", "n205", "205", "n25", "309"]}, {"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["district", "hammersmith-city"]}], "status": true, "id": "940GZZLUSGN", "commonName": "Stepney Green 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": "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": "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": "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": "no"}, {"$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": "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": "Gates", "sourceSystemKey": "StaticObjects", "value": "4"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_478"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_491"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_503"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_520"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_561"}], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490G00220E1", "modes": ["bus"], "icsCode": "1000220", "stopType": "NaptanOnstreetBusCoachStopCluster", "stationNaptan": "490G00220E1", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490G00220E1", "commonName": "Stepney Green Station", "placeType": "StopPoint", "additionalProperties": [], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000220E1", "indicator": "Stop B", "stopLetter": "B", "modes": ["bus"], "icsCode": "1000220", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00220E1", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000220E1", "commonName": "Stepney Green Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.521773, "lon": -0.046988}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000220W2", "indicator": "Stop G", "stopLetter": "G", "modes": ["bus"], "icsCode": "1000220", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00220E1", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000220W2", "commonName": "Stepney Green Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.521705, "lon": -0.046631}], "lat": 51.521705, "lon": -0.046631}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490G00220N", "modes": ["bus"], "icsCode": "1000220", "stopType": "NaptanOnstreetBusCoachStopCluster", "stationNaptan": "490G00220N", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490G00220N", "commonName": "Stepney Green Station", "placeType": "StopPoint", "additionalProperties": [], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000220N", "indicator": "Stop J", "stopLetter": "J", "modes": ["bus"], "icsCode": "1000220", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00220N", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000220N", "commonName": "Stepney Green Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.522623, "lon": -0.04724}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000220S", "indicator": "Stop K", "stopLetter": "K", "modes": ["bus"], "icsCode": "1000220", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00220N", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000220S", "commonName": "Stepney Green Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.522661, "lon": -0.046821}], "lat": 51.522661, "lon": -0.046821}, {"$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": "9400ZZLUSGN", "modes": ["tube"], "icsCode": "1000220", "stopType": "NaptanMetroAccessArea", "stationNaptan": "940GZZLUSGN", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "9400ZZLUSGN", "commonName": "Stepney 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": "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": "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": "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": "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": "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": "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."}], "children": [], "lat": 51.521858, "lon": -0.046596}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUSGN1", "modes": ["tube"], "icsCode": "1000220", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUSGN", "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": "940GZZLUSGN", "lineIdentifier": ["hammersmith-city", "district"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["hammersmith-city", "district"]}], "status": true, "id": "9400ZZLUSGN1", "commonName": "Stepney Green 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": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.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": "Help Points", "sourceSystemKey": "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": "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": "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": "4"}, {"$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": "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"}], "children": [], "lat": 51.521747, "lon": -0.046917}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUSGN2", "modes": ["tube"], "icsCode": "1000220", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUSGN", "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": "940GZZLUSGN", "lineIdentifier": ["hammersmith-city", "district"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["hammersmith-city", "district"]}], "status": true, "id": "9400ZZLUSGN2", "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": "Help Points", "sourceSystemKey": "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": "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": "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": "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": "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": "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": "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.521772, "lon": -0.046815}], "lat": 51.521858, "lon": -0.046596}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "940GZZLUSGP", "modes": ["tube"], "icsCode": "1000224", "stopType": "NaptanMetroStation", "stationNaptan": "940GZZLUSGP", "hubNaptanCode": "HUBSBP", "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": "940GZZLUSGP", "lineIdentifier": ["bakerloo"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["bakerloo"]}], "status": true, "id": "940GZZLUSGP", "commonName": "Stonebridge 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": "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": "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": "Help Points", "sourceSystemKey": "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": "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": "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"}], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUSGP", "modes": ["tube"], "icsCode": "1000224", "stopType": "NaptanMetroAccessArea", "stationNaptan": "940GZZLUSGP", "hubNaptanCode": "HUBSBP", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "9400ZZLUSGP", "commonName": "Stonebridge Park 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": "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": "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": "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": "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": "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"}], "children": [], "lat": 51.543959, "lon": -0.275892}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUSGP1", "modes": ["tube"], "icsCode": "1000224", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUSGP", "hubNaptanCode": "HUBSBP", "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": "940GZZLUSGP", "lineIdentifier": ["bakerloo"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["bakerloo"]}], "status": true, "id": "9400ZZLUSGP1", "commonName": "Stonebridge 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": "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": "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 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": "Stonebridge Park,London Overground Ltd.,North Circular Road,London,NW10 0RL"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "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": "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"}], "children": [], "lat": 51.543976, "lon": -0.275848}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUSGP2", "indicator": "northbound", "modes": ["tube"], "icsCode": "1000224", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUSGP", "hubNaptanCode": "HUBSBP", "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": "940GZZLUSGP", "lineIdentifier": ["bakerloo"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["bakerloo"]}], "status": true, "id": "9400ZZLUSGP2", "commonName": "Stonebridge Park Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$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": "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": "Help Points", "sourceSystemKey": "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 601 4867"}, {"$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": "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": "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": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "0"}], "children": [], "lat": 51.543913, "lon": -0.275807}], "lat": 51.543959, "lon": -0.275892}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "940GZZLUSGT", "modes": ["tube", "bus"], "icsCode": "1000210", "stopType": "NaptanMetroStation", "stationNaptan": "940GZZLUSGT", "lines": [{"$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": "699", "name": "699", "uri": "/Line/699", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$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": "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": "299", "name": "299", "uri": "/Line/299", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "298", "name": "298", "uri": "/Line/298", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "w9", "name": "W9", "uri": "/Line/w9", "type": "Line", "crowding": {"$type": "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": "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": "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": "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": "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": "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", "naptanIdReference": "490000210G", "stationAtcoCode": "490G00210G", "lineIdentifier": ["688", "699", "125", "382", "299", "298"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490000210H", "stationAtcoCode": "490G00210G", "lineIdentifier": ["688", "w9", "628", "w6"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490000210C", "stationAtcoCode": "490G00210G", "lineIdentifier": ["299", "298", "121", "n91", "w6", "616"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490000210F", "stationAtcoCode": "490G00210G", "lineIdentifier": ["n91", "121"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "940GZZLUSGT", "lineIdentifier": ["piccadilly"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490000210B", "stationAtcoCode": "490G00210G", "lineIdentifier": ["616", "w9", "699", "125"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490000210D", "stationAtcoCode": "490G00210G", "lineIdentifier": ["382"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "bus", "lineIdentifier": ["688", "699", "125", "382", "299", "298", "w9", "628", "w6", "121", "n91", "616"]}, {"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["piccadilly"]}], "status": true, "id": "940GZZLUSGT", "commonName": "Southgate 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": "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": "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": "Help Points", "sourceSystemKey": "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": "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": "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": "Payphones", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5794"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5780"}], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490G00210G", "modes": ["bus"], "icsCode": "1000210", "stopType": "NaptanOnstreetBusCoachStopCluster", "stationNaptan": "490G00210G", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490G00210G", "commonName": "Southgate Station", "placeType": "StopPoint", "additionalProperties": [], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000210B", "indicator": "Stop B", "stopLetter": "B", "modes": ["bus"], "icsCode": "1000210", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00210G", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000210B", "commonName": "Southgate Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.632153, "lon": -0.127924}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000210C", "indicator": "Stop C", "stopLetter": "C", "modes": ["bus"], "icsCode": "1000210", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00210G", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000210C", "commonName": "Southgate Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.632108, "lon": -0.127897}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000210D", "indicator": "Stop D", "stopLetter": "D", "modes": ["bus"], "icsCode": "1000210", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00210G", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000210D", "commonName": "Southgate Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.632093, "lon": -0.128114}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000210F", "indicator": "Stop F", "stopLetter": "F", "modes": ["bus"], "icsCode": "1000210", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00210G", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000210F", "commonName": "Southgate Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.631989, "lon": -0.127786}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000210G", "indicator": "Stop G", "stopLetter": "G", "modes": ["bus"], "icsCode": "1000210", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00210G", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000210G", "commonName": "Southgate Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.632391, "lon": -0.128188}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000210H", "indicator": "Stop H", "stopLetter": "H", "modes": ["bus"], "icsCode": "1000210", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00210G", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000210H", "commonName": "Southgate Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.632407, "lon": -0.128058}], "lat": 51.632108, "lon": -0.127897}, {"$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": "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": "Southgate Station,London Underground Ltd.,High St,London,N14"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.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": "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": "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": "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"}], "children": [], "lat": 51.632548, "lon": -0.127864}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUSGT", "modes": ["tube"], "icsCode": "1000210", "stopType": "NaptanMetroAccessArea", "stationNaptan": "940GZZLUSGT", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "9400ZZLUSGT", "commonName": "Southgate 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": "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": "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": "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": "Help Points", "sourceSystemKey": "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": "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": "4"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "no"}], "children": [], "lat": 51.632315, "lon": -0.127816}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUSGT1", "modes": ["tube"], "icsCode": "1000210", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUSGT", "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": "940GZZLUSGT", "lineIdentifier": ["piccadilly"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["piccadilly"]}], "status": true, "id": "9400ZZLUSGT1", "commonName": "Southgate 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": "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": "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": "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": "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": "Help Points", "sourceSystemKey": "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": "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": "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": "Gates", "sourceSystemKey": "StaticObjects", "value": "7"}], "children": [], "lat": 51.632179, "lon": -0.12772}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUSGT2", "modes": ["tube"], "icsCode": "1000210", "stopType": "NaptanRailAccessArea", "stationNaptan": "940GZZLUSGT", "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": "940GZZLUSGT", "lineIdentifier": ["piccadilly"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["piccadilly"]}], "status": true, "id": "9400ZZLUSGT2", "commonName": "Southgate", "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": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$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": "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": "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": "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": "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.632188, "lon": -0.127734}], "lat": 51.632315, "lon": -0.127816}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "940GZZLUSHH", "modes": ["bus", "tube"], "icsCode": "1000211", "stopType": "NaptanMetroStation", "stationNaptan": "940GZZLUSHH", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "398", "name": "398", "uri": "/Line/398", "type": "Line", "crowding": {"$type": "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": "395", "name": "395", "uri": "/Line/395", "type": "Line", "crowding": {"$type": "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": "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": "sl9", "name": "SL9", "uri": "/Line/sl9", "type": "Line", "crowding": {"$type": "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": "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": "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": "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": "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": "640", "name": "640", "uri": "/Line/640", "type": "Line", "crowding": {"$type": "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": "490000211G", "stationAtcoCode": "490G00211G", "lineIdentifier": ["398", "487", "395", "n140", "140", "sl9"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490000211D", "stationAtcoCode": "490G00211G", "lineIdentifier": ["h10", "114", "h12", "398"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "940GZZLUSHH", "lineIdentifier": ["piccadilly"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490000211F", "stationAtcoCode": "490G00211G", "lineIdentifier": ["h9", "sl9", "h12", "140", "640", "114", "n140", "395", "398", "487"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "bus", "lineIdentifier": ["398", "487", "395", "n140", "140", "sl9", "h10", "114", "h12", "h9", "640"]}, {"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["piccadilly"]}], "status": true, "id": "940GZZLUSHH", "commonName": "South Harrow 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": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "5"}, {"$type": "Tfl.Api.Presentation.Entities.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": "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": "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": "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": "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": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5391"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "CarParks_800461"}], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490G00211G", "modes": ["bus"], "icsCode": "1000211", "stopType": "NaptanOnstreetBusCoachStopCluster", "stationNaptan": "490G00211G", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490G00211G", "commonName": "South Harrow Station", "placeType": "StopPoint", "additionalProperties": [], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000211D", "indicator": "Stop D", "stopLetter": "D", "modes": ["bus"], "icsCode": "1000211", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00211G", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000211D", "commonName": "South Harrow Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.564642, "lon": -0.353064}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000211F", "indicator": "Stop F", "stopLetter": "F", "modes": ["bus"], "icsCode": "1000211", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00211G", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000211F", "commonName": "South Harrow Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.564556, "lon": -0.353976}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000211G", "indicator": "Stop G", "stopLetter": "G", "modes": ["bus"], "icsCode": "1000211", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00211G", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000211G", "commonName": "South Harrow Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.564283, "lon": -0.353726}], "lat": 51.564642, "lon": -0.353064}, {"$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": "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": "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": "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": "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": "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": "Help Points", "sourceSystemKey": "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": "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.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": "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": "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"}, {"$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": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "yes"}], "children": [], "lat": 51.564791, "lon": -0.352813}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUSHH", "modes": ["tube"], "icsCode": "1000211", "stopType": "NaptanMetroAccessArea", "stationNaptan": "940GZZLUSHH", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "9400ZZLUSHH", "commonName": "South Harrow 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": "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": "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": "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": "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": "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": "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": "Help Points", "sourceSystemKey": "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": "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.564888, "lon": -0.352492}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUSHH1", "modes": ["tube"], "icsCode": "1000211", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUSHH", "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": "940GZZLUSHH", "lineIdentifier": ["piccadilly"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["piccadilly"]}], "status": true, "id": "9400ZZLUSHH1", "commonName": "South Harrow Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$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": "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": "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": "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": "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": "Bridge", "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": "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": "Help Points", "sourceSystemKey": "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": "Payphones", "sourceSystemKey": "StaticObjects", "value": "1"}], "children": [], "lat": 51.564526, "lon": -0.352332}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUSHH2", "modes": ["tube"], "icsCode": "1000211", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUSHH", "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": "940GZZLUSHH", "lineIdentifier": ["piccadilly"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["piccadilly"]}], "status": true, "id": "9400ZZLUSHH2", "commonName": "South Harrow 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": "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"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.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": "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": "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": "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": "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.564471, "lon": -0.352277}], "lat": 51.564888, "lon": -0.352492}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "940GZZLUSJP", "modes": ["tube", "bus"], "icsCode": "1000221", "stopType": "NaptanMetroStation", "stationNaptan": "940GZZLUSJP", "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"}, {"$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": "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": "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": "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": "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": "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"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "940GZZLUSJP", "lineIdentifier": ["district", "circle"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490010260SC", "stationAtcoCode": "490G00221V", "lineIdentifier": ["148", "11", "24", "26", "n44", "n26", "n11", "n136"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490010260SD", "stationAtcoCode": "490G00221V", "lineIdentifier": ["148", "26", "11", "24", "n11", "n26", "n44", "n136"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["district", "circle"]}, {"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "bus", "lineIdentifier": ["148", "11", "24", "26", "n44", "n26", "n11", "n136"]}], "status": true, "id": "940GZZLUSJP", "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": "Car park", "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": "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": "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": "Facility", "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": "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": "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": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_108"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_118"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_359"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_360"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_646"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_762"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_799"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_4670"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5078"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_3998"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_4884"}], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490G00221V", "modes": ["bus"], "icsCode": "1000221", "stopType": "NaptanOnstreetBusCoachStopCluster", "stationNaptan": "490G00221V", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490G00221V", "commonName": "St James's Park Station", "placeType": "StopPoint", "additionalProperties": [], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490010260SC", "indicator": "Stop SC", "stopLetter": "SC", "modes": ["bus"], "icsCode": "1000221", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00221V", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490010260SC", "commonName": "St James's Park Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.497725, "lon": -0.13469}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490010260SD", "indicator": "Stop SD", "stopLetter": "SD", "modes": ["bus"], "icsCode": "1000221", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00221V", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490010260SD", "commonName": "St James's Park Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.497583, "lon": -0.134797}], "lat": 51.497583, "lon": -0.134797}, {"$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": "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": "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.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": "Facility", "key": "Help Points", "sourceSystemKey": "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": "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": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}], "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": "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": "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"}], "children": [], "lat": 51.499367, "lon": -0.133356}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUSJP", "modes": ["tube"], "icsCode": "1000221", "stopType": "NaptanMetroAccessArea", "stationNaptan": "940GZZLUSJP", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "9400ZZLUSJP", "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": "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": "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": "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": "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": "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": "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": "none"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "0"}], "children": [], "lat": 51.499544, "lon": -0.133608}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUSJP1", "modes": ["tube"], "icsCode": "1000221", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUSJP", "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": "940GZZLUSJP", "lineIdentifier": ["district", "circle"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["district", "circle"]}], "status": true, "id": "9400ZZLUSJP1", "commonName": "St. James's Park 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": "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": "St. James's Park,London Underground Ltd.,Petty France,London,SW1H 0BD"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.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": "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": "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": "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": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "2"}], "children": [], "lat": 51.499377, "lon": -0.134421}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUSJP2", "modes": ["tube"], "icsCode": "1000221", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUSJP", "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": "940GZZLUSJP", "lineIdentifier": ["district", "circle"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["district", "circle"]}], "status": true, "id": "9400ZZLUSJP2", "commonName": "St. James's 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": "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": "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": "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": "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": "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": "Other Facilities", "sourceSystemKey": "StaticObjects", "value": "none"}, {"$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": "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.499343, "lon": -0.134509}], "lat": 51.499544, "lon": -0.133608}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "940GZZLUSJW", "modes": ["tube", "bus"], "icsCode": "1000222", "stopType": "NaptanMetroStation", "stationNaptan": "940GZZLUSJW", "lines": [{"$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": "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": "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": "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": "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": "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", "naptanIdReference": "490000222B", "stationAtcoCode": "490G00222A", "lineIdentifier": ["187", "113", "13", "n113", "46"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "940GZZLUSJW", "lineIdentifier": ["jubilee"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490005318C", "stationAtcoCode": "490G00222A", "lineIdentifier": ["187", "113", "13", "46", "n113"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "bus", "lineIdentifier": ["187", "113", "13", "n113", "46"]}, {"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["jubilee"]}], "status": true, "id": "940GZZLUSJW", "commonName": "St. John's Wood 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": "Euro Cash Machines", "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": "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": "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": "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": "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": "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": "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": "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_7"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_110"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_312"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_590"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_4489"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_4699"}], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490G00222A", "modes": ["bus"], "icsCode": "1000222", "stopType": "NaptanOnstreetBusCoachStopCluster", "stationNaptan": "490G00222A", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490G00222A", "commonName": "St John's Wood Station", "placeType": "StopPoint", "additionalProperties": [], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000222B", "indicator": "Stop B", "stopLetter": "B", "modes": ["bus"], "icsCode": "1000222", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00222A", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000222B", "commonName": "St John's Wood Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.533714, "lon": -0.17362}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490005318C", "indicator": "Stop C", "stopLetter": "C", "modes": ["bus"], "icsCode": "1000222", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00222A", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490005318C", "commonName": "St John's Wood Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.534094, "lon": -0.173764}], "lat": 51.534094, "lon": -0.173764}, {"$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": "9400ZZLUSJW", "modes": ["tube"], "icsCode": "1000222", "stopType": "NaptanMetroAccessArea", "stationNaptan": "940GZZLUSJW", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "9400ZZLUSJW", "commonName": "St. John's Wood Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$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": "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": "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": "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": "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": "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": "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.534521, "lon": -0.173948}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUSJW1", "modes": ["tube"], "icsCode": "1000222", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUSJW", "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": "940GZZLUSJW", "lineIdentifier": ["jubilee"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["jubilee"]}], "status": true, "id": "9400ZZLUSJW1", "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": "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": "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": "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": "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": "Lifts", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$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": "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.534761, "lon": -0.174876}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUSJW2", "modes": ["tube"], "icsCode": "1000222", "stopType": "NaptanRailAccessArea", "stationNaptan": "940GZZLUSJW", "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": "940GZZLUSJW", "lineIdentifier": ["jubilee"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["jubilee"]}], "status": true, "id": "9400ZZLUSJW2", "commonName": "St John's Wood 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": "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": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$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": "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": "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": "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": "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": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "2"}], "children": [], "lat": 51.534778, "lon": -0.174861}], "lat": 51.534521, "lon": -0.173948}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "940GZZLUSKS", "modes": ["bus", "tube"], "icsCode": "1000212", "stopType": "NaptanMetroStation", "stationNaptan": "940GZZLUSKS", "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "14", "name": "14", "uri": "/Line/14", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "940GZZLUSKS", "lineIdentifier": ["circle", "district"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490000212E1", "stationAtcoCode": "490G00212G", "lineIdentifier": ["49", "345"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "940GZZLUSKS", "lineIdentifier": ["piccadilly"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490000212S", "stationAtcoCode": "490G00212G", "lineIdentifier": ["430", "70", "c1", "74", "n74", "n97"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490000212E", "stationAtcoCode": "490G00212G", "lineIdentifier": ["c1", "74", "n97", "n74", "430", "360", "414", "14"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490000212S1", "stationAtcoCode": "490G00212G", "lineIdentifier": ["14", "360", "414"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["circle", "district", "piccadilly"]}, {"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "bus", "lineIdentifier": ["49", "345", "430", "70", "c1", "74", "n74", "n97", "360", "414", "14"]}], "status": true, "id": "940GZZLUSKS", "commonName": "South Kensington 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": "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": "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": "Photo 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": "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": "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": "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": "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": "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": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_150"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_163"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_172"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_187"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_231"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_356"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_378"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_432"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_482"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_781"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5322"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5319"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5111"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_4645"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5577"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5757"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5805"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5817"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5706"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5666"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5790"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_4034"}], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490G00212G", "modes": ["bus"], "icsCode": "1000212", "stopType": "NaptanOnstreetBusCoachStopCluster", "stationNaptan": "490G00212G", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490G00212G", "commonName": "South Kensington Station", "placeType": "StopPoint", "additionalProperties": [], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000212E", "indicator": "Stop E", "stopLetter": "E", "modes": ["bus"], "icsCode": "1000212", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00212G", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000212E", "commonName": "South Kensington Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.494463, "lon": -0.174815}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000212E1", "indicator": "Stop D", "stopLetter": "D", "modes": ["bus"], "icsCode": "1000212", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00212G", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000212E1", "commonName": "South Kensington Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.494167, "lon": -0.175461}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000212S", "indicator": "Stop S", "stopLetter": "S", "modes": ["bus"], "icsCode": "1000212", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00212G", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000212S", "commonName": "South Kensington Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.494504, "lon": -0.174583}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000212S1", "indicator": "Stop T", "stopLetter": "T", "modes": ["bus"], "icsCode": "1000212", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00212G", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000212S1", "commonName": "South Kensington Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.494423, "lon": -0.174586}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000212Z", "indicator": "Stop", "modes": ["bus"], "icsCode": "1000212", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00212G", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000212Z", "commonName": "South Kensington Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.496001, "lon": -0.171973}], "lat": 51.494167, "lon": -0.175461}, {"$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": "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"}, {"$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.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": "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": "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": "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": "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"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.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"}], "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": "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": "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": "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": "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": "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"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.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.495669, "lon": -0.173773}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUSKS", "modes": ["tube"], "icsCode": "1000212", "stopType": "NaptanMetroAccessArea", "stationNaptan": "940GZZLUSKS", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "9400ZZLUSKS", "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": "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": "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": "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": "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": "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": "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": "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": "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.494094, "lon": -0.174138}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUSKS1", "modes": ["tube"], "icsCode": "1000212", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUSKS", "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": "940GZZLUSKS", "lineIdentifier": ["district", "circle"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["district", "circle"]}], "status": true, "id": "9400ZZLUSKS1", "commonName": "South Kensington 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": "South Kensington Station,London Underground Ltd.,Pelham St,London,SW7 2NB"}, {"$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": "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": "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": "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": "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": "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": "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"}], "children": [], "lat": 51.494104, "lon": -0.173057}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUSKS2", "modes": ["tube"], "icsCode": "1000212", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUSKS", "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": "940GZZLUSKS", "lineIdentifier": ["piccadilly"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["piccadilly"]}], "status": true, "id": "9400ZZLUSKS2", "commonName": "South Kensington 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": "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": "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": "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": "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": "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": "Euro Cash Machines", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$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"}], "children": [], "lat": 51.494019, "lon": -0.173363}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUSKS3", "modes": ["tube"], "icsCode": "1000212", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUSKS", "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": "940GZZLUSKS", "lineIdentifier": ["piccadilly"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["piccadilly"]}], "status": true, "id": "9400ZZLUSKS3", "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": "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": "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": "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": "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": "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": "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": "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.494018, "lon": -0.173262}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUSKS4", "indicator": "westbound", "modes": ["tube"], "icsCode": "1000212", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUSKS", "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": "940GZZLUSKS", "lineIdentifier": ["district", "circle"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["district", "circle"]}], "status": true, "id": "9400ZZLUSKS4", "commonName": "South Kensington 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": "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 (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": "Photo Booths", "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": "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": "South Kensington Station,London Underground Ltd.,Pelham St,London,SW7 2NB"}, {"$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": "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": "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": "Lifts", "sourceSystemKey": "StaticObjects", "value": "0"}], "children": [], "lat": 51.494102, "lon": -0.172913}], "lat": 51.494094, "lon": -0.174138}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "940GZZLUSKT", "modes": ["tube"], "icsCode": "1000213", "stopType": "NaptanMetroStation", "stationNaptan": "940GZZLUSKT", "hubNaptanCode": "HUBSOK", "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": "940GZZLUSKT", "lineIdentifier": ["bakerloo"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["bakerloo"]}], "status": true, "id": "940GZZLUSKT", "commonName": "South Kenton 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": "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": "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 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": "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": "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": "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": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUSKT", "modes": ["tube"], "icsCode": "1000213", "stopType": "NaptanMetroAccessArea", "stationNaptan": "940GZZLUSKT", "hubNaptanCode": "HUBSOK", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "9400ZZLUSKT", "commonName": "South Kenton 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": "Escalators", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$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": "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": "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": "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": "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": "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"}], "children": [], "lat": 51.570232, "lon": -0.308433}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUSKT1", "modes": ["tube"], "icsCode": "1000213", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUSKT", "hubNaptanCode": "HUBSOK", "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": "940GZZLUSKT", "lineIdentifier": ["bakerloo"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["bakerloo"]}], "status": true, "id": "9400ZZLUSKT1", "commonName": "South Kenton Underground 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": "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": "Photo 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": "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": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 601 4867"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.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": "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": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}], "children": [], "lat": 51.570341, "lon": -0.308559}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUSKT2", "modes": ["tube"], "icsCode": "1000213", "stopType": "NaptanRailAccessArea", "stationNaptan": "940GZZLUSKT", "hubNaptanCode": "HUBSOK", "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": "940GZZLUSKT", "lineIdentifier": ["bakerloo"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["bakerloo"]}], "status": true, "id": "9400ZZLUSKT2", "commonName": "South Kenton 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": "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": "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": "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": "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": "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": "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": "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.570359, "lon": -0.308572}], "lat": 51.570232, "lon": -0.308433}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "940GZZLUSKW", "modes": ["tube", "bus"], "icsCode": "1000223", "stopType": "NaptanMetroStation", "stationNaptan": "940GZZLUSKW", "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": "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": "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": "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": "940GZZLUSKW", "lineIdentifier": ["northern"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490000223G", "stationAtcoCode": "490G00223G", "lineIdentifier": ["345", "n155", "155"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "940GZZLUSKW", "lineIdentifier": ["victoria"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["northern", "victoria"]}, {"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "bus", "lineIdentifier": ["345", "n155", "155"]}], "status": true, "id": "940GZZLUSKW", "commonName": "Stockwell 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": "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": "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": "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": "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": "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": "Stockwell Station,London Underground Ltd.,Clapham Rd,London,SW9 9AE"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "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": "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": "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": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_630"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_669"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_772"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_814"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_830"}], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490G00223G", "modes": ["bus"], "icsCode": "1000223", "stopType": "NaptanOnstreetBusCoachStopCluster", "stationNaptan": "490G00223G", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490G00223G", "commonName": "Stockwell Station", "placeType": "StopPoint", "additionalProperties": [], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000223G", "indicator": "Stop G", "stopLetter": "G", "modes": ["bus"], "icsCode": "1000223", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00223G", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000223G", "commonName": "Stockwell Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.471699, "lon": -0.123297}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000223Z", "indicator": "Stop", "modes": ["bus"], "icsCode": "1000223", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00223G", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000223Z", "commonName": "Stockwell Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.47124, "lon": -0.123877}], "lat": 51.471699, "lon": -0.123297}, {"$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": "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": "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": "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": "Help Points", "sourceSystemKey": "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": "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"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "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.472438, "lon": -0.122835}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUSKW", "modes": ["tube"], "icsCode": "1000223", "stopType": "NaptanMetroAccessArea", "stationNaptan": "940GZZLUSKW", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "9400ZZLUSKW", "commonName": "Stockwell 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": "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": "Toilets", "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": "Facility", "key": "Help Points", "sourceSystemKey": "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": "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": "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": "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": "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.472184, "lon": -0.122644}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUSKW1", "modes": ["tube"], "icsCode": "1000223", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUSKW", "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": "940GZZLUSKW", "lineIdentifier": ["northern"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["northern"]}], "status": true, "id": "9400ZZLUSKW1", "commonName": "Stockwell 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": "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": "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": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$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": "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": "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": "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": "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"}], "children": [], "lat": 51.471829, "lon": -0.122917}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUSKW2", "modes": ["tube"], "icsCode": "1000223", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUSKW", "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": "940GZZLUSKW", "lineIdentifier": ["northern"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["northern"]}], "status": true, "id": "9400ZZLUSKW2", "commonName": "Stockwell 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": "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": "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": "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": "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": "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": "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": "Stockwell Station,London Underground Ltd.,Clapham Rd,London,SW9 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"}], "children": [], "lat": 51.471811, "lon": -0.122933}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUSKW3", "modes": ["tube"], "icsCode": "1000223", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUSKW", "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": "940GZZLUSKW", "lineIdentifier": ["victoria"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["victoria"]}], "status": true, "id": "9400ZZLUSKW3", "commonName": "Stockwell 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": "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": "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": "Payphones", "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": "Help Points", "sourceSystemKey": "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": "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": "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": "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.471935, "lon": -0.122783}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUSKW4", "modes": ["tube"], "icsCode": "1000223", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUSKW", "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": "940GZZLUSKW", "lineIdentifier": ["victoria"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["victoria"]}], "status": true, "id": "9400ZZLUSKW4", "commonName": "Stockwell 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": "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": "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": "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": "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": "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": "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.4719, "lon": -0.122828}], "lat": 51.472184, "lon": -0.122644}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "940GZZLUSNB", "modes": ["tube", "bus"], "icsCode": "1000207", "stopType": "NaptanMetroStation", "stationNaptan": "940GZZLUSNB", "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": "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": "940GZZLUSNB", "lineIdentifier": ["central"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490000207A", "stationAtcoCode": "490G00207B", "lineIdentifier": ["w14"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490000207B", "stationAtcoCode": "490G00207B", "lineIdentifier": ["w14"]}], "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": "bus", "lineIdentifier": ["w14"]}], "status": true, "id": "940GZZLUSNB", "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": "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": "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": "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": "Snaresbrook Station,London Underground Ltd.,Station Approach,London,E11 1QE"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.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": "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": "ServiceInfo", "key": "Night", "sourceSystemKey": "TransXchangeETL", "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": "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": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490G00207B", "modes": ["bus"], "icsCode": "1000207", "stopType": "NaptanOnstreetBusCoachStopCluster", "stationNaptan": "490G00207B", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490G00207B", "commonName": "Snaresbrook Station", "placeType": "StopPoint", "additionalProperties": [], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000207A", "indicator": "Stop SJ", "stopLetter": "SJ", "modes": ["bus"], "icsCode": "1000207", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00207B", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000207A", "commonName": "Snaresbrook Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.581208, "lon": 0.021363}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000207B", "indicator": "Stop SC", "stopLetter": "SC", "modes": ["bus"], "icsCode": "1000207", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00207B", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000207B", "commonName": "Snaresbrook Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.580963, "lon": 0.021987}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000207E", "indicator": "Stop", "modes": ["bus"], "icsCode": "1000207", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00207B", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000207E", "commonName": "Snaresbrook Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.580532, "lon": 0.022516}], "lat": 51.580532, "lon": 0.022516}, {"$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": "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": "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"}, {"$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": "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": "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": "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": "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)"}], "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": "9400ZZLUSNB", "modes": ["tube"], "icsCode": "1000207", "stopType": "NaptanMetroAccessArea", "stationNaptan": "940GZZLUSNB", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "9400ZZLUSNB", "commonName": "Snaresbrook 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": "Car park", "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": "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": "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": "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": "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": "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": "WiFi", "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.580678, "lon": 0.02144}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUSNB1", "modes": ["tube"], "icsCode": "1000207", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUSNB", "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": "940GZZLUSNB", "lineIdentifier": ["central"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["central"]}], "status": true, "id": "9400ZZLUSNB1", "commonName": "Snaresbrook 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": "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": "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": "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": "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": "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": "Bridge", "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.580705, "lon": 0.021441}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUSNB2", "modes": ["tube"], "icsCode": "1000207", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUSNB", "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": "940GZZLUSNB", "lineIdentifier": ["central"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["central"]}], "status": true, "id": "9400ZZLUSNB2", "commonName": "Snaresbrook 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": "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": "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": "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": "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": "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": "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": "Other Facilities", "sourceSystemKey": "StaticObjects", "value": "post office style queuing for tickets."}], "children": [], "lat": 51.580651, "lon": 0.02141}], "lat": 51.580678, "lon": 0.02144}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "940GZZLUSPU", "modes": ["tube", "bus"], "icsCode": "1000225", "stopType": "NaptanMetroStation", "stationNaptan": "940GZZLUSPU", "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": "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": "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": "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": "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": "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": "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": "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": "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": "n551", "name": "N551", "uri": "/Line/n551", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "940GZZLUSPU", "lineIdentifier": ["central"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490000225T", "stationAtcoCode": "490G00225S", "lineIdentifier": ["133", "8", "56", "n25", "25", "n242", "n8"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "49000225SY", "stationAtcoCode": "490G00225S", "lineIdentifier": ["8", "n25", "25", "n242"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490000225W", "stationAtcoCode": "490G00225S", "lineIdentifier": ["n8", "n25", "25", "4", "133", "100"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490000225U", "stationAtcoCode": "490G00225S", "lineIdentifier": ["n551", "4"]}], "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": "bus", "lineIdentifier": ["133", "8", "56", "n25", "25", "n242", "n8", "4", "100", "n551"]}], "status": true, "id": "940GZZLUSPU", "commonName": "St. Paul's 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": "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": "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": "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": "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": "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": "Euro Cash Machines", "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": "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": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_48"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_71"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_101"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_120"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_126"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_127"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_136"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_203"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_393"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_427"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_557"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5926"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5907"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5929"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5897"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5899"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5918"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5922"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5911"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5906"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5908"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5921"}], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490G00225S", "modes": ["bus"], "icsCode": "1000225", "stopType": "NaptanOnstreetBusCoachStopCluster", "stationNaptan": "490G00225S", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490G00225S", "commonName": "St Paul's Station", "placeType": "StopPoint", "additionalProperties": [], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000225T", "indicator": "Stop SQ", "stopLetter": "SQ", "modes": ["bus"], "icsCode": "1000225", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00225S", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000225T", "commonName": "St Paul's Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.515255, "lon": -0.098505}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000225U", "indicator": "Stop SP", "stopLetter": "SP", "modes": ["bus"], "icsCode": "1000225", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00225S", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000225U", "commonName": "St Paul's Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.515195, "lon": -0.098147}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000225W", "indicator": "Stop SW", "stopLetter": "SW", "modes": ["bus"], "icsCode": "1000225", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00225S", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000225W", "commonName": "St Paul's Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.51544, "lon": -0.097157}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "49000225SY", "indicator": "Stop SY", "stopLetter": "SY", "modes": ["bus"], "icsCode": "1000225", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00225S", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "49000225SY", "commonName": "St Paul's Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.514426, "lon": -0.095628}], "lat": 51.514426, "lon": -0.095628}, {"$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": "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. 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"}], "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": "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": "Bridge", "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": "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": "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": "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": "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": "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": "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": "9400ZZLUSPU", "modes": ["tube"], "icsCode": "1000225", "stopType": "NaptanMetroAccessArea", "stationNaptan": "940GZZLUSPU", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "9400ZZLUSPU", "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": "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": "Lifts", "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": "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": "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": "St. Paul's,London Underground Ltd.,Cheapside,London,EC1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "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": "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.514936, "lon": -0.097567}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUSPU1", "modes": ["tube"], "icsCode": "1000225", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUSPU", "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": "940GZZLUSPU", "lineIdentifier": ["central"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["central"]}], "status": true, "id": "9400ZZLUSPU1", "commonName": "St. Paul's 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": "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": "Photo 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": "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": "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": "Facility", "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": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "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": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}], "children": [], "lat": 51.515173, "lon": -0.098321}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUSPU2", "modes": ["tube"], "icsCode": "1000225", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUSPU", "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": "940GZZLUSPU", "lineIdentifier": ["central"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["central"]}], "status": true, "id": "9400ZZLUSPU2", "commonName": "St. Paul's 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": "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": "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": "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": "Payphones", "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": "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": "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": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}], "children": [], "lat": 51.515192, "lon": -0.098392}], "lat": 51.514936, "lon": -0.097567}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "940GZZLUSRP", "modes": ["tube"], "icsCode": "1000214", "stopType": "NaptanMetroStation", "stationNaptan": "940GZZLUSRP", "hubNaptanCode": "HUBSRU", "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": "940GZZLUSRP", "lineIdentifier": ["central"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["central"]}], "status": true, "id": "940GZZLUSRP", "commonName": "South Ruislip 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": "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": "South Ruislip Station,London Underground Ltd.,Station Approach,Ruislip,Middx,HA4 6TP"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, 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": "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, 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": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_3569"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "CarParks_800462"}], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUSRP", "modes": ["tube"], "icsCode": "1000214", "stopType": "NaptanMetroAccessArea", "stationNaptan": "940GZZLUSRP", "hubNaptanCode": "HUBSRU", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "9400ZZLUSRP", "commonName": "South Ruislip 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": "South Ruislip Station,London Underground Ltd.,Station Approach,Ruislip,Middx,HA4 6TP"}, {"$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": "Help Points", "sourceSystemKey": "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": "Toilets", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$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": "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": "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.556853, "lon": -0.398915}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUSRP1", "modes": ["tube"], "icsCode": "1000214", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUSRP", "hubNaptanCode": "HUBSRU", "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": "940GZZLUSRP", "lineIdentifier": ["central"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["central"]}], "status": true, "id": "9400ZZLUSRP1", "commonName": "South Ruislip 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": "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": "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": "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": "South Ruislip Station,London Underground Ltd.,Station Approach,Ruislip,Middx,HA4 6TP"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo 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": "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"}], "children": [], "lat": 51.556967, "lon": -0.399373}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUSRP2", "modes": ["tube"], "icsCode": "1000214", "stopType": "NaptanRailAccessArea", "stationNaptan": "940GZZLUSRP", "hubNaptanCode": "HUBSRU", "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": "940GZZLUSRP", "lineIdentifier": ["central"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["central"]}], "status": true, "id": "9400ZZLUSRP2", "commonName": "South Ruislip 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": "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": "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": "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": "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": "South Ruislip Station,London Underground Ltd.,Station Approach,Ruislip,Middx,HA4 6TP"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.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": "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.556958, "lon": -0.399373}], "lat": 51.556853, "lon": -0.398915}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "940GZZLUSSQ", "modes": ["bus", "tube"], "icsCode": "1000206", "stopType": "NaptanMetroStation", "stationNaptan": "940GZZLUSSQ", "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "11", "name": "11", "uri": "/Line/11", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "940GZZLUSSQ", "lineIdentifier": ["circle", "district"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490000206H", "stationAtcoCode": "490G00206H", "lineIdentifier": ["22", "n22", "19", "319", "c1", "n19"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490000206K", "stationAtcoCode": "490G00206H", "lineIdentifier": ["360", "211", "n11", "n137", "452", "137", "11"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490015175C", "stationAtcoCode": "490G00206H", "lineIdentifier": ["c1", "n19", "n137", "n22", "137", "22", "452", "19"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490000206N", "stationAtcoCode": "490G00206H", "lineIdentifier": ["360"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490000206D", "stationAtcoCode": "490G00206H", "lineIdentifier": ["n19", "c1", "452", "n22", "19", "22", "137", "n137"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["circle", "district"]}, {"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "bus", "lineIdentifier": ["22", "n22", "19", "319", "c1", "n19", "360", "211", "n11", "n137", "452", "137", "11"]}], "status": true, "id": "940GZZLUSSQ", "commonName": "Sloane 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": "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": "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": "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": "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": "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"}, {"$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": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_5"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_211"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_259"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_280"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_395"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_423"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5465"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5512"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5091"}], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490G00206H", "modes": ["bus"], "icsCode": "1000206", "stopType": "NaptanOnstreetBusCoachStopCluster", "stationNaptan": "490G00206H", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490G00206H", "commonName": "Sloane Square Station", "placeType": "StopPoint", "additionalProperties": [], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000206D", "indicator": "Stop D", "stopLetter": "D", "modes": ["bus"], "icsCode": "1000206", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00206H", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000206D", "commonName": "Sloane Square Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.493262, "lon": -0.156092}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000206H", "indicator": "Stop H", "stopLetter": "H", "modes": ["bus"], "icsCode": "1000206", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00206H", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000206H", "commonName": "Sloane Square Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.49226, "lon": -0.15704}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000206K", "indicator": "Stop K", "stopLetter": "K", "modes": ["bus"], "icsCode": "1000206", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00206H", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000206K", "commonName": "Sloane Square Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.491449, "lon": -0.157491}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000206N", "indicator": "Stop B", "stopLetter": "B", "modes": ["bus"], "icsCode": "1000206", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00206H", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000206N", "commonName": "Sloane Square Station / Symon Street", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.492669, "lon": -0.158421}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000206S", "indicator": "->S", "stopLetter": "->S", "modes": ["bus"], "icsCode": "1000206", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00206H", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000206S", "commonName": "Sloane Square Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.492696, "lon": -0.156706}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490015175C", "indicator": "Stop C", "stopLetter": "C", "modes": ["bus"], "icsCode": "1000206", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00206H", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490015175C", "commonName": "Sloane Square", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.493092, "lon": -0.157871}], "lat": 51.492669, "lon": -0.158421}, {"$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": "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": "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": "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": "9400ZZLUSSQ", "modes": ["tube"], "icsCode": "1000206", "stopType": "NaptanMetroAccessArea", "stationNaptan": "940GZZLUSSQ", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "9400ZZLUSSQ", "commonName": "Sloane Square 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": "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": "Sloane Square Station,London Underground Ltd.,Sloane Square,London,SW1W 8BB"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.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": "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": "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": "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": "Gates", "sourceSystemKey": "StaticObjects", "value": "7"}], "children": [], "lat": 51.49227, "lon": -0.156377}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUSSQ1", "modes": ["tube"], "icsCode": "1000206", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUSSQ", "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": "940GZZLUSSQ", "lineIdentifier": ["circle", "district"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["circle", "district"]}], "status": true, "id": "9400ZZLUSSQ1", "commonName": "Sloane Square 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, 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": "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": "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": "Sloane Square Station,London Underground Ltd.,Sloane Square,London,SW1W 8BB"}, {"$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": "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": "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.492338, "lon": -0.156144}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUSSQ2", "modes": ["tube"], "icsCode": "1000206", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUSSQ", "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": "940GZZLUSSQ", "lineIdentifier": ["circle", "district"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["circle", "district"]}], "status": true, "id": "9400ZZLUSSQ2", "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": "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": "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": "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": "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": "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": "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": "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": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "0"}], "children": [], "lat": 51.492309, "lon": -0.15603}], "lat": 51.49227, "lon": -0.156377}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "940GZZLUSTD", "modes": ["tube"], "icsCode": "1000226", "stopType": "NaptanMetroStation", "stationNaptan": "940GZZLUSTD", "hubNaptanCode": "HUBSRA", "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": "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": "940GZZLUSTD", "lineIdentifier": ["central"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "940GZZLUSTD", "lineIdentifier": ["jubilee"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["central", "jubilee"]}], "status": true, "id": "940GZZLUSTD", "commonName": "Stratford 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": "Cash Machines", "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": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$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": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$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": "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": "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": "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": "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": "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": "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": "9400ZZLUSTD", "modes": ["tube"], "icsCode": "1000226", "stopType": "NaptanMetroAccessArea", "stationNaptan": "940GZZLUSTD", "hubNaptanCode": "HUBSRA", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "9400ZZLUSTD", "commonName": "Stratford Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$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": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$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": "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": "Lifts", "sourceSystemKey": "StaticObjects", "value": "5"}, {"$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": "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": "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": "Photo 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"}], "children": [], "lat": 51.541806, "lon": -0.003458}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUSTD1", "indicator": "Platform 3A", "stopLetter": "3A", "modes": ["tube"], "icsCode": "1000226", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUSTD", "hubNaptanCode": "HUBSRA", "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": "940GZZLUSTD", "lineIdentifier": ["central"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["central"]}], "status": true, "id": "9400ZZLUSTD1", "commonName": "Stratford 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"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.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": "Lifts", "sourceSystemKey": "StaticObjects", "value": "5"}, {"$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": "Cash Machines", "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": "Euro Cash Machines", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$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": "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"}, {"$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": "Help 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.542326, "lon": -0.002311}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUSTD2", "indicator": "Platform 3", "stopLetter": "3", "modes": ["tube"], "icsCode": "1000226", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUSTD", "hubNaptanCode": "HUBSRA", "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": "940GZZLUSTD", "lineIdentifier": ["central"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["central"]}], "status": true, "id": "9400ZZLUSTD2", "commonName": "Stratford 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": "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": "Payphones", "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": "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": "Stratford Station BR Station St,London,E15 1DE"}, {"$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": "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": "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"}], "children": [], "lat": 51.542328, "lon": -0.002426}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUSTD3", "indicator": "Platform 6", "stopLetter": "6", "modes": ["tube"], "icsCode": "1000226", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUSTD", "hubNaptanCode": "HUBSRA", "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": "940GZZLUSTD", "lineIdentifier": ["jubilee"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["jubilee"]}], "status": true, "id": "9400ZZLUSTD3", "commonName": "Stratford 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": "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": "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": "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": "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": "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": "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": "Cash Machines", "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": "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": "Escalators", "sourceSystemKey": "StaticObjects", "value": "2"}], "children": [], "lat": 51.54233, "lon": -0.002541}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUSTD4", "indicator": "Platform 13", "stopLetter": "13", "modes": ["tube"], "icsCode": "1000226", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUSTD", "hubNaptanCode": "HUBSRA", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "9400ZZLUSTD4", "commonName": "Stratford Underground 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": "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": "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": "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": "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": "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": "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": "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"}, {"$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"}], "children": [], "lat": 51.540512, "lon": -0.0035}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUSTD5", "indicator": "Platform 14", "stopLetter": "14", "modes": ["tube"], "icsCode": "1000226", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUSTD", "hubNaptanCode": "HUBSRA", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "9400ZZLUSTD5", "commonName": "Stratford Underground 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": "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": "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": "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": "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": "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": "Help Points", "sourceSystemKey": "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": "Ticket Halls", "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": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "4"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "5"}], "children": [], "lat": 51.54051, "lon": -0.003356}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUSTD6", "indicator": "Platform 15", "stopLetter": "15", "modes": ["tube"], "icsCode": "1000226", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUSTD", "hubNaptanCode": "HUBSRA", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "9400ZZLUSTD6", "commonName": "Stratford Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$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": "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": "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": "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": "23"}, {"$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": "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": "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": "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.540507, "lon": -0.003212}], "lat": 51.541806, "lon": -0.003458}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "940GZZLUSTM", "modes": ["tube", "bus"], "icsCode": "1000219", "stopType": "NaptanMetroStation", "stationNaptan": "940GZZLUSTM", "lines": [{"$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": "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": "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": "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": "142", "name": "142", "uri": "/Line/142", "type": "Line", "crowding": {"$type": "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": "490000219N", "stationAtcoCode": "490G00219A", "lineIdentifier": ["h12", "n98"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "940GZZLUSTM", "lineIdentifier": ["jubilee"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490000219A", "stationAtcoCode": "490G00219A", "lineIdentifier": ["h12", "324", "n98", "142"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490000219B", "stationAtcoCode": "490G00219A", "lineIdentifier": ["324", "142"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "bus", "lineIdentifier": ["h12", "n98", "324", "142"]}, {"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["jubilee"]}], "status": true, "id": "940GZZLUSTM", "commonName": "Stanmore 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": "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": "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": "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": "Toilets", "sourceSystemKey": "StaticObjects", "value": "yes (male, female, disabled/baby-changing facilities)"}, {"$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": "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": "Stanmore Station,London Underground Ltd.,London Rd,Stanmore,Middx,HA7 4PD"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.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": "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": "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"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "CarParks_800492"}], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490G00219A", "modes": ["bus"], "icsCode": "1000219", "stopType": "NaptanOnstreetBusCoachStopCluster", "stationNaptan": "490G00219A", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490G00219A", "commonName": "Stanmore Station", "placeType": "StopPoint", "additionalProperties": [], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000219A", "indicator": "Stop A", "stopLetter": "A", "modes": ["bus"], "icsCode": "1000219", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00219A", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000219A", "commonName": "Stanmore Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.619665, "lon": -0.303793}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000219B", "indicator": "Stop B", "stopLetter": "B", "modes": ["bus"], "icsCode": "1000219", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00219A", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000219B", "commonName": "Stanmore Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.619916, "lon": -0.303711}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000219N", "indicator": "Stop", "modes": ["bus"], "icsCode": "1000219", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00219A", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000219N", "commonName": "Stanmore Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.619725, "lon": -0.302982}], "lat": 51.619725, "lon": -0.302982}, {"$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": "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": "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": "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": "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": "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": "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": "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": "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": "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.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": "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": "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"}, {"$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."}], "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": "9400ZZLUSTM", "modes": ["tube"], "icsCode": "1000219", "stopType": "NaptanMetroAccessArea", "stationNaptan": "940GZZLUSTM", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "9400ZZLUSTM", "commonName": "Stanmore 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": "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": "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": "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": "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": "Help Points", "sourceSystemKey": "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": "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": "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, disabled/baby-changing facilities)"}], "children": [], "lat": 51.619839, "lon": -0.303266}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUSTM1", "modes": ["tube"], "icsCode": "1000219", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUSTM", "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": "940GZZLUSTM", "lineIdentifier": ["jubilee"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["jubilee"]}], "status": true, "id": "9400ZZLUSTM1", "commonName": "Stanmore 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": "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": "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": "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, 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": "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": "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": "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": "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.619175, "lon": -0.302742}], "lat": 51.619839, "lon": -0.303266}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "940GZZLUSUH", "modes": ["tube"], "icsCode": "1000227", "stopType": "NaptanMetroStation", "stationNaptan": "940GZZLUSUH", "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": "940GZZLUSUH", "lineIdentifier": ["piccadilly"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["piccadilly"]}], "status": true, "id": "940GZZLUSUH", "commonName": "Sudbury Hill 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": "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": "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": "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": "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": "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": "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": [{"$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": "9400ZZLUSUH", "modes": ["tube"], "icsCode": "1000227", "stopType": "NaptanMetroAccessArea", "stationNaptan": "940GZZLUSUH", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "9400ZZLUSUH", "commonName": "Sudbury 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": "Help Points", "sourceSystemKey": "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"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.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": "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": "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": "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": "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"}], "children": [], "lat": 51.556946, "lon": -0.336435}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUSUH1", "modes": ["tube"], "icsCode": "1000227", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUSUH", "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": "940GZZLUSUH", "lineIdentifier": ["piccadilly"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["piccadilly"]}], "status": true, "id": "9400ZZLUSUH1", "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": "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": "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": "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": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$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"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.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": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}], "children": [], "lat": 51.557043, "lon": -0.336951}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUSUH2", "modes": ["tube"], "icsCode": "1000227", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUSUH", "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": "940GZZLUSUH", "lineIdentifier": ["piccadilly"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["piccadilly"]}], "status": true, "id": "9400ZZLUSUH2", "commonName": "Sudbury Hill Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$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": "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": "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": "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": "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": "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.557005, "lon": -0.336837}], "lat": 51.556946, "lon": -0.336435}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "940GZZLUSUT", "modes": ["tube", "bus"], "icsCode": "1000228", "stopType": "NaptanMetroStation", "stationNaptan": "940GZZLUSUT", "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": "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": "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": "204", "name": "204", "uri": "/Line/204", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "940GZZLUSUT", "lineIdentifier": ["piccadilly"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490000228D", "stationAtcoCode": "490G00228E", "lineIdentifier": ["487", "h17"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490000228E", "stationAtcoCode": "490G00228E", "lineIdentifier": ["h17", "487"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490000228A", "stationAtcoCode": "490G002288", "lineIdentifier": ["204"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490000228B", "stationAtcoCode": "490G002288", "lineIdentifier": ["204"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["piccadilly"]}, {"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "bus", "lineIdentifier": ["487", "h17", "204"]}], "status": true, "id": "940GZZLUSUT", "commonName": "Sudbury Town 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": "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": "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": "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": "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": "Facility", "key": "Help Points", "sourceSystemKey": "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": "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": "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"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_4431"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "CarParks_800463"}], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490G002288", "modes": ["bus"], "icsCode": "1000228", "stopType": "NaptanOnstreetBusCoachStopCluster", "stationNaptan": "490G002288", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490G002288", "commonName": "Sudbury Town Station", "placeType": "StopPoint", "additionalProperties": [], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000228A", "indicator": "Stop A", "stopLetter": "A", "modes": ["bus"], "icsCode": "1000228", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G002288", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000228A", "commonName": "Sudbury Town Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.550958, "lon": -0.31522}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000228B", "indicator": "Stop B", "stopLetter": "B", "modes": ["bus"], "icsCode": "1000228", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G002288", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000228B", "commonName": "Sudbury Town Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.551053, "lon": -0.315563}], "lat": 51.550958, "lon": -0.31522}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490G00228E", "modes": ["bus"], "icsCode": "1000228", "stopType": "NaptanOnstreetBusCoachStopCluster", "stationNaptan": "490G00228E", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490G00228E", "commonName": "Sudbury Town Station", "placeType": "StopPoint", "additionalProperties": [], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000228D", "indicator": "Stop D", "stopLetter": "D", "modes": ["bus"], "icsCode": "1000228", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00228E", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000228D", "commonName": "Sudbury Town Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.549683, "lon": -0.317243}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000228E", "indicator": "Stop E", "stopLetter": "E", "modes": ["bus"], "icsCode": "1000228", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00228E", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000228E", "commonName": "Sudbury Town Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.549557, "lon": -0.317233}], "lat": 51.549683, "lon": -0.317243}, {"$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": "9400ZZLUSUT", "modes": ["tube"], "icsCode": "1000228", "stopType": "NaptanMetroAccessArea", "stationNaptan": "940GZZLUSUT", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "9400ZZLUSUT", "commonName": "Sudbury 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": "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": "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": "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": "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": "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"}], "children": [], "lat": 51.550815, "lon": -0.315745}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUSUT1", "modes": ["tube"], "icsCode": "1000228", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUSUT", "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": "940GZZLUSUT", "lineIdentifier": ["piccadilly"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["piccadilly"]}], "status": true, "id": "9400ZZLUSUT1", "commonName": "Sudbury 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": "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": "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": "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": "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": "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": "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": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "4"}], "children": [], "lat": 51.550797, "lon": -0.315774}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUSUT2", "modes": ["tube"], "icsCode": "1000228", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUSUT", "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": "940GZZLUSUT", "lineIdentifier": ["piccadilly"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["piccadilly"]}], "status": true, "id": "9400ZZLUSUT2", "commonName": "Sudbury Town 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": "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": "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": "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": "Help Points", "sourceSystemKey": "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": "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.55076, "lon": -0.315689}], "lat": 51.550815, "lon": -0.315745}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "940GZZLUSVS", "modes": ["tube"], "icsCode": "1000201", "stopType": "NaptanMetroStation", "stationNaptan": "940GZZLUSVS", "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"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "940GZZLUSVS", "lineIdentifier": ["victoria"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["victoria"]}], "status": true, "id": "940GZZLUSVS", "commonName": "Seven Sisters 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": "Bridge", "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": "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": "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": "ServiceInfo", "key": "Night", "sourceSystemKey": "TransXchangeETL", "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": "Photo 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": "Toilets", "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": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "3"}], "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": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.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": "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": "Gates", "sourceSystemKey": "StaticObjects", "value": "13"}, {"$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": "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": "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": "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": "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"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.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": "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"}], "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": "9400ZZLUSVS", "modes": ["tube"], "icsCode": "1000201", "stopType": "NaptanMetroAccessArea", "stationNaptan": "940GZZLUSVS", "hubNaptanCode": "HUBSVS", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "9400ZZLUSVS", "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": "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": "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": "Photo 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": "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": "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": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "2"}], "children": [], "lat": 51.58333, "lon": -0.072584}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUSVS1", "modes": ["tube"], "icsCode": "1000201", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUSVS", "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"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "940GZZLUSVS", "lineIdentifier": ["victoria"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["victoria"]}], "status": true, "id": "9400ZZLUSVS1", "commonName": "Seven Sisters 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": "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": "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"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.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": "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": "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": "Help 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"}], "children": [], "lat": 51.582433, "lon": -0.073863}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUSVS2", "modes": ["tube"], "icsCode": "1000201", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUSVS", "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"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "940GZZLUSVS", "lineIdentifier": ["victoria"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["victoria"]}], "status": true, "id": "9400ZZLUSVS2", "commonName": "Seven Sisters 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": "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": "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": "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": "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": "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": "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": "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": "13"}], "children": [], "lat": 51.58239, "lon": -0.07398}], "lat": 51.58333, "lon": -0.072584}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "940GZZLUSWC", "modes": ["tube", "bus"], "icsCode": "1000230", "stopType": "NaptanMetroStation", "stationNaptan": "940GZZLUSWC", "lines": [{"$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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "603", "name": "603", "uri": "/Line/603", "type": "Line", "crowding": {"$type": "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": "490015162L", "stationAtcoCode": "490G00230N", "lineIdentifier": ["n28", "c11", "31", "113", "187", "n31", "268", "13", "n113"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490015162M", "stationAtcoCode": "490G00230N", "lineIdentifier": ["n31", "46"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "940GZZLUSWC", "lineIdentifier": ["jubilee"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490000230N", "stationAtcoCode": "490G00230N", "lineIdentifier": ["603"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490000230D", "stationAtcoCode": "490G00230N", "lineIdentifier": ["13", "268", "113", "187", "46", "603", "n113"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490000230E", "stationAtcoCode": "490G00230N", "lineIdentifier": ["31", "n31", "c11", "n28"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "bus", "lineIdentifier": ["n28", "c11", "31", "113", "187", "n31", "268", "13", "n113", "46", "603"]}, {"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["jubilee"]}], "status": true, "id": "940GZZLUSWC", "commonName": "Swiss Cottage 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": "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": "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": "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": "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": "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": "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": "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_5895"}, {"$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": "490G00230N", "modes": ["bus"], "icsCode": "1000230", "stopType": "NaptanOnstreetBusCoachStopCluster", "stationNaptan": "490G00230N", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490G00230N", "commonName": "Swiss Cottage Station", "placeType": "StopPoint", "additionalProperties": [], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000230D", "indicator": "Stop D", "stopLetter": "D", "modes": ["bus"], "icsCode": "1000230", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00230N", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000230D", "commonName": "Swiss Cottage Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.542894, "lon": -0.174075}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000230E", "indicator": "Stop E", "stopLetter": "E", "modes": ["bus"], "icsCode": "1000230", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00230N", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000230E", "commonName": "Swiss Cottage Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.54251, "lon": -0.173715}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000230N", "indicator": "Stop N", "stopLetter": "N", "modes": ["bus"], "icsCode": "1000230", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00230N", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000230N", "commonName": "Swiss Cottage Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.542408, "lon": -0.175262}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490015162L", "indicator": "Stop L", "stopLetter": "L", "modes": ["bus"], "icsCode": "1000230", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00230N", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490015162L", "commonName": "Swiss Cottage Stn / Finchley Road", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.543146, "lon": -0.175247}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490015162M", "indicator": "Stop M", "stopLetter": "M", "modes": ["bus"], "icsCode": "1000230", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00230N", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490015162M", "commonName": "Swiss Cottage Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.542293, "lon": -0.175325}], "lat": 51.542894, "lon": -0.174075}, {"$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": "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": "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": "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": "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": "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"}], "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": "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": "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": "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": "9400ZZLUSWC", "modes": ["tube"], "icsCode": "1000230", "stopType": "NaptanMetroAccessArea", "stationNaptan": "940GZZLUSWC", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "9400ZZLUSWC", "commonName": "Swiss Cottage 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": "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"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo 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": "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": "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": "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"}, {"$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": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "2"}], "children": [], "lat": 51.543681, "lon": -0.174894}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUSWC1", "modes": ["tube"], "icsCode": "1000230", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUSWC", "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": "940GZZLUSWC", "lineIdentifier": ["jubilee"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["jubilee"]}], "status": true, "id": "9400ZZLUSWC1", "commonName": "Swiss Cottage 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": "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": "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": "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": "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": "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": "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"}], "children": [], "lat": 51.543606, "lon": -0.175229}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUSWC2", "modes": ["tube"], "icsCode": "1000230", "stopType": "NaptanRailAccessArea", "stationNaptan": "940GZZLUSWC", "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": "940GZZLUSWC", "lineIdentifier": ["jubilee"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["jubilee"]}], "status": true, "id": "9400ZZLUSWC2", "commonName": "Swiss Cottage 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": "Bridge", "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": "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": "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": "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": "Payphones", "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": "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": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}], "children": [], "lat": 51.543597, "lon": -0.175244}], "lat": 51.543681, "lon": -0.174894}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "940GZZLUSWF", "modes": ["tube", "bus"], "icsCode": "1000217", "stopType": "NaptanMetroStation", "stationNaptan": "940GZZLUSWF", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "w13", "name": "W13", "uri": "/Line/w13", "type": "Line", "crowding": {"$type": "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": "549", "name": "549", "uri": "/Line/549", "type": "Line", "crowding": {"$type": "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": "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": "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": "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", "naptanIdReference": "490000217E", "stationAtcoCode": "490G00217D", "lineIdentifier": ["w13", "n55", "549", "179"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "940GZZLUSWF", "lineIdentifier": ["central"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490000217D", "stationAtcoCode": "490G00217D", "lineIdentifier": ["w12", "w14"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490015122C", "stationAtcoCode": "490G15122C", "lineIdentifier": ["w14", "w12", "w13", "549", "n55", "179"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "bus", "lineIdentifier": ["w13", "n55", "549", "179", "w12", "w14"]}, {"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["central"]}], "status": true, "id": "940GZZLUSWF", "commonName": "South Woodford 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": "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": "Help Points", "sourceSystemKey": "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": "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": "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": "Payphones", "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": "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": "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": "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": "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"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5680"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5795"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "CarParks_800489"}], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490G00217D", "modes": ["bus"], "icsCode": "1000217", "stopType": "NaptanOnstreetBusCoachStopCluster", "stationNaptan": "490G00217D", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490G00217D", "commonName": "South Woodford Station", "placeType": "StopPoint", "additionalProperties": [], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000217D", "indicator": "Stop D", "stopLetter": "D", "modes": ["bus"], "icsCode": "1000217", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00217D", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000217D", "commonName": "South Woodford Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.592008, "lon": 0.027631}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000217E", "indicator": "Stop E", "stopLetter": "E", "modes": ["bus"], "icsCode": "1000217", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00217D", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000217E", "commonName": "South Woodford Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.591591, "lon": 0.027815}], "lat": 51.592008, "lon": 0.027631}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490G15122C", "modes": ["bus"], "icsCode": "1000217", "stopType": "NaptanOnstreetBusCoachStopCluster", "stationNaptan": "490G15122C", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490G15122C", "commonName": "South Woodford Station", "placeType": "StopPoint", "additionalProperties": [], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490015122C", "indicator": "Stop C", "stopLetter": "C", "modes": ["bus"], "icsCode": "1000217", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G15122C", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490015122C", "commonName": "South Woodford Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.59131, "lon": 0.028986}], "lat": 51.59131, "lon": 0.028986}, {"$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": "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": "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": "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": "Toilets", "sourceSystemKey": "StaticObjects", "value": "yes (male, female)"}, {"$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": "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": "Payphones", "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": "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.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": "9400ZZLUSWF", "modes": ["tube"], "icsCode": "1000217", "stopType": "NaptanMetroAccessArea", "stationNaptan": "940GZZLUSWF", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "9400ZZLUSWF", "commonName": "South Woodford 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": "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 Eastbound 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": "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": "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": "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": "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": "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": "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.591907, "lon": 0.027338}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUSWF1", "modes": ["tube"], "icsCode": "1000217", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUSWF", "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": "940GZZLUSWF", "lineIdentifier": ["central"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["central"]}], "status": true, "id": "9400ZZLUSWF1", "commonName": "South Woodford Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$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": "Boarding Ramps", "sourceSystemKey": "StaticObjects", "value": "yes Eastbound 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": "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": "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": "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": "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": "Toilets", "sourceSystemKey": "StaticObjects", "value": "yes (male, female)"}, {"$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": "2"}], "children": [], "lat": 51.591753, "lon": 0.02736}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUSWF2", "modes": ["tube"], "icsCode": "1000217", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUSWF", "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": "940GZZLUSWF", "lineIdentifier": ["central"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["central"]}], "status": true, "id": "9400ZZLUSWF2", "commonName": "South Woodford 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": "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": "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": "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": "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": "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": "South Woodford Station,London Underground Ltd.,George Lane,London,E18 1JJ"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, 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": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "7"}], "children": [], "lat": 51.591682, "lon": 0.027342}], "lat": 51.591907, "lon": 0.027338}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "940GZZLUSWK", "modes": ["tube", "bus"], "icsCode": "1000215", "stopType": "NaptanMetroStation", "stationNaptan": "940GZZLUSWK", "lines": [{"$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": "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": "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": "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": "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", "naptanIdReference": "490013323SA", "stationAtcoCode": "490G13323SA", "lineIdentifier": ["63", "40", "n63", "n89"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "940GZZLUSWK", "lineIdentifier": ["jubilee"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490013323SB", "stationAtcoCode": "490G13323SA", "lineIdentifier": ["63", "40", "n63", "n89"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "bus", "lineIdentifier": ["63", "40", "n63", "n89"]}, {"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["jubilee"]}], "status": true, "id": "940GZZLUSWK", "commonName": "Southwark 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": "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": "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": "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": "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": "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": "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": "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": "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"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_80"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_193"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_195"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_196"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_197"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_230"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_240"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_272"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_421"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_645"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_792"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_839"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5865"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5940"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5949"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5822"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5814"}], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490G13323SA", "modes": ["bus"], "icsCode": "1000215", "stopType": "NaptanOnstreetBusCoachStopCluster", "stationNaptan": "490G13323SA", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490G13323SA", "commonName": "Southwark Station", "placeType": "StopPoint", "additionalProperties": [], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490013323SA", "indicator": "Stop SA", "stopLetter": "SA", "modes": ["bus"], "icsCode": "1000215", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G13323SA", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490013323SA", "commonName": "Southwark Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.504464, "lon": -0.104617}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490013323SB", "indicator": "Stop SB", "stopLetter": "SB", "modes": ["bus"], "icsCode": "1000215", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G13323SA", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490013323SB", "commonName": "Southwark Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.503256, "lon": -0.104451}], "lat": 51.503256, "lon": -0.104451}, {"$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": "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": "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": "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": "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": "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": "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"}], "children": [], "lat": 51.504202, "lon": -0.107337}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUSWK", "modes": ["tube"], "icsCode": "1000215", "stopType": "NaptanMetroAccessArea", "stationNaptan": "940GZZLUSWK", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "9400ZZLUSWK", "commonName": "Southwark 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": "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": "Help Points", "sourceSystemKey": "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": "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": "2"}, {"$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": "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": "Gates", "sourceSystemKey": "StaticObjects", "value": "19"}], "children": [], "lat": 51.503976, "lon": -0.10494}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUSWK1", "indicator": "Eastbound", "modes": ["tube"], "icsCode": "1000215", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUSWK", "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": "940GZZLUSWK", "lineIdentifier": ["jubilee"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["jubilee"]}], "status": true, "id": "9400ZZLUSWK1", "commonName": "Southwark 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": "Payphones", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$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": "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": "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": "Escalators", "sourceSystemKey": "StaticObjects", "value": "8"}, {"$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": "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.504302, "lon": -0.105632}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUSWK2", "indicator": "Westbound", "modes": ["tube"], "icsCode": "1000215", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUSWK", "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": "940GZZLUSWK", "lineIdentifier": ["jubilee"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["jubilee"]}], "status": true, "id": "9400ZZLUSWK2", "commonName": "Southwark Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$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": "Help Points", "sourceSystemKey": "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": "Toilets", "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": "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": "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": "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": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "2"}], "children": [], "lat": 51.50427, "lon": -0.105331}], "lat": 51.50427, "lon": -0.105331}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "940GZZLUSWN", "modes": ["bus", "tube"], "icsCode": "1000216", "stopType": "NaptanMetroStation", "stationNaptan": "940GZZLUSWN", "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": "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": "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": "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": "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": "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", "naptanIdReference": "490000216D", "stationAtcoCode": "490G00216C", "lineIdentifier": ["131", "152", "655", "219", "n155", "57"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490000216C", "stationAtcoCode": "490G00216C", "lineIdentifier": ["655", "152", "131", "219", "n155", "57"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "940GZZLUSWN", "lineIdentifier": ["northern"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "bus", "lineIdentifier": ["131", "152", "655", "219", "n155", "57"]}, {"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["northern"]}], "status": true, "id": "940GZZLUSWN", "commonName": "South Wimbledon 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": "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": "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": "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"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.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": "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": "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"}], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490G00216C", "modes": ["bus"], "icsCode": "1000216", "stopType": "NaptanOnstreetBusCoachStopCluster", "stationNaptan": "490G00216C", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490G00216C", "commonName": "South Wimbledon Station", "placeType": "StopPoint", "additionalProperties": [], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000216C", "indicator": "Stop SF", "stopLetter": "SF", "modes": ["bus"], "icsCode": "1000216", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00216C", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000216C", "commonName": "South Wimbledon Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.41557, "lon": -0.191578}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000216D", "indicator": "Stop SZ", "stopLetter": "SZ", "modes": ["bus"], "icsCode": "1000216", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00216C", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000216D", "commonName": "South Wimbledon Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.415715, "lon": -0.190508}], "lat": 51.41557, "lon": -0.191578}, {"$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": "9400ZZLUSWN", "modes": ["tube"], "icsCode": "1000216", "stopType": "NaptanMetroAccessArea", "stationNaptan": "940GZZLUSWN", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "9400ZZLUSWN", "commonName": "South Wimbledon 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": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$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"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.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": "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": "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": "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"}], "children": [], "lat": 51.415309, "lon": -0.192005}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUSWN1", "modes": ["tube"], "icsCode": "1000216", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUSWN", "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": "940GZZLUSWN", "lineIdentifier": ["northern"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["northern"]}], "status": true, "id": "9400ZZLUSWN1", "commonName": "South Wimbledon 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": "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": "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": "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": "Help 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": "South Wimbledon Station,London Underground Ltd.,High St,London,SW19 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": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "3+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": "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.415078, "lon": -0.19282}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUSWN2", "modes": ["tube"], "icsCode": "1000216", "stopType": "NaptanRailAccessArea", "stationNaptan": "940GZZLUSWN", "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": "940GZZLUSWN", "lineIdentifier": ["northern"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["northern"]}], "status": true, "id": "9400ZZLUSWN2", "commonName": "South Wimbledon 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": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$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"}, {"$type": "Tfl.Api.Presentation.Entities.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": "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": "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": "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": "Photo 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.41525, "lon": -0.192856}], "lat": 51.415309, "lon": -0.192005}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "940GZZLUTAW", "modes": ["bus", "tube"], "icsCode": "1000237", "stopType": "NaptanMetroStation", "stationNaptan": "940GZZLUTAW", "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": "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": "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": "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": "688", "name": "688", "uri": "/Line/688", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "940GZZLUTAW", "lineIdentifier": ["northern"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490000237A", "stationAtcoCode": "490G00237B", "lineIdentifier": ["628", "605", "251", "326", "688"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490000237B", "stationAtcoCode": "490G00237B", "lineIdentifier": ["251", "605", "326", "688"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["northern"]}, {"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "bus", "lineIdentifier": ["628", "605", "251", "326", "688"]}], "status": true, "id": "940GZZLUTAW", "commonName": "Totteridge & Whetstone 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": "Help Points", "sourceSystemKey": "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": "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"}, {"$type": "Tfl.Api.Presentation.Entities.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": "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": "Totteridge & Whetstone Station,London Underground Ltd.,Totteridge Lane,London,N20 9QP"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.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": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5833"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "CarParks_800495"}], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490G00237B", "modes": ["bus"], "icsCode": "1000237", "stopType": "NaptanOnstreetBusCoachStopCluster", "stationNaptan": "490G00237B", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490G00237B", "commonName": "Totteridge & Whetstone Station", "placeType": "StopPoint", "additionalProperties": [], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000237A", "indicator": "Stop A", "stopLetter": "A", "modes": ["bus"], "icsCode": "1000237", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00237B", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000237A", "commonName": "Totteridge & Whetstone Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.630161, "lon": -0.177884}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000237B", "indicator": "Stop B", "stopLetter": "B", "modes": ["bus"], "icsCode": "1000237", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00237B", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000237B", "commonName": "Totteridge & Whetstone Stn", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.63008, "lon": -0.17676}], "lat": 51.63008, "lon": -0.17676}, {"$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": "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": "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": "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": "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": "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": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "4"}], "children": [], "lat": 51.630182, "lon": -0.179285}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUTAW", "modes": ["tube"], "icsCode": "1000237", "stopType": "NaptanMetroAccessArea", "stationNaptan": "940GZZLUTAW", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "9400ZZLUTAW", "commonName": "Totteridge & Whetstone 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": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$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": "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": "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": "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": "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"}], "children": [], "lat": 51.630597, "lon": -0.17921}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUTAW1", "modes": ["tube"], "icsCode": "1000237", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUTAW", "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": "940GZZLUTAW", "lineIdentifier": ["northern"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["northern"]}], "status": true, "id": "9400ZZLUTAW1", "commonName": "Totteridge & Whetstone 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": "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": "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": "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": "Totteridge & Whetstone Station,London Underground Ltd.,Totteridge Lane,London,N20 9QP"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.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"}], "children": [], "lat": 51.63057, "lon": -0.179226}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUTAW2", "modes": ["tube"], "icsCode": "1000237", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUTAW", "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": "940GZZLUTAW", "lineIdentifier": ["northern"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["northern"]}], "status": true, "id": "9400ZZLUTAW2", "commonName": "Totteridge & Whetstone 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": "Totteridge & Whetstone Station,London Underground Ltd.,Totteridge Lane,London,N20 9QP"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.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": "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": "Facility", "key": "Help Points", "sourceSystemKey": "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": "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": "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": "Escalators", "sourceSystemKey": "StaticObjects", "value": "0"}], "children": [], "lat": 51.630507, "lon": -0.179228}], "lat": 51.630597, "lon": -0.17921}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "940GZZLUTBC", "modes": ["bus", "tube"], "icsCode": "1000233", "stopType": "NaptanMetroStation", "stationNaptan": "940GZZLUTBC", "lines": [{"$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": "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": "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": "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": "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", "naptanIdReference": "490000233A", "stationAtcoCode": "490G00233G", "lineIdentifier": ["319", "219"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490000233G", "stationAtcoCode": "490G00233G", "lineIdentifier": ["n155", "355", "155", "249"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490000233E", "stationAtcoCode": "490G00233E", "lineIdentifier": ["249", "319"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "940GZZLUTBC", "lineIdentifier": ["northern"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490000233C", "stationAtcoCode": "490G00233G", "lineIdentifier": ["355", "n155", "219", "155"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "bus", "lineIdentifier": ["319", "219", "n155", "355", "155", "249"]}, {"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["northern"]}], "status": true, "id": "940GZZLUTBC", "commonName": "Tooting Bec 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": "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": "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": "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": "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": "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": "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": "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": "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": "5"}], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490G00233E", "modes": ["bus"], "icsCode": "1000233", "stopType": "NaptanOnstreetBusCoachStopCluster", "stationNaptan": "490G00233E", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490G00233E", "commonName": "Tooting Bec Station", "placeType": "StopPoint", "additionalProperties": [], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000233E", "indicator": "Stop E", "stopLetter": "E", "modes": ["bus"], "icsCode": "1000233", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00233E", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000233E", "commonName": "Tooting Bec Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.435376, "lon": -0.158913}], "lat": 51.435376, "lon": -0.158913}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490G00233G", "modes": ["bus"], "icsCode": "1000233", "stopType": "NaptanOnstreetBusCoachStopCluster", "stationNaptan": "490G00233G", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490G00233G", "commonName": "Tooting Bec Station", "placeType": "StopPoint", "additionalProperties": [], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000233A", "indicator": "Stop A", "stopLetter": "A", "modes": ["bus"], "icsCode": "1000233", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00233G", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000233A", "commonName": "Tooting Bec Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.435887, "lon": -0.159943}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000233C", "indicator": "Stop C", "stopLetter": "C", "modes": ["bus"], "icsCode": "1000233", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00233G", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000233C", "commonName": "Tooting Bec Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.435417, "lon": -0.160379}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000233G", "indicator": "Stop G", "stopLetter": "G", "modes": ["bus"], "icsCode": "1000233", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00233G", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000233G", "commonName": "Tooting Bec Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.435961, "lon": -0.158976}], "lat": 51.435417, "lon": -0.160379}, {"$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": "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": "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": "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": "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": "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"}], "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": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}, {"$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": "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"}, {"$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"}], "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": "9400ZZLUTBC", "modes": ["tube"], "icsCode": "1000233", "stopType": "NaptanMetroAccessArea", "stationNaptan": "940GZZLUTBC", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "9400ZZLUTBC", "commonName": "Tooting Bec 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": "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": "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": "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": "Facility", "key": "Help 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": "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, 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": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}], "children": [], "lat": 51.435678, "lon": -0.159736}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUTBC1", "modes": ["tube"], "icsCode": "1000233", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUTBC", "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": "940GZZLUTBC", "lineIdentifier": ["northern"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["northern"]}], "status": true, "id": "9400ZZLUTBC1", "commonName": "Tooting Bec 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": "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": "Photo 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": "Help Points", "sourceSystemKey": "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": "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": "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": "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": "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.435856, "lon": -0.159024}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUTBC2", "modes": ["tube"], "icsCode": "1000233", "stopType": "NaptanRailAccessArea", "stationNaptan": "940GZZLUTBC", "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": "940GZZLUTBC", "lineIdentifier": ["northern"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["northern"]}], "status": true, "id": "9400ZZLUTBC2", "commonName": "Tooting Bec 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": "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, 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": "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": "Help Points", "sourceSystemKey": "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": "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": "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": "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": "no"}], "children": [], "lat": 51.435847, "lon": -0.15901}], "lat": 51.435678, "lon": -0.159736}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "940GZZLUTBY", "modes": ["tube", "bus"], "icsCode": "1000234", "stopType": "NaptanMetroStation", "stationNaptan": "940GZZLUTBY", "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "44", "name": "44", "uri": "/Line/44", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "940GZZLUTBY", "lineIdentifier": ["northern"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490000234ZZ", "stationAtcoCode": "490G00234G", "lineIdentifier": ["264", "280", "57"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490000234W1", "stationAtcoCode": "490G00234G", "lineIdentifier": ["333", "127"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490000234G", "stationAtcoCode": "490G00234G", "lineIdentifier": ["355"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490015513L", "stationAtcoCode": "490G00234G", "lineIdentifier": ["g1", "n155", "219", "131", "155", "493"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490000234M", "stationAtcoCode": "490G00234M", "lineIdentifier": ["77", "270", "493", "n44", "44"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490000234H", "stationAtcoCode": "490G00234G", "lineIdentifier": ["264", "280", "270", "77", "n44", "g1", "44"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490015512B", "stationAtcoCode": "490G00234G", "lineIdentifier": ["355", "n155", "155", "219"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["northern"]}, {"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "bus", "lineIdentifier": ["264", "280", "57", "333", "127", "355", "g1", "n155", "219", "131", "155", "493", "77", "270", "n44", "44"]}], "status": true, "id": "940GZZLUTBY", "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": "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": "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": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5006"}, {"$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": "Euro Cash Machines", "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": "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": "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": "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": "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": "ServiceInfo", "key": "Night", "sourceSystemKey": "TransXchangeETL", "value": "yes"}], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490G00234G", "modes": ["bus"], "icsCode": "1000234", "stopType": "NaptanOnstreetBusCoachStopCluster", "stationNaptan": "490G00234G", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490G00234G", "commonName": "Tooting Broadway Station", "placeType": "StopPoint", "additionalProperties": [], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000234G", "indicator": "Stop G", "stopLetter": "G", "modes": ["bus"], "icsCode": "1000234", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00234G", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000234G", "commonName": "Tooting Broadway Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.427156, "lon": -0.166911}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000234H", "indicator": "Stop H", "stopLetter": "H", "modes": ["bus"], "icsCode": "1000234", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00234G", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000234H", "commonName": "Tooting Broadway Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.427156, "lon": -0.166911}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000234W1", "indicator": "Stop R", "stopLetter": "R", "modes": ["bus"], "icsCode": "1000234", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00234G", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000234W1", "commonName": "Tooting Broadway Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.426864, "lon": -0.166606}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000234Z", "indicator": "->S", "stopLetter": "->S", "modes": ["bus"], "icsCode": "1000234", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00234G", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000234Z", "commonName": "Tooting Broadway Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.427444, "lon": -0.168669}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000234ZZ", "indicator": "->N", "stopLetter": "->N", "modes": ["bus"], "icsCode": "1000234", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00234G", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000234ZZ", "commonName": "Tooting Broadway Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.427092, "lon": -0.169172}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490015512B", "indicator": "Stop B", "stopLetter": "B", "modes": ["bus"], "icsCode": "1000234", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00234G", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490015512B", "commonName": "Tooting Broadway Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.428558, "lon": -0.16743}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490015513L", "indicator": "Stop L", "stopLetter": "L", "modes": ["bus"], "icsCode": "1000234", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00234G", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490015513L", "commonName": "Tooting Broadway Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.427384, "lon": -0.168815}], "lat": 51.426864, "lon": -0.166606}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490G00234M", "modes": ["bus"], "icsCode": "1000234", "stopType": "NaptanOnstreetBusCoachStopCluster", "stationNaptan": "490G00234M", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490G00234M", "commonName": "Tooting Broadway Station", "placeType": "StopPoint", "additionalProperties": [], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000234M", "indicator": "Stop M", "stopLetter": "M", "modes": ["bus"], "icsCode": "1000234", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00234M", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000234M", "commonName": "Tooting Broadway Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.428473, "lon": -0.168872}], "lat": 51.428473, "lon": -0.168872}, {"$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": "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"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}], "children": [], "lat": 51.42793, "lon": -0.168088}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUTBY", "modes": ["tube"], "icsCode": "1000234", "stopType": "NaptanMetroAccessArea", "stationNaptan": "940GZZLUTBY", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "9400ZZLUTBY", "commonName": "Tooting Broadway 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": "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": "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": "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": "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": "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": "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, 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": "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": "6 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"}], "children": [], "lat": 51.42763, "lon": -0.168374}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUTBY1", "modes": ["tube"], "icsCode": "1000234", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUTBY", "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": "940GZZLUTBY", "lineIdentifier": ["northern"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["northern"]}], "status": true, "id": "9400ZZLUTBY1", "commonName": "Tooting Broadway 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": "Photo 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": "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": "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": "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": "6 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": "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": "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": "Tooting Broadway Station,London Underground Ltd.,Tooting High St,London,SW17 0SU"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.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"}], "children": [], "lat": 51.427843, "lon": -0.168178}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUTBY2", "modes": ["tube"], "icsCode": "1000234", "stopType": "NaptanRailAccessArea", "stationNaptan": "940GZZLUTBY", "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": "940GZZLUTBY", "lineIdentifier": ["northern"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["northern"]}], "status": true, "id": "9400ZZLUTBY2", "commonName": "Tooting Broadway 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": "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": "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": "3"}, {"$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": "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": "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": "Payphones", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$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": "Facility", "key": "Photo 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.427825, "lon": -0.168164}], "lat": 51.42763, "lon": -0.168374}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "940GZZLUTCR", "modes": ["tube"], "icsCode": "1000235", "stopType": "NaptanMetroStation", "stationNaptan": "940GZZLUTCR", "hubNaptanCode": "HUBTCR", "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"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "940GZZLUTCR", "lineIdentifier": ["central"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "940GZZLUTCR", "lineIdentifier": ["northern"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["central", "northern"]}], "status": true, "id": "940GZZLUTCR", "commonName": "Tottenham Court Road Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5580"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5074"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5090"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5481"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5233"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5141"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5816"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_4139"}, {"$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": "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": "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": "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": "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": "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": "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": "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": "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": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_15"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_24"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_88"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_109"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_192"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_244"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_260"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_306"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_358"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_364"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_383"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_386"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5358"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5043"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5468"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5379"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5516"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5655"}], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490G00235C", "modes": ["bus"], "icsCode": "1000235", "stopType": "NaptanOnstreetBusCoachStopCluster", "stationNaptan": "490G00235C", "hubNaptanCode": "HUBTCR", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490G00235C", "commonName": "Tottenham Court Road Station", "placeType": "StopPoint", "additionalProperties": [], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000235C", "indicator": "Stop C", "stopLetter": "C", "modes": ["bus"], "icsCode": "1000235", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00235C", "hubNaptanCode": "HUBTCR", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000235C", "commonName": "Tottenham Court Road Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.517674, "lon": -0.131541}], "lat": 51.517674, "lon": -0.131541}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490G00235DS", "modes": ["bus"], "icsCode": "1000235", "stopType": "NaptanOnstreetBusCoachStopCluster", "stationNaptan": "490G00235DS", "hubNaptanCode": "HUBTCR", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490G00235DS", "commonName": "Tottenham Court Road Station", "placeType": "StopPoint", "additionalProperties": [], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000235YB", "indicator": "Stop YB", "stopLetter": "YB", "modes": ["bus"], "icsCode": "1000235", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00235DS", "hubNaptanCode": "HUBTCR", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000235YB", "commonName": "Tottenham Court Road Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.516096, "lon": -0.13407}], "lat": 51.516096, "lon": -0.13407}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490G00235E", "modes": ["bus"], "icsCode": "1000235", "stopType": "NaptanOnstreetBusCoachStopCluster", "stationNaptan": "490G00235E", "hubNaptanCode": "HUBTCR", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490G00235E", "commonName": "Tottenham Court Road Station", "placeType": "StopPoint", "additionalProperties": [], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000235W1", "indicator": "Stop S", "stopLetter": "S", "modes": ["bus"], "icsCode": "1000235", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00235E", "hubNaptanCode": "HUBTCR", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000235W1", "commonName": "Tottenham Court Road Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.515556, "lon": -0.128428}], "lat": 51.515556, "lon": -0.128428}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490G00235V", "modes": ["bus"], "icsCode": "1000235", "stopType": "NaptanOnstreetBusCoachStopCluster", "stationNaptan": "490G00235V", "hubNaptanCode": "HUBTCR", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490G00235V", "commonName": "Tottenham Court Road Station", "placeType": "StopPoint", "additionalProperties": [], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000235V", "indicator": "Stop V", "stopLetter": "V", "modes": ["bus"], "icsCode": "1000235", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00235V", "hubNaptanCode": "HUBTCR", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000235V", "commonName": "Tottenham Court Road Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.516377, "lon": -0.131954}], "lat": 51.516377, "lon": -0.131954}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490G00235Z", "modes": ["bus"], "icsCode": "1000235", "stopType": "NaptanOnstreetBusCoachStopCluster", "stationNaptan": "490G00235Z", "hubNaptanCode": "HUBTCR", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490G00235Z", "commonName": "Tottenham Court Road Station", "placeType": "StopPoint", "additionalProperties": [], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000235N", "indicator": "Stop T", "stopLetter": "T", "modes": ["bus"], "icsCode": "1000235", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00235Z", "hubNaptanCode": "HUBTCR", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000235N", "commonName": "Tottenham Court Road", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.51602, "lon": -0.12874}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000235X", "indicator": "Stop X", "stopLetter": "X", "modes": ["bus"], "icsCode": "1000235", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00235Z", "hubNaptanCode": "HUBTCR", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000235X", "commonName": "Tottenham Court Road Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.516685, "lon": -0.128122}], "lat": 51.51602, "lon": -0.12874}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "4900TOTCTRD0", "indicator": "Entrance 5", "stopLetter": "5", "modes": [], "icsCode": "1000235", "stopType": "NaptanRailEntrance", "stationNaptan": "940GZZLUTCR", "hubNaptanCode": "HUBTCR", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "4900TOTCTRD0", "commonName": "Tottenham Court Road Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.515846, "lon": -0.134166}, {"$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": "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": "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": "Tottenham Court Road Station,London Underground Ltd.,Oxford St,London,W1"}, {"$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": "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": "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": "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"}], "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": "9400ZZLUTCR", "modes": ["tube"], "icsCode": "1000235", "stopType": "NaptanMetroAccessArea", "stationNaptan": "940GZZLUTCR", "hubNaptanCode": "HUBTCR", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "9400ZZLUTCR", "commonName": "Tottenham Court Road Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$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": "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": "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": "Payphones", "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": "Ticket Halls", "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": "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": "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": "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.516426, "lon": -0.13041}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUTCR1", "modes": ["tube"], "icsCode": "1000235", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUTCR", "hubNaptanCode": "HUBTCR", "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": "940GZZLUTCR", "lineIdentifier": ["central"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["central"]}], "status": true, "id": "9400ZZLUTCR1", "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": "Lifts", "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": "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": "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": "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": "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": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}], "children": [], "lat": 51.516408, "lon": -0.131549}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUTCR2", "modes": ["tube"], "icsCode": "1000235", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUTCR", "hubNaptanCode": "HUBTCR", "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": "940GZZLUTCR", "lineIdentifier": ["northern"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["northern"]}], "status": true, "id": "9400ZZLUTCR2", "commonName": "Tottenham Court Road 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": "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": "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": "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": "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": "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": "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": "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": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "no"}], "children": [], "lat": 51.515941, "lon": -0.13043}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUTCR3", "modes": ["tube"], "icsCode": "1000235", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUTCR", "hubNaptanCode": "HUBTCR", "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": "940GZZLUTCR", "lineIdentifier": ["northern"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["northern"]}], "status": true, "id": "9400ZZLUTCR3", "commonName": "Tottenham Court 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": "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": "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": "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": "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": "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": "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": "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"}], "children": [], "lat": 51.515904, "lon": -0.130402}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUTCR4", "modes": ["tube"], "icsCode": "1000235", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUTCR", "hubNaptanCode": "HUBTCR", "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": "940GZZLUTCR", "lineIdentifier": ["central"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["central"]}], "status": true, "id": "9400ZZLUTCR4", "commonName": "Tottenham Court Road 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": "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": "13"}, {"$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": "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": "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": "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": "Photo 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.51594, "lon": -0.130401}], "lat": 51.516426, "lon": -0.13041}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "940GZZLUTFP", "modes": ["bus", "tube"], "icsCode": "1000239", "stopType": "NaptanMetroStation", "stationNaptan": "940GZZLUTFP", "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": "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": "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": "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": "134", "name": "134", "uri": "/Line/134", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "940GZZLUTFP", "lineIdentifier": ["northern"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490000239B", "stationAtcoCode": "490G00239A", "lineIdentifier": ["4"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490000239G", "stationAtcoCode": "490G00239G", "lineIdentifier": ["390"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490005973F", "stationAtcoCode": "490G00239A", "lineIdentifier": ["n20", "134"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490000239A", "stationAtcoCode": "490G00239A", "lineIdentifier": ["4"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490015053C", "stationAtcoCode": "490G00239A", "lineIdentifier": ["134", "390", "n20"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["northern"]}, {"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "bus", "lineIdentifier": ["4", "390", "n20", "134"]}], "status": true, "id": "940GZZLUTFP", "commonName": "Tufnell Park 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": "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": "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": "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": "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": "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": "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": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490G00239A", "modes": ["bus"], "icsCode": "1000239", "stopType": "NaptanOnstreetBusCoachStopCluster", "stationNaptan": "490G00239A", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490G00239A", "commonName": "Tufnell Park Station", "placeType": "StopPoint", "additionalProperties": [], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000239A", "indicator": "Stop TZ", "stopLetter": "TZ", "modes": ["bus"], "icsCode": "1000239", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00239A", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000239A", "commonName": "Tufnell Park Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.556884, "lon": -0.137378}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000239B", "indicator": "Stop TW", "stopLetter": "TW", "modes": ["bus"], "icsCode": "1000239", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00239A", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000239B", "commonName": "Tufnell Park Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.557082, "lon": -0.136793}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490005973F", "indicator": "Stop TS", "stopLetter": "TS", "modes": ["bus"], "icsCode": "1000239", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00239A", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490005973F", "commonName": "Tufnell Park Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.556209, "lon": -0.138992}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490015053C", "indicator": "Stop TN", "stopLetter": "TN", "modes": ["bus"], "icsCode": "1000239", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00239A", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490015053C", "commonName": "Tufnell Park Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.557409, "lon": -0.138107}], "lat": 51.557409, "lon": -0.138107}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490G00239G", "modes": ["bus"], "icsCode": "1000239", "stopType": "NaptanOnstreetBusCoachStopCluster", "stationNaptan": "490G00239G", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490G00239G", "commonName": "Tufnell Park Station", "placeType": "StopPoint", "additionalProperties": [], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000239G", "indicator": "Stop TF", "stopLetter": "TF", "modes": ["bus"], "icsCode": "1000239", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00239G", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000239G", "commonName": "Tufnell Park Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.556456, "lon": -0.13816}], "lat": 51.556456, "lon": -0.13816}, {"$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": "9400ZZLUTFP", "modes": ["tube"], "icsCode": "1000239", "stopType": "NaptanMetroAccessArea", "stationNaptan": "940GZZLUTFP", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "9400ZZLUTFP", "commonName": "Tufnell 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": "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": "Photo 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": "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": "Tufnell Park Station,London Underground Ltd.,Fortess Rd,London,N19 5QB"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.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": "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": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}], "children": [], "lat": 51.556822, "lon": -0.138433}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUTFP1", "modes": ["tube"], "icsCode": "1000239", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUTFP", "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": "940GZZLUTFP", "lineIdentifier": ["northern"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["northern"]}], "status": true, "id": "9400ZZLUTFP1", "commonName": "Tufnell 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": "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": "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": "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": "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": "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": "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.556803, "lon": -0.138391}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUTFP2", "modes": ["tube"], "icsCode": "1000239", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUTFP", "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": "940GZZLUTFP", "lineIdentifier": ["northern"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["northern"]}], "status": true, "id": "9400ZZLUTFP2", "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": "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": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$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": "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": "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": "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.556741, "lon": -0.138422}], "lat": 51.556822, "lon": -0.138433}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "940GZZLUTHB", "modes": ["tube"], "icsCode": "1000232", "stopType": "NaptanMetroStation", "stationNaptan": "940GZZLUTHB", "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": "940GZZLUTHB", "lineIdentifier": ["central"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["central"]}], "status": true, "id": "940GZZLUTHB", "commonName": "Theydon Bois 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": "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 (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": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "6"}, {"$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": "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": "Ticket Halls", "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": "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": "Boarding Ramps", "sourceSystemKey": "StaticObjects", "value": "yes Eastbound 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": "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"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "CarParks_800493"}], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "150G00002604", "modes": [], "icsCode": "1000205", "stopType": "NaptanOnstreetBusCoachStopPair", "stationNaptan": "150G00002604", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "150G00002604", "commonName": "Theydon Bois Green", "placeType": "StopPoint", "additionalProperties": [], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "1500IM386", "indicator": "adj", "modes": [], "icsCode": "1000205", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "150G00002604", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "1500IM386", "commonName": "Theydon Bois Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.671614, "lon": 0.100056}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "1500IM386B", "indicator": "opp", "modes": [], "icsCode": "1000205", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "150G00002604", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "1500IM386B", "commonName": "Theydon Bois Green", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.671241, "lon": 0.101311}], "lat": 51.671614, "lon": 0.100056}, {"$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": "Lifts", "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": "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": "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"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.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"}], "children": [], "lat": 51.671571, "lon": 0.102975}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUTHB", "modes": ["tube"], "icsCode": "1000232", "stopType": "NaptanMetroAccessArea", "stationNaptan": "940GZZLUTHB", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "9400ZZLUTHB", "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": "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": "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": "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": "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": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "6"}, {"$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": "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": "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": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}], "children": [], "lat": 51.671759, "lon": 0.103085}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUTHB1", "modes": ["tube"], "icsCode": "1000232", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUTHB", "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": "940GZZLUTHB", "lineIdentifier": ["central"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["central"]}], "status": true, "id": "9400ZZLUTHB1", "commonName": "Theydon Bois Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$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": "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": "Boarding Ramps", "sourceSystemKey": "StaticObjects", "value": "yes Eastbound 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": "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": "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": "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": "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": "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.671479, "lon": 0.103651}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUTHB2", "modes": ["tube"], "icsCode": "1000232", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUTHB", "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": "940GZZLUTHB", "lineIdentifier": ["central"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["central"]}], "status": true, "id": "9400ZZLUTHB2", "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": "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 (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": "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": "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": "Lifts", "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": "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 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.671426, "lon": 0.10362}], "lat": 51.671759, "lon": 0.103085}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "940GZZLUTMH", "modes": ["tube"], "icsCode": "1000236", "stopType": "NaptanMetroStation", "stationNaptan": "940GZZLUTMH", "hubNaptanCode": "HUBTOM", "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": "940GZZLUTMH", "lineIdentifier": ["victoria"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["victoria"]}], "status": true, "id": "940GZZLUTMH", "commonName": "Tottenham Hale 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": "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": "Tottenham Hale Underground Station,London Underground Ltd.,Station Rd,London,N17 9LR"}, {"$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": "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": "6 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": "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": "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": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "CarParks_800494"}], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUTMH", "modes": ["tube"], "icsCode": "1000236", "stopType": "NaptanMetroAccessArea", "stationNaptan": "940GZZLUTMH", "hubNaptanCode": "HUBTOM", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "9400ZZLUTMH", "commonName": "Tottenham Hale 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": "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": "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": "Payphones", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Tottenham Hale Underground Station,London Underground Ltd.,Station Rd,London,N17 9LR"}, {"$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": "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": "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"}], "children": [], "lat": 51.588108, "lon": -0.060241}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUTMH1", "modes": ["tube"], "icsCode": "1000236", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUTMH", "hubNaptanCode": "HUBTOM", "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": "940GZZLUTMH", "lineIdentifier": ["victoria"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["victoria"]}], "status": true, "id": "9400ZZLUTMH1", "commonName": "Tottenham Hale 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": "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": "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": "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": "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": "Address", "sourceSystemKey": "StaticObjects", "value": "Tottenham Hale Underground Station,London Underground Ltd.,Station Rd,London,N17 9LR"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.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": "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": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}], "children": [], "lat": 51.588309, "lon": -0.061532}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUTMH2", "modes": ["tube"], "icsCode": "1000236", "stopType": "NaptanRailAccessArea", "stationNaptan": "940GZZLUTMH", "hubNaptanCode": "HUBTOM", "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": "940GZZLUTMH", "lineIdentifier": ["victoria"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["victoria"]}], "status": true, "id": "9400ZZLUTMH2", "commonName": "Tottenham Hale", "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": "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": "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": "Tottenham Hale Underground Station,London Underground Ltd.,Station Rd,London,N17 9LR"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.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": "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": "Car park", "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, 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": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "3"}], "children": [], "lat": 51.588318, "lon": -0.061502}], "lat": 51.588108, "lon": -0.060241}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "940GZZLUTMP", "modes": ["tube"], "icsCode": "1000231", "stopType": "NaptanMetroStation", "stationNaptan": "940GZZLUTMP", "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": "940GZZLUTMP", "lineIdentifier": ["district", "circle"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["district", "circle"]}], "status": true, "id": "940GZZLUTMP", "commonName": "Temple 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": "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": "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": "Temple Station,London Underground Ltd.,Victoria Embankment,London,WC2R 2PH"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, 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": "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": "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": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_79"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_147"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_232"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_256"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_283"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_309"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_335"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_338"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_564"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_594"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_773"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_842"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_857"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5506"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_4627"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5279"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_3914"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5473"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5315"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5767"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5965"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_3915"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_4859"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5264"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5331"}], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490G00231E", "modes": ["bus"], "icsCode": "1000231", "stopType": "NaptanOnstreetBusCoachStopCluster", "stationNaptan": "490G00231E", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490G00231E", "commonName": "Temple Station", "placeType": "StopPoint", "additionalProperties": [], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000231E", "indicator": "Stop N", "stopLetter": "N", "modes": ["bus"], "icsCode": "1000231", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00231E", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000231E", "commonName": "Temple Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.510993, "lon": -0.113022}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000231W", "indicator": "Stop O", "stopLetter": "O", "modes": ["bus"], "icsCode": "1000231", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00231E", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000231W", "commonName": "Temple Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.510839, "lon": -0.112913}], "lat": 51.510839, "lon": -0.112913}, {"$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": "9400ZZLUTMP", "modes": ["tube"], "icsCode": "1000231", "stopType": "NaptanMetroAccessArea", "stationNaptan": "940GZZLUTMP", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "9400ZZLUTMP", "commonName": "Temple 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": "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": "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": "Temple Station,London Underground Ltd.,Victoria Embankment,London,WC2R 2PH"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.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": "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": "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"}], "children": [], "lat": 51.511006, "lon": -0.11426}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUTMP1", "modes": ["tube"], "icsCode": "1000231", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUTMP", "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": "940GZZLUTMP", "lineIdentifier": ["district", "circle"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["district", "circle"]}], "status": true, "id": "9400ZZLUTMP1", "commonName": "Temple 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": "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": "Facility", "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": "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": "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": "Temple Station,London Underground Ltd.,Victoria Embankment,London,WC2R 2PH"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}], "children": [], "lat": 51.510861, "lon": -0.114756}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUTMP2", "modes": ["tube"], "icsCode": "1000231", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUTMP", "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": "940GZZLUTMP", "lineIdentifier": ["district", "circle"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["district", "circle"]}], "status": true, "id": "9400ZZLUTMP2", "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": "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": "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": "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": "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": "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"}], "children": [], "lat": 51.510877, "lon": -0.114669}], "lat": 51.511006, "lon": -0.11426}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "940GZZLUTNG", "modes": ["bus", "tube"], "icsCode": "1000240", "stopType": "NaptanMetroStation", "stationNaptan": "940GZZLUTNG", "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": "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": "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": "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": "e3", "name": "E3", "uri": "/Line/e3", "type": "Line", "crowding": {"$type": "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": "940GZZLUTNG", "lineIdentifier": ["piccadilly"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490000240LL", "stationAtcoCode": "490G00240LL", "lineIdentifier": ["272", "94"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490000240KK", "stationAtcoCode": "490G00240KK", "lineIdentifier": ["n11", "e3"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "940GZZLUTNG", "lineIdentifier": ["district"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "940GZZLUTNG", "lineIdentifier": ["piccadilly", "district"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490000240JJ", "stationAtcoCode": "490G00240KK", "lineIdentifier": ["e3", "n11"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490000240MM", "stationAtcoCode": "490G00240LL", "lineIdentifier": ["94", "272"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["piccadilly", "district"]}, {"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "bus", "lineIdentifier": ["272", "94", "n11", "e3"]}], "status": true, "id": "940GZZLUTNG", "commonName": "Turnham 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": "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": "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": "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": "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": "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": "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": "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": "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"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5494"}, {"$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": "Other Facilities", "sourceSystemKey": "StaticObjects", "value": "canopies over platform, taxi ranks outside station, post office style queuing for tickets."}], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490G00240KK", "modes": ["bus"], "icsCode": "1000240", "stopType": "NaptanOnstreetBusCoachStopCluster", "stationNaptan": "490G00240KK", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490G00240KK", "commonName": "Turnham Green Station", "placeType": "StopPoint", "additionalProperties": [], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000240JJ", "indicator": "Stop JJ", "stopLetter": "JJ", "modes": ["bus"], "icsCode": "1000240", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00240KK", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000240JJ", "commonName": "Turnham Green Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.494655, "lon": -0.255395}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000240KK", "indicator": "Stop KK", "stopLetter": "KK", "modes": ["bus"], "icsCode": "1000240", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00240KK", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000240KK", "commonName": "Turnham Green Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.495174, "lon": -0.255231}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000240S", "indicator": "Stop", "modes": ["bus"], "icsCode": "1000240", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00240KK", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000240S", "commonName": "Turnham Green Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.494698, "lon": -0.255278}], "lat": 51.494698, "lon": -0.255278}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490G00240LL", "modes": ["bus"], "icsCode": "1000240", "stopType": "NaptanOnstreetBusCoachStopCluster", "stationNaptan": "490G00240LL", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490G00240LL", "commonName": "Turnham Green Station", "placeType": "StopPoint", "additionalProperties": [], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000240LL", "indicator": "Stop LL", "stopLetter": "LL", "modes": ["bus"], "icsCode": "1000240", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00240LL", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000240LL", "commonName": "Turnham Green Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.495968, "lon": -0.254221}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000240MM", "indicator": "Stop MM", "stopLetter": "MM", "modes": ["bus"], "icsCode": "1000240", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00240LL", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000240MM", "commonName": "Turnham Green Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.495793, "lon": -0.254501}], "lat": 51.495968, "lon": -0.254221}, {"$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": "9400ZZLUTNG", "modes": ["tube"], "icsCode": "1000240", "stopType": "NaptanMetroAccessArea", "stationNaptan": "940GZZLUTNG", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "9400ZZLUTNG", "commonName": "Turnham Green Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$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": "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": "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": "Bridge", "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": "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": "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": "4"}, {"$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": "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.495148, "lon": -0.254555}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUTNG1", "modes": ["tube"], "icsCode": "1000240", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUTNG", "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": "940GZZLUTNG", "lineIdentifier": ["piccadilly"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["piccadilly"]}], "status": true, "id": "9400ZZLUTNG1", "commonName": "Turnham 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": "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": "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": "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": "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": "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": "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": "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": "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.495275, "lon": -0.254622}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUTNG2", "modes": ["tube"], "icsCode": "1000240", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUTNG", "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": "940GZZLUTNG", "lineIdentifier": ["district", "piccadilly"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["district", "piccadilly"]}], "status": true, "id": "9400ZZLUTNG2", "commonName": "Turnham Green 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": "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": "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": "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": "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": "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": "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": "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.495265, "lon": -0.25455}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUTNG3", "modes": ["tube"], "icsCode": "1000240", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUTNG", "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": "940GZZLUTNG", "lineIdentifier": ["district"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["district"]}], "status": true, "id": "9400ZZLUTNG3", "commonName": "Turnham 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": "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": "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": "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": "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": "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": "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": "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": "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": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}], "children": [], "lat": 51.495263, "lon": -0.254464}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUTNG4", "modes": ["tube"], "icsCode": "1000240", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUTNG", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "9400ZZLUTNG4", "commonName": "Turnham 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": "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": "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": "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": "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": "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": "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": "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": "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.495262, "lon": -0.254377}], "lat": 51.495148, "lon": -0.254555}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "940GZZLUTPN", "modes": ["tube", "bus"], "icsCode": "1000241", "stopType": "NaptanMetroStation", "stationNaptan": "940GZZLUTPN", "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": "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": "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": "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": "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": "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": "329", "name": "329", "uri": "/Line/329", "type": "Line", "crowding": {"$type": "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": "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": "217", "name": "217", "uri": "/Line/217", "type": "Line", "crowding": {"$type": "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": "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": "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": "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": "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": "w4", "name": "W4", "uri": "/Line/w4", "type": "Line", "crowding": {"$type": "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": "232", "name": "232", "uri": "/Line/232", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "940GZZLUTPN", "lineIdentifier": ["piccadilly"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490000241M", "stationAtcoCode": "490G00241M", "lineIdentifier": ["29", "141", "121", "144", "n29", "329", "221"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490000241P", "stationAtcoCode": "490G00241M", "lineIdentifier": ["444", "217", "231", "123"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490015475U", "stationAtcoCode": "490G00241M", "lineIdentifier": ["230", "29", "141", "41", "n29", "67", "n41", "w4"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490015475Y", "stationAtcoCode": "490G00241M", "lineIdentifier": ["w4", "n41", "329", "67", "184", "41", "230", "232"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["piccadilly"]}, {"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "bus", "lineIdentifier": ["29", "141", "121", "144", "n29", "329", "221", "444", "217", "231", "123", "230", "41", "67", "n41", "w4", "184", "232"]}], "status": true, "id": "940GZZLUTPN", "commonName": "Turnpike Lane 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": "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": "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": "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": "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": "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": "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": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5564"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5874"}], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490G00241M", "modes": ["bus"], "icsCode": "1000241", "stopType": "NaptanOnstreetBusCoachStopCluster", "stationNaptan": "490G00241M", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490G00241M", "commonName": "Turnpike Lane Station", "placeType": "StopPoint", "additionalProperties": [], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000241M", "indicator": "Stop M", "stopLetter": "M", "modes": ["bus"], "icsCode": "1000241", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00241M", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000241M", "commonName": "Turnpike Lane Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.59084, "lon": -0.103666}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000241P", "indicator": "Stop P", "stopLetter": "P", "modes": ["bus"], "icsCode": "1000241", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00241M", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000241P", "commonName": "Turnpike Lane Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.590911, "lon": -0.102551}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490015475U", "indicator": "Stop U", "stopLetter": "U", "modes": ["bus"], "icsCode": "1000241", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00241M", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490015475U", "commonName": "Turnpike Lane Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.589237, "lon": -0.102462}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490015475Y", "indicator": "Stop Y", "stopLetter": "Y", "modes": ["bus"], "icsCode": "1000241", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00241M", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490015475Y", "commonName": "Turnpike Lane Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.589624, "lon": -0.102475}], "lat": 51.589237, "lon": -0.102462}, {"$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": "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": "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": "4 on platforms, 0 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": "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": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$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": "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"}], "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": "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": "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": "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": "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": "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": "3"}], "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": "9400ZZLUTPN", "modes": ["tube"], "icsCode": "1000241", "stopType": "NaptanMetroAccessArea", "stationNaptan": "940GZZLUTPN", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "9400ZZLUTPN", "commonName": "Turnpike Lane 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": "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": "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": "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": "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": "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": "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": "Other Facilities", "sourceSystemKey": "StaticObjects", "value": "post office style queuing for tickets, subway to street, routeways platform to ticket hall."}], "children": [], "lat": 51.590272, "lon": -0.102953}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUTPN1", "modes": ["tube"], "icsCode": "1000241", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUTPN", "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": "940GZZLUTPN", "lineIdentifier": ["piccadilly"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["piccadilly"]}], "status": true, "id": "9400ZZLUTPN1", "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": "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": "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": "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, 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": "Turnpike Lane Station,London Underground Ltd.,Westbury Avenue,London,N15 3NX"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.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": "5"}], "children": [], "lat": 51.590046, "lon": -0.10289}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUTPN2", "modes": ["tube"], "icsCode": "1000241", "stopType": "NaptanRailAccessArea", "stationNaptan": "940GZZLUTPN", "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": "940GZZLUTPN", "lineIdentifier": ["piccadilly"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["piccadilly"]}], "status": true, "id": "9400ZZLUTPN2", "commonName": "Turnpike Lane 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": "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": "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": "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": "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": "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": "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": "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": "Bridge", "sourceSystemKey": "StaticObjects", "value": "no"}], "children": [], "lat": 51.590046, "lon": -0.102876}], "lat": 51.590272, "lon": -0.102953}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "940GZZLUTWH", "modes": ["tube"], "icsCode": "1000238", "stopType": "NaptanMetroStation", "stationNaptan": "940GZZLUTWH", "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": "940GZZLUTWH", "lineIdentifier": ["circle", "district"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["circle", "district"]}], "status": true, "id": "940GZZLUTWH", "commonName": "Tower Hill Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5917"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5915"}, {"$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": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5269"}, {"$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"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.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": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$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": "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": "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": "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": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_102"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_104"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_130"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_199"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5900"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5905"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5451"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5916"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5902"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5941"}], "children": [{"$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": "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": "Gates", "sourceSystemKey": "StaticObjects", "value": "15"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.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": "Help Points", "sourceSystemKey": "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": "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": "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": "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": "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": "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"}, {"$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"}], "children": [], "lat": 51.509833, "lon": -0.07648}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUTWH", "modes": ["tube"], "icsCode": "1000238", "stopType": "NaptanMetroAccessArea", "stationNaptan": "940GZZLUTWH", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "9400ZZLUTWH", "commonName": "Tower 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": "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": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$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": "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": "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": "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": "15"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}], "children": [], "lat": 51.509971, "lon": -0.076546}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUTWH1", "modes": ["tube"], "icsCode": "1000238", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUTWH", "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": "940GZZLUTWH", "lineIdentifier": ["circle", "district"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["circle", "district"]}], "status": true, "id": "9400ZZLUTWH1", "commonName": "Tower Hill Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$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": "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": "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": "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": "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": "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"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "1"}], "children": [], "lat": 51.509663, "lon": -0.076991}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUTWH2", "modes": ["tube"], "icsCode": "1000238", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUTWH", "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": "940GZZLUTWH", "lineIdentifier": ["circle", "district"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["circle", "district"]}], "status": true, "id": "9400ZZLUTWH2", "commonName": "Tower Hill Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$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": "Gates", "sourceSystemKey": "StaticObjects", "value": "15"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.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": "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": "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": "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": "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": "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.50962, "lon": -0.077108}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUTWH3", "indicator": "westbound", "modes": ["tube"], "icsCode": "1000238", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUTWH", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "9400ZZLUTWH3", "commonName": "Tower Hill 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": "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": "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": "Help Points", "sourceSystemKey": "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": "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": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "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": "Tower Hill Station,London Underground Ltd.,Trinity Square,London,EC3N 4DJ"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "15"}], "children": [], "lat": 51.509707, "lon": -0.076917}], "lat": 51.509971, "lon": -0.076546}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "940GZZLUUPB", "modes": ["bus", "tube"], "icsCode": "1000243", "stopType": "NaptanMetroStation", "stationNaptan": "940GZZLUUPB", "lines": [{"$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": "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": "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", "naptanIdReference": "490000243B", "stationAtcoCode": "490G00243B", "lineIdentifier": ["370", "248", "652", "646"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "940GZZLUUPB", "lineIdentifier": ["district"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490000243A", "stationAtcoCode": "490G00243B", "lineIdentifier": ["370", "248", "646", "652"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "bus", "lineIdentifier": ["370", "248", "652", "646"]}, {"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["district"]}], "status": true, "id": "940GZZLUUPB", "commonName": "Upminster Bridge 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": "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": "Upminster Bridge Station,London Underground Ltd.,Upminster Rd,Hornchurch,Essex,RM12 6PL"}, {"$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": "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": "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": "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": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5857"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.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"}], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490G00243B", "modes": ["bus"], "icsCode": "1000243", "stopType": "NaptanOnstreetBusCoachStopCluster", "stationNaptan": "490G00243B", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490G00243B", "commonName": "Upminster Bridge Station", "placeType": "StopPoint", "additionalProperties": [], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000243A", "indicator": "Stop A", "stopLetter": "A", "modes": ["bus"], "icsCode": "1000243", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00243B", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000243A", "commonName": "Upminster Bridge Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.559052, "lon": 0.235372}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000243B", "indicator": "Stop B", "stopLetter": "B", "modes": ["bus"], "icsCode": "1000243", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00243B", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000243B", "commonName": "Upminster Bridge Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.55906, "lon": 0.235892}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000243Y", "indicator": "->E", "stopLetter": "->E", "modes": ["bus"], "icsCode": "1000243", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00243B", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000243Y", "commonName": "Upminster Bridge Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.559236, "lon": 0.23515}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000243Z", "indicator": "->W", "stopLetter": "->W", "modes": ["bus"], "icsCode": "1000243", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00243B", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000243Z", "commonName": "Upminster Bridge Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.559085, "lon": 0.235085}], "lat": 51.559236, "lon": 0.23515}, {"$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": "9400ZZLUUPB", "modes": ["tube"], "icsCode": "1000243", "stopType": "NaptanMetroAccessArea", "stationNaptan": "940GZZLUUPB", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "9400ZZLUUPB", "commonName": "Upminster Bridge 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 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": "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": "canopies over platform."}, {"$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": "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": "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": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "0"}], "children": [], "lat": 51.55856, "lon": 0.235809}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUUPB1", "modes": ["tube"], "icsCode": "1000243", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUUPB", "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": "940GZZLUUPB", "lineIdentifier": ["district"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["district"]}], "status": true, "id": "9400ZZLUUPB1", "commonName": "Upminster Bridge 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": "Help Points", "sourceSystemKey": "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": "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": "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": "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": "Other Facilities", "sourceSystemKey": "StaticObjects", "value": "canopies over platform."}, {"$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 Bridge Station,London Underground Ltd.,Upminster Rd,Hornchurch,Essex,RM12 6PL"}], "children": [], "lat": 51.558254, "lon": 0.234857}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUUPB2", "modes": ["tube"], "icsCode": "1000243", "stopType": "NaptanRailAccessArea", "stationNaptan": "940GZZLUUPB", "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": "940GZZLUUPB", "lineIdentifier": ["district"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["district"]}], "status": true, "id": "9400ZZLUUPB2", "commonName": "Upminster Bridge", "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": "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": "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": "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": "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": "0"}, {"$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": "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"}], "children": [], "lat": 51.558263, "lon": 0.234872}], "lat": 51.55856, "lon": 0.235809}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "940GZZLUUPK", "modes": ["bus", "tube"], "icsCode": "1000245", "stopType": "NaptanMetroStation", "stationNaptan": "940GZZLUUPK", "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"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "376", "name": "376", "uri": "/Line/376", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$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": "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": "330", "name": "330", "uri": "/Line/330", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "940GZZLUUPK", "lineIdentifier": ["hammersmith-city", "district"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490000245A", "stationAtcoCode": "490G00245A", "lineIdentifier": ["376", "58", "104", "330"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490000245B", "stationAtcoCode": "490G00245A", "lineIdentifier": ["376", "58", "104", "330"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["hammersmith-city", "district"]}, {"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "bus", "lineIdentifier": ["376", "58", "104", "330"]}], "status": true, "id": "940GZZLUUPK", "commonName": "Upton 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": "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": "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": "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": "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": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$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": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5827"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.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": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490G00245A", "modes": ["bus"], "icsCode": "1000245", "stopType": "NaptanOnstreetBusCoachStopCluster", "stationNaptan": "490G00245A", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490G00245A", "commonName": "Upton Park Station", "placeType": "StopPoint", "additionalProperties": [], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000245A", "indicator": "Stop A", "stopLetter": "A", "modes": ["bus"], "icsCode": "1000245", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00245A", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000245A", "commonName": "Upton Park Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.534671, "lon": 0.035377}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000245B", "indicator": "Stop B", "stopLetter": "B", "modes": ["bus"], "icsCode": "1000245", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00245A", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000245B", "commonName": "Upton Park Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.53605, "lon": 0.035194}], "lat": 51.534671, "lon": 0.035377}, {"$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": "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": "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"}, {"$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": "9400ZZLUUPK", "modes": ["tube"], "icsCode": "1000245", "stopType": "NaptanMetroAccessArea", "stationNaptan": "940GZZLUUPK", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "9400ZZLUUPK", "commonName": "Upton Park Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$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": "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": "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": "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": "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": "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"}], "children": [], "lat": 51.53534, "lon": 0.035263}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUUPK1", "modes": ["tube"], "icsCode": "1000245", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUUPK", "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": "940GZZLUUPK", "lineIdentifier": ["district", "hammersmith-city"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["district", "hammersmith-city"]}], "status": true, "id": "9400ZZLUUPK1", "commonName": "Upton 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": "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": "Other Facilities", "sourceSystemKey": "StaticObjects", "value": "canopies over platform."}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.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": "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": "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": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$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"}], "children": [], "lat": 51.53516, "lon": 0.034274}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUUPK2", "modes": ["tube"], "icsCode": "1000245", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUUPK", "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": "940GZZLUUPK", "lineIdentifier": ["district", "hammersmith-city"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["district", "hammersmith-city"]}], "status": true, "id": "9400ZZLUUPK2", "commonName": "Upton Park 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": "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": "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": "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": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.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": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}], "children": [], "lat": 51.53516, "lon": 0.034289}], "lat": 51.53534, "lon": 0.035263}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "940GZZLUUPM", "modes": ["tube"], "icsCode": "1000242", "stopType": "NaptanMetroStation", "stationNaptan": "940GZZLUUPM", "hubNaptanCode": "HUBUPM", "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": "940GZZLUUPM", "lineIdentifier": ["district"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["district"]}], "status": true, "id": "940GZZLUUPM", "commonName": "Upminster 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 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": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "6"}, {"$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": "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": "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": "MonFriTo", "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": "Opening Time", "key": "SunFrom", "sourceSystemKey": "StaticObjects", "value": "06: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": "Opening Time", "key": "SunTo", "sourceSystemKey": "StaticObjects", "value": "22:00"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_4865"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.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": "Other Facilities", "sourceSystemKey": "StaticObjects", "value": "Refreshment 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": "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": "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": "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": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUUPM", "modes": ["tube"], "icsCode": "1000242", "stopType": "NaptanMetroAccessArea", "stationNaptan": "940GZZLUUPM", "hubNaptanCode": "HUBUPM", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "9400ZZLUUPM", "commonName": "Upminster 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": "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": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$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": "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": "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": "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": "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": "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"}], "children": [], "lat": 51.559063, "lon": 0.250882}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUUPM1", "modes": ["tube"], "icsCode": "1000242", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUUPM", "hubNaptanCode": "HUBUPM", "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": "940GZZLUUPM", "lineIdentifier": ["district"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["district"]}], "status": true, "id": "9400ZZLUUPM1", "commonName": "Upminster 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": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$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": "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": "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": "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": "Opening Time", "key": "MonFriTo", "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": "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": "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": "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": "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": "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": "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"}], "children": [], "lat": 51.559335, "lon": 0.25127}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUUPM2", "modes": ["tube"], "icsCode": "1000242", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUUPM", "hubNaptanCode": "HUBUPM", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "9400ZZLUUPM2", "commonName": "Upminster Underground 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": "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": "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": "Opening Time", "key": "MonFriTo", "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": "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": "Gates", "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": "Refreshment facilities"}, {"$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": "Facility", "key": "Help 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": "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": "22:00"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Opening Time", "key": "SunFrom", "sourceSystemKey": "StaticObjects", "value": "06:45"}], "children": [], "lat": 51.559333, "lon": 0.251357}], "lat": 51.559063, "lon": 0.250882}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "940GZZLUUPY", "modes": ["bus", "tube"], "icsCode": "1000244", "stopType": "NaptanMetroStation", "stationNaptan": "940GZZLUUPY", "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": "62", "name": "62", "uri": "/Line/62", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "940GZZLUUPY", "lineIdentifier": ["district"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490000244B", "stationAtcoCode": "490G00244B", "lineIdentifier": ["62"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490000244A", "stationAtcoCode": "490G00244B", "lineIdentifier": ["62"]}], "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": "bus", "lineIdentifier": ["62"]}], "status": true, "id": "940GZZLUUPY", "commonName": "Upney 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": "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": "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": "Opening Time", "key": "MonFriTo", "sourceSystemKey": "StaticObjects", "value": "09: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": "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": "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": "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": "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": "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": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490G00244B", "modes": ["bus"], "icsCode": "1000244", "stopType": "NaptanOnstreetBusCoachStopCluster", "stationNaptan": "490G00244B", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490G00244B", "commonName": "Upney Station", "placeType": "StopPoint", "additionalProperties": [], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000244A", "indicator": "Stop V", "stopLetter": "V", "modes": ["bus"], "icsCode": "1000244", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00244B", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000244A", "commonName": "Upney Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.538423, "lon": 0.101605}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000244B", "indicator": "Stop B", "stopLetter": "B", "modes": ["bus"], "icsCode": "1000244", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00244B", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000244B", "commonName": "Upney Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.537818, "lon": 0.102197}], "lat": 51.538423, "lon": 0.101605}, {"$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": "Other Facilities", "sourceSystemKey": "StaticObjects", "value": "canopies over platform."}, {"$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": "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": "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": "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": "Opening Time", "key": "SatFrom", "sourceSystemKey": "StaticObjects", "value": "13: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": "Escalators", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$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"}], "children": [], "lat": 51.538486, "lon": 0.101564}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUUPY", "modes": ["tube"], "icsCode": "1000244", "stopType": "NaptanMetroAccessArea", "stationNaptan": "940GZZLUUPY", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "9400ZZLUUPY", "commonName": "Upney 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": "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": "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": "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": "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": "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": "Opening Time", "key": "MonFriTo", "sourceSystemKey": "StaticObjects", "value": "09:45"}, {"$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": "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": "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": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "yes"}], "children": [], "lat": 51.538372, "lon": 0.10153}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUUPY1", "modes": ["tube"], "icsCode": "1000244", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUUPY", "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": "940GZZLUUPY", "lineIdentifier": ["district"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["district"]}], "status": true, "id": "9400ZZLUUPY1", "commonName": "Upney 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": "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": "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": "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": "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": "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": "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": "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": "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": "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"}], "children": [], "lat": 51.538371, "lon": 0.100045}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUUPY2", "modes": ["tube"], "icsCode": "1000244", "stopType": "NaptanRailAccessArea", "stationNaptan": "940GZZLUUPY", "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": "940GZZLUUPY", "lineIdentifier": ["district"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["district"]}], "status": true, "id": "9400ZZLUUPY2", "commonName": "Upney Station", "placeType": "StopPoint", "additionalProperties": [{"$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": "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": "Opening Time", "key": "SatFrom", "sourceSystemKey": "StaticObjects", "value": "13:30"}, {"$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": "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": "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": "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": "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": "Other Facilities", "sourceSystemKey": "StaticObjects", "value": "canopies over platform."}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Opening Time", "key": "SatTo", "sourceSystemKey": "StaticObjects", "value": "14:30"}], "children": [], "lat": 51.538371, "lon": 0.10003}], "lat": 51.538372, "lon": 0.10153}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "940GZZLUUXB", "modes": ["bus", "tube"], "icsCode": "1000246", "stopType": "NaptanMetroStation", "stationNaptan": "940GZZLUUXB", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "u2", "name": "U2", "uri": "/Line/u2", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "u4", "name": "U4", "uri": "/Line/u4", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "222", "name": "222", "uri": "/Line/222", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "u3", "name": "U3", "uri": "/Line/u3", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "u5", "name": "U5", "uri": "/Line/u5", "type": "Line", "crowding": {"$type": "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": "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": "u10", "name": "U10", "uri": "/Line/u10", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "u1", "name": "U1", "uri": "/Line/u1", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "331", "name": "331", "uri": "/Line/331", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "u9", "name": "U9", "uri": "/Line/u9", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "a10", "name": "A10", "uri": "/Line/a10", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "427", "name": "427", "uri": "/Line/427", "type": "Line", "crowding": {"$type": "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": "u7", "name": "U7", "uri": "/Line/u7", "type": "Line", "crowding": {"$type": "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"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490000246N", "stationAtcoCode": "490G00246H", "lineIdentifier": ["u2", "u4", "222", "u3", "u5"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "940GZZLUUXB", "lineIdentifier": ["piccadilly", "metropolitan"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490000246L", "stationAtcoCode": "490G00246H", "lineIdentifier": ["u10", "u1", "331", "u9", "a10"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490000246O", "stationAtcoCode": "490G00246H", "lineIdentifier": ["427", "n207", "u7", "sl8"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "bus", "lineIdentifier": ["u2", "u4", "222", "u3", "u5", "u10", "u1", "331", "u9", "a10", "427", "n207", "u7", "sl8"]}, {"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["piccadilly", "metropolitan"]}], "status": true, "id": "940GZZLUUXB", "commonName": "Uxbridge 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": "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": "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": "Help 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": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.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 Metropolitan 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": "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": "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": "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": "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": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5605"}], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490G00246E", "modes": ["bus"], "icsCode": "1000246", "stopType": "NaptanOnstreetBusCoachStopCluster", "stationNaptan": "940GZZLUUXB", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490G00246E", "commonName": "Uxbridge Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.546565, "lon": -0.477949}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490G00246H", "modes": ["bus"], "icsCode": "1000246", "stopType": "NaptanOnstreetBusCoachStopCluster", "stationNaptan": "490G00246H", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490G00246H", "commonName": "Uxbridge Station", "placeType": "StopPoint", "additionalProperties": [], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000246H", "indicator": "Stand H", "stopLetter": "H", "modes": ["bus"], "icsCode": "1000246", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00246H", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000246H", "commonName": "Uxbridge Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.547093, "lon": -0.478566}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000246L", "indicator": "Stop L", "stopLetter": "L", "modes": ["bus"], "icsCode": "1000246", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00246H", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000246L", "commonName": "Uxbridge Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.546535, "lon": -0.478483}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000246N", "indicator": "Stop N", "stopLetter": "N", "modes": ["bus"], "icsCode": "1000246", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00246H", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000246N", "commonName": "Uxbridge Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.546916, "lon": -0.478745}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000246N1", "indicator": "->N", "stopLetter": "->N", "modes": ["bus"], "icsCode": "1000246", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00246H", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000246N1", "commonName": "Uxbridge Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.546506, "lon": -0.475614}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000246O", "indicator": "Stop O", "stopLetter": "O", "modes": ["bus"], "icsCode": "1000246", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00246H", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000246O", "commonName": "Uxbridge Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.5473, "lon": -0.479294}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000246Z", "indicator": "->W", "stopLetter": "->W", "modes": ["bus"], "icsCode": "1000246", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00246H", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000246Z", "commonName": "Uxbridge Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.547663, "lon": -0.478849}], "lat": 51.546506, "lon": -0.475614}, {"$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": "9400ZZLUUXB", "modes": ["tube"], "icsCode": "1000246", "stopType": "NaptanMetroAccessArea", "stationNaptan": "940GZZLUUXB", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "9400ZZLUUXB", "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": "Help Points", "sourceSystemKey": "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": "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": "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": "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": "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": "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": "Boarding Ramps", "sourceSystemKey": "StaticObjects", "value": "yes Metropolitan only"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, 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": "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": "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.546565, "lon": -0.477949}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUUXB1", "modes": ["tube"], "icsCode": "1000246", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUUXB", "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": "940GZZLUUXB", "lineIdentifier": ["piccadilly", "metropolitan"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["piccadilly", "metropolitan"]}], "status": true, "id": "9400ZZLUUXB1", "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": "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": "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": "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": "Help 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": "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": "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": "Uxbridge Station,London Underground Ltd.,High St,Uxbridge,Middx,UB8 1JZ"}, {"$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": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}], "children": [], "lat": 51.546807, "lon": -0.477191}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUUXB2", "modes": ["tube"], "icsCode": "1000246", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUUXB", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "9400ZZLUUXB2", "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": "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": "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": "Facility", "key": "Help 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": "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": "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": "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"}], "children": [], "lat": 51.546833, "lon": -0.477132}], "lat": 51.546565, "lon": -0.477949}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "940GZZLUVIC", "modes": ["tube"], "icsCode": "1000248", "stopType": "NaptanMetroStation", "stationNaptan": "940GZZLUVIC", "hubNaptanCode": "HUBVIC", "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": "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": "940GZZLUVIC", "lineIdentifier": ["victoria"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "940GZZLUVIC", "lineIdentifier": ["circle", "district"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["victoria", "circle", "district"]}], "status": true, "id": "940GZZLUVIC", "commonName": "Victoria Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5743"}, {"$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": "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": "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": "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": "Boarding Ramps", "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": "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": "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": "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": "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": "Lifts", "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": "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_161"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_167"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_177"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_268"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_316"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_320"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_360"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_646"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_799"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_826"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5970"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5744"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5654"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5773"}], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490G00248G", "modes": ["bus"], "icsCode": "1000248", "stopType": "NaptanOnstreetBusCoachStopCluster", "stationNaptan": "490G00248G", "hubNaptanCode": "HUBVIC", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490G00248G", "commonName": "Victoria Station", "placeType": "StopPoint", "additionalProperties": [], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "4900000248S", "indicator": "AP", "stopLetter": "AP", "modes": ["bus"], "icsCode": "1000248", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00248G", "hubNaptanCode": "HUBVIC", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "4900000248S", "commonName": "Victoria Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.496253, "lon": -0.143942}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000248G", "indicator": "Stop G", "stopLetter": "G", "modes": ["bus"], "icsCode": "1000248", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00248G", "hubNaptanCode": "HUBVIC", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000248G", "commonName": "Victoria Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.496534, "lon": -0.143498}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000248H", "indicator": "Stop J", "stopLetter": "J", "modes": ["bus"], "icsCode": "1000248", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00248G", "hubNaptanCode": "HUBVIC", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000248H", "commonName": "Victoria Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.495663, "lon": -0.14303}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000248N2", "indicator": "Stop S", "stopLetter": "S", "modes": ["bus"], "icsCode": "1000248", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00248G", "hubNaptanCode": "HUBVIC", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000248N2", "commonName": "Victoria Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.496488, "lon": -0.145114}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000248S", "indicator": "Stop U", "stopLetter": "U", "modes": ["bus"], "icsCode": "1000248", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00248G", "hubNaptanCode": "HUBVIC", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000248S", "commonName": "Victoria Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.496002, "lon": -0.142267}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000248S1", "indicator": "Stop Z5", "stopLetter": "Z5", "modes": ["bus"], "icsCode": "1000248", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00248G", "hubNaptanCode": "HUBVIC", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000248S1", "commonName": "Victoria", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.495364, "lon": -0.145692}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000248S2", "indicator": "Stop Z12", "stopLetter": "Z12", "modes": ["bus"], "icsCode": "1000248", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00248G", "hubNaptanCode": "HUBVIC", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000248S2", "commonName": "Victoria", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.494776, "lon": -0.146091}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000248UA", "indicator": "Stop 11", "stopLetter": "11", "modes": ["bus"], "icsCode": "1000248", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00248G", "hubNaptanCode": "HUBVIC", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000248UA", "commonName": "Victoria Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.49527, "lon": -0.145999}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000248Y", "indicator": "Z14", "stopLetter": "Z14", "modes": ["bus"], "icsCode": "1000248", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00248G", "hubNaptanCode": "HUBVIC", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000248Y", "commonName": "Victoria", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.497886, "lon": -0.14255}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000248YZ", "indicator": "Stop F", "stopLetter": "F", "modes": ["bus"], "icsCode": "1000248", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00248G", "hubNaptanCode": "HUBVIC", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000248YZ", "commonName": "Victoria Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.49622, "lon": -0.143526}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000248Z", "indicator": "16", "stopLetter": "16", "modes": ["bus"], "icsCode": "1000248", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00248G", "hubNaptanCode": "HUBVIC", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000248Z", "commonName": "Victoria", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.496084, "lon": -0.144612}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000248Z7", "indicator": "Stop Z7", "stopLetter": "Z7", "modes": ["bus"], "icsCode": "1000248", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00248G", "hubNaptanCode": "HUBVIC", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000248Z7", "commonName": "Victoria", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.496474, "lon": -0.145979}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000248ZY", "indicator": "Stop JA", "stopLetter": "JA", "modes": ["bus"], "icsCode": "1000248", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00248G", "hubNaptanCode": "HUBVIC", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000248ZY", "commonName": "Victoria Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.496563, "lon": -0.144203}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000248ZZ", "indicator": "Stop H", "stopLetter": "H", "modes": ["bus"], "icsCode": "1000248", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00248G", "hubNaptanCode": "HUBVIC", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000248ZZ", "commonName": "Victoria Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.495846, "lon": -0.143238}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490002139ZZ", "indicator": "Stop E", "stopLetter": "E", "modes": ["bus"], "icsCode": "1000248", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00248G", "hubNaptanCode": "HUBVIC", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490002139ZZ", "commonName": "Victoria Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.496283, "lon": -0.144128}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490007544N2", "indicator": "Stop Z6", "stopLetter": "Z6", "modes": ["bus"], "icsCode": "1000248", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00248G", "hubNaptanCode": "HUBVIC", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490007544N2", "commonName": "Victoria Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.496283, "lon": -0.145842}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490014050R", "indicator": "Stop R", "stopLetter": "R", "modes": ["bus"], "icsCode": "1000248", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00248G", "hubNaptanCode": "HUBVIC", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490014050R", "commonName": "Victoria Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.495773, "lon": -0.145388}], "lat": 51.495773, "lon": -0.145388}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490G00248J", "modes": ["bus"], "icsCode": "1000248", "stopType": "NaptanOnstreetBusCoachStopCluster", "stationNaptan": "490G00248J", "hubNaptanCode": "HUBVIC", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490G00248J", "commonName": "Victoria Station", "placeType": "StopPoint", "additionalProperties": [], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000248J", "indicator": "Stop Z1", "stopLetter": "Z1", "modes": ["bus"], "icsCode": "1000248", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00248J", "hubNaptanCode": "HUBVIC", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000248J", "commonName": "Victoria Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.494767, "lon": -0.142619}], "lat": 51.494767, "lon": -0.142619}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "4900VICTRIC0", "indicator": "Entrance 4", "stopLetter": "4", "modes": [], "icsCode": "1000248", "stopType": "NaptanRailEntrance", "stationNaptan": "940GZZLUVIC", "hubNaptanCode": "HUBVIC", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "4900VICTRIC0", "commonName": "London Victoria Rail Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.495971, "lon": -0.143723}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "4900VICTRIC4", "indicator": "Entrance 3", "stopLetter": "3", "modes": [], "icsCode": "1000248", "stopType": "NaptanRailEntrance", "stationNaptan": "940GZZLUVIC", "hubNaptanCode": "HUBVIC", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "4900VICTRIC4", "commonName": "London Victoria Rail Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.496004, "lon": -0.14352}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "4900VICTRIC1", "indicator": "Entrance 1", "stopLetter": "1", "modes": [], "icsCode": "1000248", "stopType": "NaptanMetroEntrance", "stationNaptan": "940GZZLUVIC", "hubNaptanCode": "HUBVIC", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "4900VICTRIC1", "commonName": "Victoria Underground Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.496596, "lon": -0.143986}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "4900VICTRIC2", "indicator": "Entrance 2", "stopLetter": "2", "modes": [], "icsCode": "1000248", "stopType": "NaptanMetroEntrance", "stationNaptan": "940GZZLUVIC", "hubNaptanCode": "HUBVIC", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "4900VICTRIC2", "commonName": "Victoria Underground Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.496318, "lon": -0.144026}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "4900VICTRIC5", "indicator": "Entrance 7", "stopLetter": "7", "modes": [], "icsCode": "1000248", "stopType": "NaptanMetroEntrance", "stationNaptan": "940GZZLUVIC", "hubNaptanCode": "HUBVIC", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "4900VICTRIC5", "commonName": "Victoria Underground Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.494064, "lon": -0.146538}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "4900VICTRIC7", "indicator": "Entrance 6", "stopLetter": "6", "modes": [], "icsCode": "1000248", "stopType": "NaptanMetroEntrance", "stationNaptan": "940GZZLUVIC", "hubNaptanCode": "HUBVIC", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "4900VICTRIC7", "commonName": "Victoria Underground Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.494308, "lon": -0.143171}, {"$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": "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"}, {"$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": "Toilets", "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": "9400ZZLUVIC", "modes": ["tube"], "icsCode": "1000248", "stopType": "NaptanMetroAccessArea", "stationNaptan": "940GZZLUVIC", "hubNaptanCode": "HUBVIC", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "9400ZZLUVIC", "commonName": "Victoria 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": "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": "Boarding Ramps", "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": "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": "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": "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": "Help Points", "sourceSystemKey": "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, taxi ranks outside station, 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": "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"}], "children": [], "lat": 51.496359, "lon": -0.143102}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUVIC1", "modes": ["tube"], "icsCode": "1000248", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUVIC", "hubNaptanCode": "HUBVIC", "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": "940GZZLUVIC", "lineIdentifier": ["district", "circle"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["district", "circle"]}], "status": true, "id": "9400ZZLUVIC1", "commonName": "Victoria 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": "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": "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": "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"}, {"$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": "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": "Help 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": "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": "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": "Payphones", "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"}], "children": [], "lat": 51.49645, "lon": -0.144899}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUVIC2", "modes": ["tube"], "icsCode": "1000248", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUVIC", "hubNaptanCode": "HUBVIC", "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": "940GZZLUVIC", "lineIdentifier": ["victoria"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["victoria"]}], "status": true, "id": "9400ZZLUVIC2", "commonName": "Victoria 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": "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": "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": "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": "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": "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": "Toilets", "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": "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"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}], "children": [], "lat": 51.49712, "lon": -0.14346}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUVIC3", "modes": ["tube"], "icsCode": "1000248", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUVIC", "hubNaptanCode": "HUBVIC", "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": "940GZZLUVIC", "lineIdentifier": ["victoria"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["victoria"]}], "status": true, "id": "9400ZZLUVIC3", "commonName": "Victoria 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": "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": "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": "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": "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": "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": "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": "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": "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": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Victoria Underground Station,London Underground Ltd.,Victoria St,London,SW1E 5ND"}], "children": [], "lat": 51.497031, "lon": -0.143536}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUVIC4", "modes": ["tube"], "icsCode": "1000248", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUVIC", "hubNaptanCode": "HUBVIC", "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": "940GZZLUVIC", "lineIdentifier": ["district", "circle"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["district", "circle"]}], "status": true, "id": "9400ZZLUVIC4", "commonName": "Victoria 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": "Facility", "key": "Help Points", "sourceSystemKey": "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": "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"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.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": "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": "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": "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": "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, 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": "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": "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.496969, "lon": -0.143596}], "lat": 51.496359, "lon": -0.143102}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "940GZZLUVXL", "modes": ["tube"], "icsCode": "1000247", "stopType": "NaptanMetroStation", "stationNaptan": "940GZZLUVXL", "hubNaptanCode": "HUBVXH", "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": "940GZZLUVXL", "lineIdentifier": ["victoria"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["victoria"]}], "status": true, "id": "940GZZLUVXL", "commonName": "Vauxhall 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": "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": "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": "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": "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": "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": "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": "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": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_74"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_146"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_270"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_437"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_600"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_813"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5533"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5490"}], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490G00247N", "modes": ["bus"], "icsCode": "1000247", "stopType": "NaptanOnstreetBusCoachStopCluster", "stationNaptan": "940GZZLUVXL", "hubNaptanCode": "HUBVXH", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490G00247N", "commonName": "Vauxhall", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.485743, "lon": -0.124204}, {"$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": "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": "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": "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": "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": "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": "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": "1"}], "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": "9400ZZLUVXL", "modes": ["tube"], "icsCode": "1000247", "stopType": "NaptanMetroAccessArea", "stationNaptan": "940GZZLUVXL", "hubNaptanCode": "HUBVXH", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "9400ZZLUVXL", "commonName": "Vauxhall 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": "Escalators", "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": "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": "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": "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": "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": "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": "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": "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"}], "children": [], "lat": 51.485743, "lon": -0.124204}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUVXL1", "modes": ["tube"], "icsCode": "1000247", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUVXL", "hubNaptanCode": "HUBVXH", "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": "940GZZLUVXL", "lineIdentifier": ["victoria"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["victoria"]}], "status": true, "id": "9400ZZLUVXL1", "commonName": "Vauxhall Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$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": "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": "1+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": "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"}, {"$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": "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": "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": "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": "Waiting Room", "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.486216, "lon": -0.12453}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUVXL2", "modes": ["tube"], "icsCode": "1000247", "stopType": "NaptanRailAccessArea", "stationNaptan": "940GZZLUVXL", "hubNaptanCode": "HUBVXH", "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": "940GZZLUVXL", "lineIdentifier": ["victoria"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["victoria"]}], "status": true, "id": "9400ZZLUVXL2", "commonName": "Vauxhall", "placeType": "StopPoint", "additionalProperties": [{"$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": "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": "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, 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": "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": "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": "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": "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": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}], "children": [], "lat": 51.486216, "lon": -0.124516}], "lat": 51.485743, "lon": -0.124204}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "940GZZLUWAF", "modes": ["tube"], "icsCode": "1000255", "stopType": "NaptanMetroStation", "stationNaptan": "940GZZLUWAF", "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": "940GZZLUWAF", "lineIdentifier": ["metropolitan"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["metropolitan"]}], "status": true, "id": "940GZZLUWAF", "commonName": "Watford 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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "CarParks_800464"}], "children": [{"$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": "9400ZZLUWAF", "modes": ["tube"], "icsCode": "1000255", "stopType": "NaptanMetroAccessArea", "stationNaptan": "940GZZLUWAF", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "9400ZZLUWAF", "commonName": "Watford 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": "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": "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": "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": "7 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": "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": "Car park", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$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": "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": "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.657446, "lon": -0.417377}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUWAF1", "modes": ["tube"], "icsCode": "1000255", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUWAF", "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": "940GZZLUWAF", "lineIdentifier": ["metropolitan"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["metropolitan"]}], "status": true, "id": "9400ZZLUWAF1", "commonName": "Watford 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": "Ticket Halls", "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": "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": "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": "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": "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": "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": "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": "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": "7"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "0"}], "children": [], "lat": 51.657327, "lon": -0.41861}], "lat": 51.657446, "lon": -0.417377}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "940GZZLUWBN", "modes": ["tube"], "icsCode": "1000260", "stopType": "NaptanMetroStation", "stationNaptan": "940GZZLUWBN", "hubNaptanCode": "HUBWBP", "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": "940GZZLUWBN", "lineIdentifier": ["district"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["district"]}], "status": true, "id": "940GZZLUWBN", "commonName": "West Brompton Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_782"}, {"$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": "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": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$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": "Facility", "key": "Lifts", "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": "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": "Other Facilities", "sourceSystemKey": "StaticObjects", "value": "canopies over platform (part)."}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.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": "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": "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"}], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUWBN", "modes": ["tube"], "icsCode": "1000260", "stopType": "NaptanMetroAccessArea", "stationNaptan": "940GZZLUWBN", "hubNaptanCode": "HUBWBP", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "9400ZZLUWBN", "commonName": "West Brompton 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": "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"}, {"$type": "Tfl.Api.Presentation.Entities.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)."}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.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": "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": "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": "Gates", "sourceSystemKey": "StaticObjects", "value": "3"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "2"}], "children": [], "lat": 51.487268, "lon": -0.195599}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUWBN1", "modes": ["tube"], "icsCode": "1000260", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUWBN", "hubNaptanCode": "HUBWBP", "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": "940GZZLUWBN", "lineIdentifier": ["district"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["district"]}], "status": true, "id": "9400ZZLUWBN1", "commonName": "West Brompton 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": "Help Points", "sourceSystemKey": "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": "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": "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": "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": "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": "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"}], "children": [], "lat": 51.486962, "lon": -0.195006}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUWBN2", "modes": ["tube"], "icsCode": "1000260", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUWBN", "hubNaptanCode": "HUBWBP", "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": "940GZZLUWBN", "lineIdentifier": ["district"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["district"]}], "status": true, "id": "9400ZZLUWBN2", "commonName": "West Brompton 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": "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": "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": "Facility", "key": "Photo 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": "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": "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": "Car park", "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.486916, "lon": -0.194921}], "lat": 51.487268, "lon": -0.195599}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "940GZZLUWCY", "modes": ["bus", "tube"], "icsCode": "1000269", "stopType": "NaptanMetroStation", "stationNaptan": "940GZZLUWCY", "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": "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": "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": "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": "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": "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": "72", "name": "72", "uri": "/Line/72", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "940GZZLUWCY", "lineIdentifier": ["central"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490000269N", "stationAtcoCode": "490G00269B", "lineIdentifier": ["n72", "228", "220", "272", "95", "72"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490000269B", "stationAtcoCode": "490G00269B", "lineIdentifier": ["272", "95", "72", "220", "228", "n72"]}], "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": "bus", "lineIdentifier": ["n72", "228", "220", "272", "95", "72"]}], "status": true, "id": "940GZZLUWCY", "commonName": "White City 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": "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": "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": "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": "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": "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 (male, female)"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_566"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.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": "White City Station,London Underground Ltd.,Wood Lane,London,W12 7RH"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_601"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_652"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_741"}], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490G00269B", "modes": ["bus"], "icsCode": "1000269", "stopType": "NaptanOnstreetBusCoachStopCluster", "stationNaptan": "490G00269B", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490G00269B", "commonName": "White City Station", "placeType": "StopPoint", "additionalProperties": [], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000269B", "indicator": "Stop WA", "stopLetter": "WA", "modes": ["bus"], "icsCode": "1000269", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00269B", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000269B", "commonName": "White City Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.511765, "lon": -0.224664}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000269N", "indicator": "Stop WE", "stopLetter": "WE", "modes": ["bus"], "icsCode": "1000269", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00269B", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000269N", "commonName": "White City Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.512005, "lon": -0.225044}], "lat": 51.512005, "lon": -0.225044}, {"$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": "9400ZZLUWCY", "modes": ["tube"], "icsCode": "1000269", "stopType": "NaptanMetroAccessArea", "stationNaptan": "940GZZLUWCY", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "9400ZZLUWCY", "commonName": "White City 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": "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": "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": "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": "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": "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": "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.511959, "lon": -0.224297}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUWCY1", "modes": ["tube"], "icsCode": "1000269", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUWCY", "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": "940GZZLUWCY", "lineIdentifier": ["central"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["central"]}], "status": true, "id": "9400ZZLUWCY1", "commonName": "White City 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": "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": "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": "White City Station,London Underground Ltd.,Wood Lane,London,W12 7RH"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.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": "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": "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": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}], "children": [], "lat": 51.511991, "lon": -0.224022}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUWCY2", "modes": ["tube"], "icsCode": "1000269", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUWCY", "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": "940GZZLUWCY", "lineIdentifier": ["central"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["central"]}], "status": true, "id": "9400ZZLUWCY2", "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": "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": "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": "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": "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": "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": "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": "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.511967, "lon": -0.224239}], "lat": 51.511959, "lon": -0.224297}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "940GZZLUWFN", "modes": ["tube", "bus"], "icsCode": "1000261", "stopType": "NaptanMetroStation", "stationNaptan": "940GZZLUWFN", "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": "326", "name": "326", "uri": "/Line/326", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "940GZZLUWFN", "lineIdentifier": ["northern"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490000261N", "stationAtcoCode": "490G00261S", "lineIdentifier": ["326"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490000261S", "stationAtcoCode": "490G00261S", "lineIdentifier": ["326"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["northern"]}, {"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "bus", "lineIdentifier": ["326"]}], "status": true, "id": "940GZZLUWFN", "commonName": "West Finchley 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": "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": "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": "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": "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": "Escalators", "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": "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": "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": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490G00261S", "modes": ["bus"], "icsCode": "1000261", "stopType": "NaptanOnstreetBusCoachStopCluster", "stationNaptan": "490G00261S", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490G00261S", "commonName": "West Finchley Station", "placeType": "StopPoint", "additionalProperties": [], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000261N", "indicator": "->N", "stopLetter": "->N", "modes": ["bus"], "icsCode": "1000261", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00261S", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000261N", "commonName": "West Finchley Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.609583, "lon": -0.189872}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000261S", "indicator": "->S", "stopLetter": "->S", "modes": ["bus"], "icsCode": "1000261", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00261S", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000261S", "commonName": "West Finchley Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.609354, "lon": -0.189636}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000261ZH", "indicator": "->N", "stopLetter": "->N", "modes": ["bus"], "icsCode": "1000261", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00261S", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000261ZH", "commonName": "West Finchley Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.609592, "lon": -0.189857}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000261ZZ", "indicator": "->S", "stopLetter": "->S", "modes": ["bus"], "icsCode": "1000261", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00261S", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000261ZZ", "commonName": "West Finchley Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.609257, "lon": -0.189697}], "lat": 51.609354, "lon": -0.189636}, {"$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": "9400ZZLUWFN", "modes": ["tube"], "icsCode": "1000261", "stopType": "NaptanMetroAccessArea", "stationNaptan": "940GZZLUWFN", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "9400ZZLUWFN", "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": "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 Finchley Station,London Underground Ltd.,Nether Street,London,N3 1NT"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.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": "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": "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": "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": "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": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}], "children": [], "lat": 51.609426, "lon": -0.188362}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUWFN1", "modes": ["tube"], "icsCode": "1000261", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUWFN", "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": "940GZZLUWFN", "lineIdentifier": ["northern"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["northern"]}], "status": true, "id": "9400ZZLUWFN1", "commonName": "West Finchley 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": "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": "Boarding Ramps", "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": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "4"}, {"$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": "Help Points", "sourceSystemKey": "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": "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"}], "children": [], "lat": 51.60941, "lon": -0.188449}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUWFN2", "modes": ["tube"], "icsCode": "1000261", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUWFN", "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": "940GZZLUWFN", "lineIdentifier": ["northern"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["northern"]}], "status": true, "id": "9400ZZLUWFN2", "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": "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": "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": "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": "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": "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"}], "children": [], "lat": 51.609356, "lon": -0.188466}], "lat": 51.609426, "lon": -0.188362}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "940GZZLUWHM", "modes": ["tube"], "icsCode": "1000262", "stopType": "NaptanMetroStation", "stationNaptan": "940GZZLUWHM", "hubNaptanCode": "HUBWEH", "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": "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": "940GZZLUWHM", "lineIdentifier": ["jubilee"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "940GZZLUWHM", "lineIdentifier": ["hammersmith-city", "district"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["jubilee", "hammersmith-city", "district"]}], "status": true, "id": "940GZZLUWHM", "commonName": "West Ham 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": "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": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "West Ham Underground Station,London Underground Ltd.,Manor Rd,London,E15 3BN"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "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": "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": "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": "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": "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": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5826"}], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUWHM", "modes": ["tube"], "icsCode": "1000262", "stopType": "NaptanMetroAccessArea", "stationNaptan": "940GZZLUWHM", "hubNaptanCode": "HUBWEH", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "9400ZZLUWHM", "commonName": "West Ham 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": "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": "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": "2/3"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "West Ham Underground Station,London Underground Ltd.,Manor Rd,London,E15 3BN"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.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": "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": "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": "Photo 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.528136, "lon": 0.005055}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUWHM1", "indicator": "Platform 1", "stopLetter": "1", "modes": ["tube"], "icsCode": "1000262", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUWHM", "hubNaptanCode": "HUBWEH", "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": "940GZZLUWHM", "lineIdentifier": ["district", "hammersmith-city"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["district", "hammersmith-city"]}], "status": true, "id": "9400ZZLUWHM1", "commonName": "West Ham Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "West Ham Underground Station,London Underground Ltd.,Manor Rd,London,E15 3BN"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.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": "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": "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": "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": "Photo 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": "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": "Escalators", "sourceSystemKey": "StaticObjects", "value": "6"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "2"}], "children": [], "lat": 51.528558, "lon": 0.005593}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUWHM2", "indicator": "Platform 2", "stopLetter": "2", "modes": ["tube"], "icsCode": "1000262", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUWHM", "hubNaptanCode": "HUBWEH", "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": "940GZZLUWHM", "lineIdentifier": ["jubilee"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["jubilee"]}], "status": true, "id": "9400ZZLUWHM2", "commonName": "West Ham 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": "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": "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": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "West Ham Underground Station,London Underground Ltd.,Manor Rd,London,E15 3BN"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.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": "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": "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": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "0"}], "children": [], "lat": 51.528648, "lon": 0.005597}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUWHM3", "indicator": "Platform 5", "stopLetter": "5", "modes": ["tube"], "icsCode": "1000262", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUWHM", "hubNaptanCode": "HUBWEH", "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": "940GZZLUWHM", "lineIdentifier": ["district", "hammersmith-city"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["district", "hammersmith-city"]}], "status": true, "id": "9400ZZLUWHM3", "commonName": "West Ham 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": "Facility", "key": "Toilets", "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": "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": "Photo 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": "West Ham Underground Station,London Underground Ltd.,Manor Rd,London,E15 3BN"}, {"$type": "Tfl.Api.Presentation.Entities.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/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": "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.527511, "lon": 0.004264}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUWHM4", "indicator": "Platform 6", "stopLetter": "6", "modes": ["tube"], "icsCode": "1000262", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUWHM", "hubNaptanCode": "HUBWEH", "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": "940GZZLUWHM", "lineIdentifier": ["jubilee"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["jubilee"]}], "status": true, "id": "9400ZZLUWHM4", "commonName": "West Ham 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": "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": "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": "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/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": "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": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "West Ham Underground Station,London Underground Ltd.,Manor Rd,London,E15 3BN"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}], "children": [], "lat": 51.527514, "lon": 0.00412}], "lat": 51.528136, "lon": 0.005055}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "940GZZLUWHP", "modes": ["tube"], "icsCode": "1000263", "stopType": "NaptanMetroStation", "stationNaptan": "940GZZLUWHP", "hubNaptanCode": "HUBWHD", "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": "940GZZLUWHP", "lineIdentifier": ["jubilee"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["jubilee"]}], "status": true, "id": "940GZZLUWHP", "commonName": "West Hampstead 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": "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": "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": "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": "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": "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": "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": "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."}], "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": [{"$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": "9400ZZLUWHP", "modes": ["tube"], "icsCode": "1000263", "stopType": "NaptanMetroAccessArea", "stationNaptan": "940GZZLUWHP", "hubNaptanCode": "HUBWHD", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "9400ZZLUWHP", "commonName": "West Hampstead 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": "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": "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": "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": "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": "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": "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.546638, "lon": -0.191059}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUWHP1", "modes": ["tube"], "icsCode": "1000263", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUWHP", "hubNaptanCode": "HUBWHD", "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": "940GZZLUWHP", "lineIdentifier": ["jubilee"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["jubilee"]}], "status": true, "id": "9400ZZLUWHP1", "commonName": "West Hampstead 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": "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": "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": "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": "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": "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": "Escalators", "sourceSystemKey": "StaticObjects", "value": "0"}], "children": [], "lat": 51.5468, "lon": -0.190475}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUWHP2", "modes": ["tube"], "icsCode": "1000263", "stopType": "NaptanRailAccessArea", "stationNaptan": "940GZZLUWHP", "hubNaptanCode": "HUBWHD", "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": "940GZZLUWHP", "lineIdentifier": ["jubilee"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["jubilee"]}], "status": true, "id": "9400ZZLUWHP2", "commonName": "West Hampstead 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": "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": "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": "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": "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": "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": "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": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$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"}], "children": [], "lat": 51.546809, "lon": -0.190475}], "lat": 51.546638, "lon": -0.191059}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "940GZZLUWHW", "modes": ["tube"], "icsCode": "1000264", "stopType": "NaptanMetroStation", "stationNaptan": "940GZZLUWHW", "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": "940GZZLUWHW", "lineIdentifier": ["metropolitan"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["metropolitan"]}], "status": true, "id": "940GZZLUWHW", "commonName": "West 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": "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": "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": "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": "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": "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": "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"}], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490G00264S", "modes": ["bus"], "icsCode": "1000264", "stopType": "NaptanOnstreetBusCoachStopCluster", "stationNaptan": "490G00264S", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490G00264S", "commonName": "West Harrow Station", "placeType": "StopPoint", "additionalProperties": [], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000264S", "indicator": "->S", "stopLetter": "->S", "modes": ["bus"], "icsCode": "1000264", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00264S", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000264S", "commonName": "West Harrow Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.582859, "lon": -0.353603}], "lat": 51.582859, "lon": -0.353603}, {"$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": "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": "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": "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": "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": "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": "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": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}], "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": "9400ZZLUWHW", "modes": ["tube"], "icsCode": "1000264", "stopType": "NaptanMetroAccessArea", "stationNaptan": "940GZZLUWHW", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "9400ZZLUWHW", "commonName": "West Harrow Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$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": "Gates", "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": "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": "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": "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": "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"}], "children": [], "lat": 51.57971, "lon": -0.3534}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUWHW1", "modes": ["tube"], "icsCode": "1000264", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUWHW", "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": "940GZZLUWHW", "lineIdentifier": ["metropolitan"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["metropolitan"]}], "status": true, "id": "9400ZZLUWHW1", "commonName": "West Harrow 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": "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": "5"}, {"$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": "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": "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": "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": "Payphones", "sourceSystemKey": "StaticObjects", "value": "1"}], "children": [], "lat": 51.579811, "lon": -0.353497}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUWHW2", "modes": ["tube"], "icsCode": "1000264", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUWHW", "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": "940GZZLUWHW", "lineIdentifier": ["metropolitan"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["metropolitan"]}], "status": true, "id": "9400ZZLUWHW2", "commonName": "West Harrow 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": "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": "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": "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": "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": "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"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.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"}], "children": [], "lat": 51.579767, "lon": -0.353585}], "lat": 51.57971, "lon": -0.3534}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "940GZZLUWIG", "modes": ["tube", "bus"], "icsCode": "1000270", "stopType": "NaptanMetroStation", "stationNaptan": "940GZZLUWIG", "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": "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": "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": "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": "266", "name": "266", "uri": "/Line/266", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "940GZZLUWIG", "lineIdentifier": ["jubilee"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490000270B", "stationAtcoCode": "490G00270W", "lineIdentifier": ["460", "260", "n266", "266"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490000270A", "stationAtcoCode": "490G00270W", "lineIdentifier": ["n266", "460", "266", "260"]}], "lineModeGroups": [{"$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": ["460", "260", "n266", "266"]}], "status": true, "id": "940GZZLUWIG", "commonName": "Willesden Green 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": "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": "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": "2+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": "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": "Euro Cash Machines", "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": "Help Points", "sourceSystemKey": "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": "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": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5503"}], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490G00270W", "modes": ["bus"], "icsCode": "1000270", "stopType": "NaptanOnstreetBusCoachStopCluster", "stationNaptan": "490G00270W", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490G00270W", "commonName": "Willesden Green Station", "placeType": "StopPoint", "additionalProperties": [], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000270A", "indicator": "Stop A", "stopLetter": "A", "modes": ["bus"], "icsCode": "1000270", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00270W", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000270A", "commonName": "Willesden Green Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.549107, "lon": -0.220889}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000270B", "indicator": "Stop B", "stopLetter": "B", "modes": ["bus"], "icsCode": "1000270", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00270W", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000270B", "commonName": "Willesden Green Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.548883, "lon": -0.221518}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000270W", "indicator": "Stop", "modes": ["bus"], "icsCode": "1000270", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00270W", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000270W", "commonName": "Willesden Green Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.549367, "lon": -0.221398}], "lat": 51.549367, "lon": -0.221398}, {"$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": "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"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "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": "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": "Willesden Green Station,London Underground Ltd.,Walm Lane,London,NW2 4QT"}], "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": "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": "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": "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": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}], "children": [], "lat": 51.549049, "lon": -0.221237}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUWIG", "modes": ["tube"], "icsCode": "1000270", "stopType": "NaptanMetroAccessArea", "stationNaptan": "940GZZLUWIG", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "9400ZZLUWIG", "commonName": "Willesden Green 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": "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": "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": "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": "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": "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": "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": "Help Points", "sourceSystemKey": "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": "0"}], "children": [], "lat": 51.549146, "lon": -0.221537}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUWIG1", "modes": ["tube"], "icsCode": "1000270", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUWIG", "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": "940GZZLUWIG", "lineIdentifier": ["jubilee"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["jubilee"]}], "status": true, "id": "9400ZZLUWIG1", "commonName": "Willesden Green 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": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$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": "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": "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": "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": "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": "2+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": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}], "children": [], "lat": 51.549348, "lon": -0.221846}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUWIG2", "modes": ["tube"], "icsCode": "1000270", "stopType": "NaptanRailAccessArea", "stationNaptan": "940GZZLUWIG", "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": "940GZZLUWIG", "lineIdentifier": ["jubilee"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["jubilee"]}], "status": true, "id": "9400ZZLUWIG2", "commonName": "Willesden Green 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": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$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": "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": "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": "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": "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": "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.549348, "lon": -0.221846}], "lat": 51.549146, "lon": -0.221537}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "940GZZLUWIM", "modes": ["tube"], "icsCode": "1000272", "stopType": "NaptanMetroStation", "stationNaptan": "940GZZLUWIM", "hubNaptanCode": "HUBWIM", "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": "940GZZLUWIM", "lineIdentifier": ["district"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["district"]}], "status": true, "id": "940GZZLUWIM", "commonName": "Wimbledon 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": "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": "Wimbledon,London Underground Ltd.,The Broadway,London,SW19 7NL"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo 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": "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": "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": "Lifts", "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": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5382"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5128"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5691"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5679"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5692"}], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUWIM", "modes": ["tube"], "icsCode": "1000272", "stopType": "NaptanMetroAccessArea", "stationNaptan": "940GZZLUWIM", "hubNaptanCode": "HUBWIM", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "9400ZZLUWIM", "commonName": "Wimbledon 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": "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": "Payphones", "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)"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.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": "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": "Wimbledon,London Underground Ltd.,The Broadway,London,SW19 7NL"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.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"}], "children": [], "lat": 51.421207, "lon": -0.206573}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUWIM1", "modes": ["tube"], "icsCode": "1000272", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUWIM", "hubNaptanCode": "HUBWIM", "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": "940GZZLUWIM", "lineIdentifier": ["district"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["district"]}], "status": true, "id": "9400ZZLUWIM1", "commonName": "Wimbledon Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Wimbledon,London Underground Ltd.,The Broadway,London,SW19 7NL"}, {"$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": "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": "Toilets", "sourceSystemKey": "StaticObjects", "value": "yes (male, female)"}, {"$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": "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": "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": "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": "Lifts", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "0"}], "children": [], "lat": 51.421342, "lon": -0.206625}], "lat": 51.421207, "lon": -0.206573}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "940GZZLUWIP", "modes": ["tube"], "icsCode": "1000273", "stopType": "NaptanMetroStation", "stationNaptan": "940GZZLUWIP", "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": "940GZZLUWIP", "lineIdentifier": ["district"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["district"]}], "status": true, "id": "940GZZLUWIP", "commonName": "Wimbledon 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": "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"}, {"$type": "Tfl.Api.Presentation.Entities.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 (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": "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": "Wimbledon Park Station,Arthur Rd,London,SW19 "}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.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": "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"}], "children": [{"$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": "9400ZZLUWIP", "modes": ["tube"], "icsCode": "1000273", "stopType": "NaptanMetroAccessArea", "stationNaptan": "940GZZLUWIP", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "9400ZZLUWIP", "commonName": "Wimbledon 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": "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": "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": "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": "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": "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": "3"}], "children": [], "lat": 51.434573, "lon": -0.199719}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUWIP1", "modes": ["tube"], "icsCode": "1000273", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUWIP", "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": "940GZZLUWIP", "lineIdentifier": ["district"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["district"]}], "status": true, "id": "9400ZZLUWIP1", "commonName": "Wimbledon Park 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": "no"}, {"$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": "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": "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": "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.434323, "lon": -0.199311}], "lat": 51.434573, "lon": -0.199719}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "940GZZLUWJN", "modes": ["tube"], "icsCode": "1000271", "stopType": "NaptanMetroStation", "stationNaptan": "940GZZLUWJN", "hubNaptanCode": "HUBWIJ", "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": "940GZZLUWJN", "lineIdentifier": ["bakerloo"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["bakerloo"]}], "status": true, "id": "940GZZLUWJN", "commonName": "Willesden Junction 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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "SunTo", "sourceSystemKey": "StaticObjects", "value": "18:30"}], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUWJN", "modes": ["tube"], "icsCode": "1000271", "stopType": "NaptanMetroAccessArea", "stationNaptan": "940GZZLUWJN", "hubNaptanCode": "HUBWIJ", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "9400ZZLUWJN", "commonName": "Willesden Junction 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": "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": "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": "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": "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": "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": "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": "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": "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"}], "children": [], "lat": 51.532259, "lon": -0.244283}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUWJN1", "modes": ["tube"], "icsCode": "1000271", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUWJN", "hubNaptanCode": "HUBWIJ", "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": "940GZZLUWJN", "lineIdentifier": ["bakerloo"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["bakerloo"]}], "status": true, "id": "9400ZZLUWJN1", "commonName": "Willesden Junction 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": "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": "Willesden Junction,London Overground Ltd.,Station Approach,Harlesden,NW10 4UY"}, {"$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": "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": "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": "Lifts", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$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": "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": "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": "18: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": "Car park", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$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": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "no"}], "children": [], "lat": 51.532496, "lon": -0.24449}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUWJN2", "modes": ["tube"], "icsCode": "1000271", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUWJN", "hubNaptanCode": "HUBWIJ", "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": "940GZZLUWJN", "lineIdentifier": ["bakerloo"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["bakerloo"]}], "status": true, "id": "9400ZZLUWJN2", "commonName": "Willesden Junction 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": "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": "Opening Time", "key": "MonFriFrom", "sourceSystemKey": "StaticObjects", "value": "06: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": "Opening Time", "key": "SunFrom", "sourceSystemKey": "StaticObjects", "value": "09:15"}, {"$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": "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": "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": "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": "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": "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": "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": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}], "children": [], "lat": 51.532398, "lon": -0.244537}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUWJN3", "modes": ["tube"], "icsCode": "1000271", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUWJN", "hubNaptanCode": "HUBWIJ", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "9400ZZLUWJN3", "commonName": "Willesden Junction 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": "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": "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": "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": "Help Points", "sourceSystemKey": "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": "09:15"}, {"$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": "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 London Overground only"}, {"$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": "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": "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": "Opening Time", "key": "MonFriFrom", "sourceSystemKey": "StaticObjects", "value": "06:30"}], "children": [], "lat": 51.532325, "lon": -0.244468}], "lat": 51.532259, "lon": -0.244283}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "940GZZLUWKA", "modes": ["bus", "tube"], "icsCode": "1000253", "stopType": "NaptanMetroStation", "stationNaptan": "940GZZLUWKA", "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": "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": "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": "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": "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": "490000253H", "stationAtcoCode": "490G00253H", "lineIdentifier": ["6", "187", "16", "46"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "940GZZLUWKA", "lineIdentifier": ["bakerloo"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490000253K", "stationAtcoCode": "490G00253H", "lineIdentifier": ["46", "187", "6"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "bus", "lineIdentifier": ["6", "187", "16", "46"]}, {"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["bakerloo"]}], "status": true, "id": "940GZZLUWKA", "commonName": "Warwick Avenue 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": "Waiting Room", "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"}, {"$type": "Tfl.Api.Presentation.Entities.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": "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": "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": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_47"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_255"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5702"}], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490G00253H", "modes": ["bus"], "icsCode": "1000253", "stopType": "NaptanOnstreetBusCoachStopCluster", "stationNaptan": "490G00253H", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490G00253H", "commonName": "Warwick Avenue Station", "placeType": "StopPoint", "additionalProperties": [], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000253H", "indicator": "Stop H", "stopLetter": "H", "modes": ["bus"], "icsCode": "1000253", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00253H", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000253H", "commonName": "Warwick Avenue Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.523615, "lon": -0.183423}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000253K", "indicator": "Stop K", "stopLetter": "K", "modes": ["bus"], "icsCode": "1000253", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00253H", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000253K", "commonName": "Warwick Avenue Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.523689, "lon": -0.183579}], "lat": 51.523615, "lon": -0.183423}, {"$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": "9400ZZLUWKA", "modes": ["tube"], "icsCode": "1000253", "stopType": "NaptanMetroAccessArea", "stationNaptan": "940GZZLUWKA", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "9400ZZLUWKA", "commonName": "Warwick Avenue 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": "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": "Photo 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": "Warwick Avenue Station,London Underground Ltd.,Warwick Avenue,London,W9 2PT"}, {"$type": "Tfl.Api.Presentation.Entities.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": "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": "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": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}], "children": [], "lat": 51.523263, "lon": -0.183783}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUWKA1", "modes": ["tube"], "icsCode": "1000253", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUWKA", "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": "940GZZLUWKA", "lineIdentifier": ["bakerloo"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["bakerloo"]}], "status": true, "id": "9400ZZLUWKA1", "commonName": "Warwick Avenue Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$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": "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": "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": "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": "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": "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": "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.522973, "lon": -0.183103}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUWKA2", "modes": ["tube"], "icsCode": "1000253", "stopType": "NaptanRailAccessArea", "stationNaptan": "940GZZLUWKA", "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": "940GZZLUWKA", "lineIdentifier": ["bakerloo"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["bakerloo"]}], "status": true, "id": "9400ZZLUWKA2", "commonName": "Warwick Avenue", "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": "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": "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": "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": "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": "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": "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": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "no"}], "children": [], "lat": 51.522973, "lon": -0.183103}], "lat": 51.523263, "lon": -0.183783}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "940GZZLUWKN", "modes": ["bus", "tube"], "icsCode": "1000265", "stopType": "NaptanMetroStation", "stationNaptan": "940GZZLUWKN", "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": "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": "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": "n28", "name": "N28", "uri": "/Line/n28", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "940GZZLUWKN", "lineIdentifier": ["district"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490000265A", "stationAtcoCode": "490G00265W", "lineIdentifier": ["306", "28", "n28"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490000265B", "stationAtcoCode": "490G00265W", "lineIdentifier": ["306", "28", "n28"]}], "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": "bus", "lineIdentifier": ["306", "28", "n28"]}], "status": true, "id": "940GZZLUWKN", "commonName": "West 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": "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": "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": "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": "4"}, {"$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": "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": "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": "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_633"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_660"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_720"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_770"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.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": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490G00265W", "modes": ["bus"], "icsCode": "1000265", "stopType": "NaptanOnstreetBusCoachStopCluster", "stationNaptan": "490G00265W", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490G00265W", "commonName": "West Kensington Station", "placeType": "StopPoint", "additionalProperties": [], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000265A", "indicator": "Stop S", "stopLetter": "S", "modes": ["bus"], "icsCode": "1000265", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00265W", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000265A", "commonName": "West Kensington Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.490565, "lon": -0.206632}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000265B", "indicator": "Stop T", "stopLetter": "T", "modes": ["bus"], "icsCode": "1000265", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00265W", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000265B", "commonName": "West Kensington Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.489916, "lon": -0.206485}], "lat": 51.489916, "lon": -0.206485}, {"$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": "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": "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"}, {"$type": "Tfl.Api.Presentation.Entities.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": "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": "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"}], "children": [], "lat": 51.490704, "lon": -0.206857}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUWKN", "modes": ["tube"], "icsCode": "1000265", "stopType": "NaptanMetroAccessArea", "stationNaptan": "940GZZLUWKN", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "9400ZZLUWKN", "commonName": "West Kensington 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": "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": "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": "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": "Help 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": "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, post office style queuing for tickets, routeways platform to ticket hall."}], "children": [], "lat": 51.490459, "lon": -0.206636}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUWKN1", "modes": ["tube"], "icsCode": "1000265", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUWKN", "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": "940GZZLUWKN", "lineIdentifier": ["district"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["district"]}], "status": true, "id": "9400ZZLUWKN1", "commonName": "West Kensington 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": "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": "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": "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": "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": "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": "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": "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"}], "children": [], "lat": 51.49083, "lon": -0.20619}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUWKN2", "modes": ["tube"], "icsCode": "1000265", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUWKN", "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": "940GZZLUWKN", "lineIdentifier": ["district"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["district"]}], "status": true, "id": "9400ZZLUWKN2", "commonName": "West Kensington 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": "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": "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": "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": "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": "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": "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": "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.490846, "lon": -0.206088}], "lat": 51.490459, "lon": -0.206636}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "940GZZLUWLA", "modes": ["tube"], "icsCode": "1000278", "stopType": "NaptanMetroStation", "stationNaptan": "940GZZLUWLA", "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": "940GZZLUWLA", "lineIdentifier": ["circle", "hammersmith-city"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["circle", "hammersmith-city"]}], "status": true, "id": "940GZZLUWLA", "commonName": "Wood 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": "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": "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": "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": "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": "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": "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": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_566"}, {"$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_652"}, {"$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": "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": "9400ZZLUWLA", "modes": ["tube"], "icsCode": "1000278", "stopType": "NaptanMetroAccessArea", "stationNaptan": "940GZZLUWLA", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "9400ZZLUWLA", "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": "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": "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": "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": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.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": "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": "Lifts", "sourceSystemKey": "StaticObjects", "value": "2"}], "children": [], "lat": 51.509669, "lon": -0.22453}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUWLA1", "modes": ["tube"], "icsCode": "1000278", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUWLA", "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": "940GZZLUWLA", "lineIdentifier": ["circle", "hammersmith-city"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["circle", "hammersmith-city"]}], "status": true, "id": "9400ZZLUWLA1", "commonName": "Wood Lane 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": "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": "Car park", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$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": "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": "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": "Toilets", "sourceSystemKey": "StaticObjects", "value": "no"}], "children": [], "lat": 51.509658, "lon": -0.224401}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUWLA2", "modes": ["tube"], "icsCode": "1000278", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUWLA", "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": "940GZZLUWLA", "lineIdentifier": ["circle", "hammersmith-city"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["circle", "hammersmith-city"]}], "status": true, "id": "9400ZZLUWLA2", "commonName": "Wood Lane 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": "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": "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": "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": "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": "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": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}], "children": [], "lat": 51.509639, "lon": -0.224329}], "lat": 51.509669, "lon": -0.22453}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "940GZZLUWLO", "modes": ["tube"], "icsCode": "1000254", "stopType": "NaptanMetroStation", "stationNaptan": "940GZZLUWLO", "hubNaptanCode": "HUBWAT", "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"}, {"$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"}, {"$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": "940GZZLUWLO", "lineIdentifier": ["waterloo-city"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "940GZZLUWLO", "lineIdentifier": ["bakerloo"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "940GZZLUWLO", "lineIdentifier": ["northern"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "940GZZLUWLO", "lineIdentifier": ["jubilee"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["waterloo-city", "bakerloo", "northern", "jubilee"]}], "status": true, "id": "940GZZLUWLO", "commonName": "Waterloo 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": "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": "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": "Ticket Halls", "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": "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": "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": "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, 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": "46"}, {"$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": "Payphones", "sourceSystemKey": "StaticObjects", "value": "6"}, {"$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": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_154"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_173"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_197"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_272"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_273"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_334"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_336"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_347"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_361"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_374"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_377"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_672"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_815"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_819"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5940"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5974"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5279"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5973"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5563"}], "children": [{"$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": "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": "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": "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": "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": "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": "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": "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"}], "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": "Accessibility", "key": "AccessViaLift", "sourceSystemKey": "LRAD", "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": "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": "Help 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": "LimitedCapacityLift", "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": "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": "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": "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": "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": "Accessibility", "key": "SpecificEntranceRequired", "sourceSystemKey": "LRAD", "value": "No"}], "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": "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": "Help Points", "sourceSystemKey": "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": "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": "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.503347, "lon": -0.11119}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUWLO", "modes": ["tube"], "icsCode": "1000254", "stopType": "NaptanMetroAccessArea", "stationNaptan": "940GZZLUWLO", "hubNaptanCode": "HUBWAT", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "9400ZZLUWLO", "commonName": "Waterloo 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": "Escalators", "sourceSystemKey": "StaticObjects", "value": "23"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.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": "46"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo 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": "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": "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": "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": "Help 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": "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": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "3"}], "children": [], "lat": 51.503299, "lon": -0.11478}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUWLO1", "modes": ["tube"], "icsCode": "1000254", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUWLO", "hubNaptanCode": "HUBWAT", "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": "940GZZLUWLO", "lineIdentifier": ["bakerloo"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["bakerloo"]}], "status": true, "id": "9400ZZLUWLO1", "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": "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": "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": "Help Points", "sourceSystemKey": "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": "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": "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": "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": "Ticket Halls", "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": "yes"}], "children": [], "lat": 51.503097, "lon": -0.11512}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUWLO2", "modes": ["tube"], "icsCode": "1000254", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUWLO", "hubNaptanCode": "HUBWAT", "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": "940GZZLUWLO", "lineIdentifier": ["bakerloo"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["bakerloo"]}], "status": true, "id": "9400ZZLUWLO2", "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": "Photo 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": "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": "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": "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": "Help Points", "sourceSystemKey": "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": "Payphones", "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": "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.503052, "lon": -0.115093}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUWLO3", "modes": ["tube"], "icsCode": "1000254", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUWLO", "hubNaptanCode": "HUBWAT", "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": "940GZZLUWLO", "lineIdentifier": ["northern"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["northern"]}], "status": true, "id": "9400ZZLUWLO3", "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": "Facility", "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": "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": "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": "Help 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": "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": "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": "Escalators", "sourceSystemKey": "StaticObjects", "value": "23"}, {"$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": "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": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}], "children": [], "lat": 51.503189, "lon": -0.113574}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUWLO4", "modes": ["tube"], "icsCode": "1000254", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUWLO", "hubNaptanCode": "HUBWAT", "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": "940GZZLUWLO", "lineIdentifier": ["jubilee"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["jubilee"]}], "status": true, "id": "9400ZZLUWLO4", "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": "Photo 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": "Waterloo Underground Station,London Underground Ltd.,York Rd,London,SE1 7ND"}, {"$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": "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, 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": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$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": "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": "0 on platforms, 0 in ticket halls, 0 elsewhere"}], "children": [], "lat": 51.503333, "lon": -0.113021}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUWLO5", "modes": ["tube"], "icsCode": "1000254", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUWLO", "hubNaptanCode": "HUBWAT", "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": "940GZZLUWLO", "lineIdentifier": ["waterloo-city"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["waterloo-city"]}], "status": true, "id": "9400ZZLUWLO5", "commonName": "Waterloo 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": "Payphones", "sourceSystemKey": "StaticObjects", "value": "6"}, {"$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": "Gates", "sourceSystemKey": "StaticObjects", "value": "46"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo 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": "Waterloo Underground Station,London Underground Ltd.,York Rd,London,SE1 7ND"}, {"$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": "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": "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, post office style queuing for tickets, routeways platform to ticket hall."}], "children": [], "lat": 51.502683, "lon": -0.112875}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUWLO6", "modes": ["tube"], "icsCode": "1000254", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUWLO", "hubNaptanCode": "HUBWAT", "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": "940GZZLUWLO", "lineIdentifier": ["waterloo-city"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["waterloo-city"]}], "status": true, "id": "9400ZZLUWLO6", "commonName": "Waterloo Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$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": "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": "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": "Payphones", "sourceSystemKey": "StaticObjects", "value": "6"}, {"$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": "Help Points", "sourceSystemKey": "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": "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": "23"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "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.502738, "lon": -0.11293}], "lat": 51.503299, "lon": -0.11478}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "940GZZLUWOF", "modes": ["bus", "tube"], "icsCode": "1000274", "stopType": "NaptanMetroStation", "stationNaptan": "940GZZLUWOF", "lines": [{"$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": "549", "name": "549", "uri": "/Line/549", "type": "Line", "crowding": {"$type": "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"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490000274C", "stationAtcoCode": "490G00274S", "lineIdentifier": ["275"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490000274B", "stationAtcoCode": "490G00274S", "lineIdentifier": ["549"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490000274A", "stationAtcoCode": "490G00274S", "lineIdentifier": ["549", "275"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "940GZZLUWOF", "lineIdentifier": ["central"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "bus", "lineIdentifier": ["275", "549"]}, {"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["central"]}], "status": true, "id": "940GZZLUWOF", "commonName": "Woodford 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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "CarParks_800498"}], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490G00274S", "modes": ["bus"], "icsCode": "1000274", "stopType": "NaptanOnstreetBusCoachStopCluster", "stationNaptan": "490G00274S", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490G00274S", "commonName": "Woodford Station", "placeType": "StopPoint", "additionalProperties": [], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000274A", "indicator": "Stop A", "stopLetter": "A", "modes": ["bus"], "icsCode": "1000274", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00274S", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000274A", "commonName": "Woodford Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.607434, "lon": 0.035742}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000274B", "indicator": "Stop B", "stopLetter": "B", "modes": ["bus"], "icsCode": "1000274", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00274S", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000274B", "commonName": "Woodford Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.608648, "lon": 0.036749}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000274C", "indicator": "Stop R", "stopLetter": "R", "modes": ["bus"], "icsCode": "1000274", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00274S", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000274C", "commonName": "Woodford Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.607664, "lon": 0.036474}], "lat": 51.607664, "lon": 0.036474}, {"$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": "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": "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": "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": "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": "BlueBadgeCarParkSpaces", "sourceSystemKey": "LRAD", "value": "10"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "LimitedCapacityLift", "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": "9400ZZLUWOF", "modes": ["tube"], "icsCode": "1000274", "stopType": "NaptanMetroAccessArea", "stationNaptan": "940GZZLUWOF", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "9400ZZLUWOF", "commonName": "Woodford Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$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": "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": "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": "Help Points", "sourceSystemKey": "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": "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": "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": "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": "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": "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": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "yes"}], "children": [], "lat": 51.606899, "lon": 0.03397}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUWOF1", "modes": ["tube"], "icsCode": "1000274", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUWOF", "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": "940GZZLUWOF", "lineIdentifier": ["central"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["central"]}], "status": true, "id": "9400ZZLUWOF1", "commonName": "Woodford 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": "post office style queuing for tickets, subway to street."}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, 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": "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": "Payphones", "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": "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": "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": "Ticket Halls", "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": "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": "Woodford Station,London Underground Ltd.,Snakes Lane,Woodford Green,Essex"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}], "children": [], "lat": 51.607181, "lon": 0.033781}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUWOF2", "modes": ["tube"], "icsCode": "1000274", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUWOF", "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": "940GZZLUWOF", "lineIdentifier": ["central"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["central"]}], "status": true, "id": "9400ZZLUWOF2", "commonName": "Woodford 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": "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": "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": "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": "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": "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": "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": "Help Points", "sourceSystemKey": "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": "Woodford Station,London Underground Ltd.,Snakes Lane,Woodford Green,Essex"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.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"}], "children": [], "lat": 51.607128, "lon": 0.03375}], "lat": 51.606899, "lon": 0.03397}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "940GZZLUWOG", "modes": ["tube", "bus"], "icsCode": "1000275", "stopType": "NaptanMetroStation", "stationNaptan": "940GZZLUWOG", "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": "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": "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"}, {"$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": "329", "name": "329", "uri": "/Line/329", "type": "Line", "crowding": {"$type": "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": "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": "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": "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": "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": "w4", "name": "W4", "uri": "/Line/w4", "type": "Line", "crowding": {"$type": "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": "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": "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": "230", "name": "230", "uri": "/Line/230", "type": "Line", "crowding": {"$type": "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": "490015567H", "stationAtcoCode": "490G00275D", "lineIdentifier": ["121", "232", "141", "n29", "n91", "329", "221"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490000275F", "stationAtcoCode": "490G00275D", "lineIdentifier": ["144", "w3", "243"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "940GZZLUWOG", "lineIdentifier": ["piccadilly"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490000275D", "stationAtcoCode": "490G00275D", "lineIdentifier": ["329", "n91", "w4", "n29", "141", "232", "121", "221"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490014854HB", "stationAtcoCode": "490G00275D", "lineIdentifier": ["67", "29", "144", "123", "230"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "bus", "lineIdentifier": ["121", "232", "141", "n29", "n91", "329", "221", "144", "w3", "243", "w4", "67", "29", "123", "230"]}, {"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["piccadilly"]}], "status": true, "id": "940GZZLUWOG", "commonName": "Wood Green 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": "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": "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": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.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": "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": "Gates", "sourceSystemKey": "StaticObjects", "value": "7"}, {"$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": "Toilets", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5526"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5527"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5564"}], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490G00275D", "modes": ["bus"], "icsCode": "1000275", "stopType": "NaptanOnstreetBusCoachStopCluster", "stationNaptan": "490G00275D", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490G00275D", "commonName": "Wood Green Station", "placeType": "StopPoint", "additionalProperties": [], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000275D", "indicator": "Stop D", "stopLetter": "D", "modes": ["bus"], "icsCode": "1000275", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00275D", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000275D", "commonName": "Wood Green Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.59759, "lon": -0.110185}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000275F", "indicator": "Stop F", "stopLetter": "F", "modes": ["bus"], "icsCode": "1000275", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00275D", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000275F", "commonName": "Wood Green Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.597177, "lon": -0.10909}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490014854HB", "indicator": "Stop HB", "stopLetter": "HB", "modes": ["bus"], "icsCode": "1000275", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00275D", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490014854HB", "commonName": "Wood Green Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.595784, "lon": -0.109134}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490015567H", "indicator": "Stop H", "stopLetter": "H", "modes": ["bus"], "icsCode": "1000275", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00275D", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490015567H", "commonName": "Wood Green Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.596588, "lon": -0.109952}], "lat": 51.59759, "lon": -0.110185}, {"$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": "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": "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": "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": "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": "9400ZZLUWOG", "modes": ["tube"], "icsCode": "1000275", "stopType": "NaptanMetroAccessArea", "stationNaptan": "940GZZLUWOG", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "9400ZZLUWOG", "commonName": "Wood Green 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": "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": "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": "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": "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": "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": "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": "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, 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.597479, "lon": -0.109886}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUWOG1", "modes": ["tube"], "icsCode": "1000275", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUWOG", "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": "940GZZLUWOG", "lineIdentifier": ["piccadilly"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["piccadilly"]}], "status": true, "id": "9400ZZLUWOG1", "commonName": "Wood Green Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$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": "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": "Help Points", "sourceSystemKey": "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"}, {"$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": "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": "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": "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": "Gates", "sourceSystemKey": "StaticObjects", "value": "7"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "no"}], "children": [], "lat": 51.597437, "lon": -0.11009}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUWOG2", "modes": ["tube"], "icsCode": "1000275", "stopType": "NaptanRailAccessArea", "stationNaptan": "940GZZLUWOG", "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": "940GZZLUWOG", "lineIdentifier": ["piccadilly"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["piccadilly"]}], "status": true, "id": "9400ZZLUWOG2", "commonName": "Wood Green Station", "placeType": "StopPoint", "additionalProperties": [{"$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": "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": "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": "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": "Help Points", "sourceSystemKey": "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": "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": "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": "WiFi", "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.597428, "lon": -0.110091}], "lat": 51.597479, "lon": -0.109886}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "940GZZLUWOP", "modes": ["tube", "bus"], "icsCode": "1000276", "stopType": "NaptanMetroStation", "stationNaptan": "940GZZLUWOP", "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"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490000276W", "stationAtcoCode": "490G00276S", "lineIdentifier": ["383"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "940GZZLUWOP", "lineIdentifier": ["northern"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "bus", "lineIdentifier": ["383"]}, {"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["northern"]}], "status": true, "id": "940GZZLUWOP", "commonName": "Woodside Park 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": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$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": "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": "Help Points", "sourceSystemKey": "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": "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": "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": "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": "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"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "CarParks_800499"}], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490G00276S", "modes": ["bus"], "icsCode": "1000276", "stopType": "NaptanOnstreetBusCoachStopCluster", "stationNaptan": "490G00276S", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490G00276S", "commonName": "Woodside Park Station", "placeType": "StopPoint", "additionalProperties": [], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000276W", "indicator": "Stop L", "stopLetter": "L", "modes": ["bus"], "icsCode": "1000276", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00276S", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000276W", "commonName": "Woodside Park Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.617828, "lon": -0.185181}], "lat": 51.617828, "lon": -0.185181}, {"$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": "9400ZZLUWOP", "modes": ["tube"], "icsCode": "1000276", "stopType": "NaptanMetroAccessArea", "stationNaptan": "940GZZLUWOP", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "9400ZZLUWOP", "commonName": "Woodside 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": "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": "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": "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": "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": "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": "Payphones", "sourceSystemKey": "StaticObjects", "value": "0"}], "children": [], "lat": 51.618014, "lon": -0.18542}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUWOP1", "modes": ["tube"], "icsCode": "1000276", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUWOP", "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": "940GZZLUWOP", "lineIdentifier": ["northern"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["northern"]}], "status": true, "id": "9400ZZLUWOP1", "commonName": "Woodside 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": "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"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.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": "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": "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": "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": "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.617783, "lon": -0.185602}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUWOP2", "modes": ["tube"], "icsCode": "1000276", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUWOP", "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": "940GZZLUWOP", "lineIdentifier": ["northern"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["northern"]}], "status": true, "id": "9400ZZLUWOP2", "commonName": "Woodside 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": "Escalators", "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": "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": "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": "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": "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"}], "children": [], "lat": 51.61787, "lon": -0.185454}], "lat": 51.618014, "lon": -0.18542}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "940GZZLUWPL", "modes": ["tube"], "icsCode": "1000268", "stopType": "NaptanMetroStation", "stationNaptan": "940GZZLUWPL", "hubNaptanCode": "HUBZWL", "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": "940GZZLUWPL", "lineIdentifier": ["hammersmith-city", "district"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["hammersmith-city", "district"]}], "status": true, "id": "940GZZLUWPL", "commonName": "Whitechapel 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": "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": "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": "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": "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": "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": "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_500"}, {"$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_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": "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": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUWPL", "modes": ["tube"], "icsCode": "1000268", "stopType": "NaptanMetroAccessArea", "stationNaptan": "940GZZLUWPL", "hubNaptanCode": "HUBZWL", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "9400ZZLUWPL", "commonName": "Whitechapel 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": "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": "Help Points", "sourceSystemKey": "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": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.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": "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": "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": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "2"}], "children": [], "lat": 51.519518, "lon": -0.059971}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUWPL1", "modes": ["tube"], "icsCode": "1000268", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUWPL", "hubNaptanCode": "HUBZWL", "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": "940GZZLUWPL", "lineIdentifier": ["hammersmith-city", "district"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["hammersmith-city", "district"]}], "status": true, "id": "9400ZZLUWPL1", "commonName": "Whitechapel 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, 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": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$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": "Help 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": "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": "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": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}], "children": [], "lat": 51.519398, "lon": -0.060884}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUWPL2", "modes": ["tube"], "icsCode": "1000268", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUWPL", "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"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "940GZZLUWPL", "lineIdentifier": ["district", "hammersmith-city"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["district", "hammersmith-city"]}], "status": true, "id": "9400ZZLUWPL2", "commonName": "Whitechapel 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": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.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, 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": "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": "Whitechapel Station,London Underground Ltd.,277 Whitechapel Rd,London,E1 1BY"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.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"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.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": "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.519414, "lon": -0.060797}], "lat": 51.519518, "lon": -0.059971}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "940GZZLUWRP", "modes": ["tube"], "icsCode": "1000267", "stopType": "NaptanMetroStation", "stationNaptan": "940GZZLUWRP", "hubNaptanCode": "HUBWRU", "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": "940GZZLUWRP", "lineIdentifier": ["central"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["central"]}], "status": true, "id": "940GZZLUWRP", "commonName": "West Ruislip 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": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "West Ruislip Station,London Underground Ltd.,Ickenham Rd,West Ruislip,Middlesex"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, 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": "Help Points", "sourceSystemKey": "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": "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": "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": "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": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUWRP", "modes": ["tube"], "icsCode": "1000267", "stopType": "NaptanMetroAccessArea", "stationNaptan": "940GZZLUWRP", "hubNaptanCode": "HUBWRU", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "9400ZZLUWRP", "commonName": "West Ruislip 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": "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": "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": "Toilets", "sourceSystemKey": "StaticObjects", "value": "yes (male, female)"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "West Ruislip Station,London Underground Ltd.,Ickenham Rd,West Ruislip,Middlesex"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.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, 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": "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": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "6"}], "children": [], "lat": 51.569688, "lon": -0.437886}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUWRP1", "modes": ["tube"], "icsCode": "1000267", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUWRP", "hubNaptanCode": "HUBWRU", "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": "940GZZLUWRP", "lineIdentifier": ["central"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["central"]}], "status": true, "id": "9400ZZLUWRP1", "commonName": "West Ruislip 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": "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": "Bridge", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "West Ruislip Station,London Underground Ltd.,Ickenham Rd,West Ruislip,Middlesex"}, {"$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 (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": "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": "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"}], "children": [], "lat": 51.56951, "lon": -0.437343}], "lat": 51.569688, "lon": -0.437886}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "940GZZLUWRR", "modes": ["bus", "tube"], "icsCode": "1000252", "stopType": "NaptanMetroStation", "stationNaptan": "940GZZLUWRR", "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "940GZZLUWRR", "lineIdentifier": ["victoria"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490000252KA", "stationAtcoCode": "490G00252KA", "lineIdentifier": ["30", "18", "205", "n205"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490000252V", "stationAtcoCode": "490G00252KA", "lineIdentifier": ["n205", "n27", "30", "18", "27", "205"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490000252X", "stationAtcoCode": "490G00252X", "lineIdentifier": ["29", "n29", "n5", "73", "24", "n253", "134", "390", "n279", "n73", "n20"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "940GZZLUWRR", "lineIdentifier": ["northern"]}], "lineModeGroups": [{"$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": ["30", "18", "205", "n205", "n27", "27", "29", "n29", "n5", "73", "24", "n253", "134", "390", "n279", "n73", "n20"]}], "status": true, "id": "940GZZLUWRR", "commonName": "Warren Street 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": "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": "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": "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": "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": "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": "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": "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": "Toilets", "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": "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_28"}, {"$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_76"}, {"$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_239"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_357"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5405"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5592"}, {"$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_5399"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5638"}, {"$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": "490G00252KA", "modes": ["bus"], "icsCode": "1000252", "stopType": "NaptanOnstreetBusCoachStopCluster", "stationNaptan": "490G00252KA", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490G00252KA", "commonName": "Warren Street Stn / Tottenham Court Rd", "placeType": "StopPoint", "additionalProperties": [], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000252KA", "indicator": "Stop KA", "stopLetter": "KA", "modes": ["bus"], "icsCode": "1000252", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00252KA", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000252KA", "commonName": "Warren Street Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.524914, "lon": -0.139519}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000252V", "indicator": "Stop V", "stopLetter": "V", "modes": ["bus"], "icsCode": "1000252", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00252KA", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000252V", "commonName": "Warren Street Stn / Tottenham Court Rd", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.524576, "lon": -0.139187}], "lat": 51.524576, "lon": -0.139187}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490G00252X", "modes": ["bus"], "icsCode": "1000252", "stopType": "NaptanOnstreetBusCoachStopCluster", "stationNaptan": "490G00252X", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490G00252X", "commonName": "Warren Street Station", "placeType": "StopPoint", "additionalProperties": [], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000252X", "indicator": "Stop X", "stopLetter": "X", "modes": ["bus"], "icsCode": "1000252", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00252X", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000252X", "commonName": "Warren Street Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.524111, "lon": -0.137649}], "lat": 51.524111, "lon": -0.137649}, {"$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": "9400ZZLUWRR", "modes": ["tube"], "icsCode": "1000252", "stopType": "NaptanMetroAccessArea", "stationNaptan": "940GZZLUWRR", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "9400ZZLUWRR", "commonName": "Warren Street 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": "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, 5 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": "Gates", "sourceSystemKey": "StaticObjects", "value": "10"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.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": "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": "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": "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": "Car park", "sourceSystemKey": "StaticObjects", "value": "no"}], "children": [], "lat": 51.524951, "lon": -0.138321}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUWRR1", "modes": ["tube"], "icsCode": "1000252", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUWRR", "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": "940GZZLUWRR", "lineIdentifier": ["northern"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["northern"]}], "status": true, "id": "9400ZZLUWRR1", "commonName": "Warren Street 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": "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": "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": "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": "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": "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": "Toilets", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$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": "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": "1"}], "children": [], "lat": 51.524331, "lon": -0.137784}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUWRR2", "modes": ["tube"], "icsCode": "1000252", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUWRR", "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": "940GZZLUWRR", "lineIdentifier": ["northern"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["northern"]}], "status": true, "id": "9400ZZLUWRR2", "commonName": "Warren 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": "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, 5 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": "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": "10"}, {"$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": "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": "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": "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"}], "children": [], "lat": 51.524276, "lon": -0.137757}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUWRR3", "modes": ["tube"], "icsCode": "1000252", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUWRR", "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": "940GZZLUWRR", "lineIdentifier": ["victoria"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["victoria"]}], "status": true, "id": "9400ZZLUWRR3", "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": "Facility", "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": "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": "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": "Escalators", "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": "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": "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": "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": "Gates", "sourceSystemKey": "StaticObjects", "value": "10"}], "children": [], "lat": 51.524084, "lon": -0.138688}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUWRR4", "modes": ["tube"], "icsCode": "1000252", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUWRR", "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": "940GZZLUWRR", "lineIdentifier": ["victoria"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["victoria"]}], "status": true, "id": "9400ZZLUWRR4", "commonName": "Warren Street 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": "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": "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": "Escalators", "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": "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": "1"}, {"$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": "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": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "no"}], "children": [], "lat": 51.524031, "lon": -0.138719}], "lat": 51.524951, "lon": -0.138321}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "940GZZLUWSD", "modes": ["tube", "bus"], "icsCode": "1000250", "stopType": "NaptanMetroStation", "stationNaptan": "940GZZLUWSD", "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": "101", "name": "101", "uri": "/Line/101", "type": "Line", "crowding": {"$type": "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": "145", "name": "145", "uri": "/Line/145", "type": "Line", "crowding": {"$type": "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": "w13", "name": "W13", "uri": "/Line/w13", "type": "Line", "crowding": {"$type": "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"}, {"$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"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "940GZZLUWSD", "lineIdentifier": ["central"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490015125B", "stationAtcoCode": "490G00250A", "lineIdentifier": ["101", "n55", "145", "308", "w13", "n8", "w14"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490000250A", "stationAtcoCode": "490G00250A", "lineIdentifier": ["n8", "145", "66"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490015125C", "stationAtcoCode": "490G00250A", "lineIdentifier": ["n55", "145", "101", "n8", "w13", "308", "w14"]}], "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": "bus", "lineIdentifier": ["101", "n55", "145", "308", "w13", "n8", "w14", "66"]}], "status": true, "id": "940GZZLUWSD", "commonName": "Wanstead 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": "Car park", "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": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "4"}, {"$type": "Tfl.Api.Presentation.Entities.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": "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": "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": "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": "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": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5825"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "CarParks_800496"}], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490G00250A", "modes": ["bus"], "icsCode": "1000250", "stopType": "NaptanOnstreetBusCoachStopCluster", "stationNaptan": "490G00250A", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490G00250A", "commonName": "Wanstead Station / George Green", "placeType": "StopPoint", "additionalProperties": [], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000250A", "indicator": "Stop A", "stopLetter": "A", "modes": ["bus"], "icsCode": "1000250", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00250A", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000250A", "commonName": "Wanstead Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.575855, "lon": 0.028803}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490015125B", "indicator": "Stop B", "stopLetter": "B", "modes": ["bus"], "icsCode": "1000250", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00250A", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490015125B", "commonName": "Wanstead Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.575308, "lon": 0.027119}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490015125C", "indicator": "Stop C", "stopLetter": "C", "modes": ["bus"], "icsCode": "1000250", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00250A", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490015125C", "commonName": "Wanstead Station / George Green", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.575082, "lon": 0.026705}], "lat": 51.575308, "lon": 0.027119}, {"$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": "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": "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": "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": "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": "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"}], "children": [], "lat": 51.575244, "lon": 0.028256}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUWSD", "modes": ["tube"], "icsCode": "1000250", "stopType": "NaptanMetroAccessArea", "stationNaptan": "940GZZLUWSD", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "9400ZZLUWSD", "commonName": "Wanstead 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": "Escalators", "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": "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": "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": "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": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "4"}, {"$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"}], "children": [], "lat": 51.575501, "lon": 0.028527}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUWSD1", "modes": ["tube"], "icsCode": "1000250", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUWSD", "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": "940GZZLUWSD", "lineIdentifier": ["central"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["central"]}], "status": true, "id": "9400ZZLUWSD1", "commonName": "Wanstead 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": "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": "Wanstead Underground Station,London Underground Ltd.,The Green,London,E11 2NT"}, {"$type": "Tfl.Api.Presentation.Entities.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": "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": "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": "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": "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.575663, "lon": 0.029069}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUWSD2", "modes": ["tube"], "icsCode": "1000250", "stopType": "NaptanRailAccessArea", "stationNaptan": "940GZZLUWSD", "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": "940GZZLUWSD", "lineIdentifier": ["central"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["central"]}], "status": true, "id": "9400ZZLUWSD2", "commonName": "Wanstead 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": "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": "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": "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": "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": "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": "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": "Payphones", "sourceSystemKey": "StaticObjects", "value": "0"}], "children": [], "lat": 51.575672, "lon": 0.029069}], "lat": 51.575501, "lon": 0.028527}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "940GZZLUWSM", "modes": ["tube"], "icsCode": "1000266", "stopType": "NaptanMetroStation", "stationNaptan": "940GZZLUWSM", "hubNaptanCode": "HUBWSM", "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"}, {"$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": "940GZZLUWSM", "lineIdentifier": ["district", "circle"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "940GZZLUWSM", "lineIdentifier": ["jubilee"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["district", "circle", "jubilee"]}], "status": true, "id": "940GZZLUWSM", "commonName": "Westminster 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": "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": "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": "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": "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": "BikePoints_583"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_762"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_818"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_4884"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.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": "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": "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": "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": "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": "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": "ServiceInfo", "key": "Night", "sourceSystemKey": "TransXchangeETL", "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"}], "children": [{"$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": "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": "Photo 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 Circle and District lines 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": "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": "Help Points", "sourceSystemKey": "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": "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"}], "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": "9400ZZLUWSM", "modes": ["tube"], "icsCode": "1000266", "stopType": "NaptanMetroAccessArea", "stationNaptan": "940GZZLUWSM", "hubNaptanCode": "HUBWSM", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "9400ZZLUWSM", "commonName": "Westminster 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": "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": "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": "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": "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 Circle and District lines only"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, 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": "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": "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": "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": "4"}], "children": [], "lat": 51.50132, "lon": -0.124861}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUWSM1", "modes": ["tube"], "icsCode": "1000266", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUWSM", "hubNaptanCode": "HUBWSM", "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": "940GZZLUWSM", "lineIdentifier": ["district", "circle"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["district", "circle"]}], "status": true, "id": "9400ZZLUWSM1", "commonName": "Westminster 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": "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": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "4"}, {"$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": "Facility", "key": "WiFi", "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": "Facility", "key": "Help 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": "Westminster Station,London Underground Ltd.,Bridge St,London,SW1A 2JR"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.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": "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": "15"}], "children": [], "lat": 51.501284, "lon": -0.124877}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUWSM2", "modes": ["tube"], "icsCode": "1000266", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUWSM", "hubNaptanCode": "HUBWSM", "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": "940GZZLUWSM", "lineIdentifier": ["circle", "district"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["circle", "district"]}], "status": true, "id": "9400ZZLUWSM2", "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": "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": "Help 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": "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": "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": "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": "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": "Euro Cash Machines", "sourceSystemKey": "StaticObjects", "value": "yes"}], "children": [], "lat": 51.501185, "lon": -0.124838}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUWSM3", "modes": ["tube"], "icsCode": "1000266", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUWSM", "hubNaptanCode": "HUBWSM", "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": "940GZZLUWSM", "lineIdentifier": ["jubilee"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["jubilee"]}], "status": true, "id": "9400ZZLUWSM3", "commonName": "Westminster 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": "Boarding Ramps", "sourceSystemKey": "StaticObjects", "value": "yes Circle and District lines 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": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$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": "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": "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": "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": "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": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$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": "subway to street, routeways platform to ticket hall."}], "children": [], "lat": 51.501004, "lon": -0.124773}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUWSM4", "modes": ["tube"], "icsCode": "1000266", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUWSM", "hubNaptanCode": "HUBWSM", "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": "940GZZLUWSM", "lineIdentifier": ["jubilee"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["jubilee"]}], "status": true, "id": "9400ZZLUWSM4", "commonName": "Westminster 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": "17"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.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": "4"}, {"$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": "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": "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": "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": "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"}], "children": [], "lat": 51.501006, "lon": -0.124932}], "lat": 51.50132, "lon": -0.124861}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "940GZZLUWSP", "modes": ["bus", "tube"], "icsCode": "1000259", "stopType": "NaptanMetroStation", "stationNaptan": "940GZZLUWSP", "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": "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": "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": "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": "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": "n28", "name": "N28", "uri": "/Line/n28", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "940GZZLUWSP", "lineIdentifier": ["hammersmith-city", "circle"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490000259B", "stationAtcoCode": "490G00259A", "lineIdentifier": ["328", "n31", "31", "28", "n28"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490000259A", "stationAtcoCode": "490G00259A", "lineIdentifier": ["n28", "28", "31", "328", "n31"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["hammersmith-city", "circle"]}, {"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "bus", "lineIdentifier": ["328", "n31", "31", "28", "n28"]}], "status": true, "id": "940GZZLUWSP", "commonName": "Westbourne 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": "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": "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": "WiFi", "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": "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": "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": "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_643"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_758"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_760"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_805"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5828"}], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490G00259A", "modes": ["bus"], "icsCode": "1000259", "stopType": "NaptanOnstreetBusCoachStopCluster", "stationNaptan": "490G00259A", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490G00259A", "commonName": "Westbourne Park Station", "placeType": "StopPoint", "additionalProperties": [], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000259A", "indicator": "Stop A", "stopLetter": "A", "modes": ["bus"], "icsCode": "1000259", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00259A", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000259A", "commonName": "Westbourne Park Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.521223, "lon": -0.200931}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000259B", "indicator": "Stop B", "stopLetter": "B", "modes": ["bus"], "icsCode": "1000259", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00259A", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000259B", "commonName": "Westbourne Park Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.520282, "lon": -0.199945}], "lat": 51.520282, "lon": -0.199945}, {"$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": "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": "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": "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"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.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": "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": "4"}], "children": [], "lat": 51.520904, "lon": -0.20067}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUWSP", "modes": ["tube"], "icsCode": "1000259", "stopType": "NaptanMetroAccessArea", "stationNaptan": "940GZZLUWSP", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "9400ZZLUWSP", "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": "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": "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": "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": "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": "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": "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.52111, "lon": -0.201065}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUWSP1", "modes": ["tube"], "icsCode": "1000259", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUWSP", "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": "940GZZLUWSP", "lineIdentifier": ["circle", "hammersmith-city"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["circle", "hammersmith-city"]}], "status": true, "id": "9400ZZLUWSP1", "commonName": "Westbourne Park 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": "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": "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": "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": "Westbourne Park Station,London Underground Ltd.,Western Rd,London,W11 1AB"}, {"$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": "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": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "2"}], "children": [], "lat": 51.520984, "lon": -0.201647}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUWSP2", "modes": ["tube"], "icsCode": "1000259", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUWSP", "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": "940GZZLUWSP", "lineIdentifier": ["circle", "hammersmith-city"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["circle", "hammersmith-city"]}], "status": true, "id": "9400ZZLUWSP2", "commonName": "Westbourne 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": "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": "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"}, {"$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": "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": "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": "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.520973, "lon": -0.201546}], "lat": 51.52111, "lon": -0.201065}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "940GZZLUWTA", "modes": ["bus", "tube"], "icsCode": "1000258", "stopType": "NaptanMetroStation", "stationNaptan": "940GZZLUWTA", "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": "218", "name": "218", "uri": "/Line/218", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "940GZZLUWTA", "lineIdentifier": ["central"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490000258A", "stationAtcoCode": "490G00258B", "lineIdentifier": ["218"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490000258B", "stationAtcoCode": "490G00258B", "lineIdentifier": ["218"]}], "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": "bus", "lineIdentifier": ["218"]}], "status": true, "id": "940GZZLUWTA", "commonName": "West Acton 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": "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": "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": "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": "Help 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": "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": "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": "Payphones", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490G00258B", "modes": ["bus"], "icsCode": "1000258", "stopType": "NaptanOnstreetBusCoachStopCluster", "stationNaptan": "490G00258B", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490G00258B", "commonName": "West Acton Station", "placeType": "StopPoint", "additionalProperties": [], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000258A", "indicator": "Stop EA", "stopLetter": "EA", "modes": ["bus"], "icsCode": "1000258", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00258B", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000258A", "commonName": "West Acton Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.517677, "lon": -0.279839}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000258B", "indicator": "Stop EB", "stopLetter": "EB", "modes": ["bus"], "icsCode": "1000258", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00258B", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000258B", "commonName": "West Acton Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.516951, "lon": -0.281221}], "lat": 51.517677, "lon": -0.279839}, {"$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": "9400ZZLUWTA", "modes": ["tube"], "icsCode": "1000258", "stopType": "NaptanMetroAccessArea", "stationNaptan": "940GZZLUWTA", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "9400ZZLUWTA", "commonName": "West Acton 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": "3"}, {"$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": "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": "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": "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": "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": "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"}], "children": [], "lat": 51.518001, "lon": -0.28098}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUWTA1", "modes": ["tube"], "icsCode": "1000258", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUWTA", "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": "940GZZLUWTA", "lineIdentifier": ["central"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["central"]}], "status": true, "id": "9400ZZLUWTA1", "commonName": "West Acton 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": "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": "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": "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": "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": "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": "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": "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.518194, "lon": -0.280641}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUWTA2", "modes": ["tube"], "icsCode": "1000258", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUWTA", "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": "940GZZLUWTA", "lineIdentifier": ["central"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["central"]}], "status": true, "id": "9400ZZLUWTA2", "commonName": "West Acton 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": "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": "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"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.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": "Help Points", "sourceSystemKey": "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": "West Acton Station,London Underground Ltd.,Princes Gardens,London,W3 0LG"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}], "children": [], "lat": 51.518159, "lon": -0.2807}], "lat": 51.518001, "lon": -0.28098}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "940GZZLUWWL", "modes": ["tube"], "icsCode": "1000249", "stopType": "NaptanMetroStation", "stationNaptan": "940GZZLUWWL", "hubNaptanCode": "HUBWHC", "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": "940GZZLUWWL", "lineIdentifier": ["victoria"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["victoria"]}], "status": true, "id": "940GZZLUWWL", "commonName": "Walthamstow Central 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": "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"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.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": "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": "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": "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": "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": "Help 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": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "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": "9400ZZLUWWL", "modes": ["tube"], "icsCode": "1000249", "stopType": "NaptanMetroAccessArea", "stationNaptan": "940GZZLUWWL", "hubNaptanCode": "HUBWHC", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "9400ZZLUWWL", "commonName": "Walthamstow Central 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": "Toilets", "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": "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": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.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": "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": "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": "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"}], "children": [], "lat": 51.582965, "lon": -0.019885}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUWWL1", "modes": ["tube"], "icsCode": "1000249", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUWWL", "hubNaptanCode": "HUBWHC", "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": "940GZZLUWWL", "lineIdentifier": ["victoria"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["victoria"]}], "status": true, "id": "9400ZZLUWWL1", "commonName": "Walthamstow Central 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": "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 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, 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": "Lifts", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$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": "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": "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": "Help Points", "sourceSystemKey": "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"}], "children": [], "lat": 51.583067, "lon": -0.01952}], "lat": 51.582965, "lon": -0.019885}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "940GZZLUWYC", "modes": ["tube"], "icsCode": "1000256", "stopType": "NaptanMetroStation", "stationNaptan": "940GZZLUWYC", "hubNaptanCode": "HUBWMB", "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": "940GZZLUWYC", "lineIdentifier": ["bakerloo"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["bakerloo"]}], "status": true, "id": "940GZZLUWYC", "commonName": "Wembley Central 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, 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": "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": "Opening Time", "key": "SatFrom", "sourceSystemKey": "StaticObjects", "value": "09: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": "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": "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": "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": "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": "Wembley Central,London Overground Ltd.,High Road,Wembley,HA9 7AJ"}, {"$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": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUWYC", "modes": ["tube"], "icsCode": "1000256", "stopType": "NaptanMetroAccessArea", "stationNaptan": "940GZZLUWYC", "hubNaptanCode": "HUBWMB", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "9400ZZLUWYC", "commonName": "Wembley Central Underground 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": "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": "12"}, {"$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": "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": "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": "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": "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": "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": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "yes"}], "children": [], "lat": 51.552304, "lon": -0.296852}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUWYC1", "modes": ["tube"], "icsCode": "1000256", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUWYC", "hubNaptanCode": "HUBWMB", "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": "940GZZLUWYC", "lineIdentifier": ["bakerloo"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["bakerloo"]}], "status": true, "id": "9400ZZLUWYC1", "commonName": "Wembley Central 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": "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": "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": "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": "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"}, {"$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": "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": "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": "Car park", "sourceSystemKey": "StaticObjects", "value": "no"}], "children": [], "lat": 51.551739, "lon": -0.29631}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUWYC2", "indicator": "southbound", "modes": ["tube"], "icsCode": "1000256", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUWYC", "hubNaptanCode": "HUBWMB", "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": "940GZZLUWYC", "lineIdentifier": ["bakerloo"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["bakerloo"]}], "status": true, "id": "9400ZZLUWYC2", "commonName": "Wembley Central 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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "yes"}], "children": [], "lat": 51.552312, "lon": -0.296794}], "lat": 51.552304, "lon": -0.296852}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "940GZZLUWYP", "modes": ["tube", "bus"], "icsCode": "1000257", "stopType": "NaptanMetroStation", "stationNaptan": "940GZZLUWYP", "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": "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": "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": "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": "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": "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": "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": "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": "940GZZLUWYP", "lineIdentifier": ["metropolitan"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490000257O", "stationAtcoCode": "490G00257M", "lineIdentifier": ["83", "n83", "182", "223", "206", "297"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "940GZZLUWYP", "lineIdentifier": ["jubilee"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490000257M", "stationAtcoCode": "490G00257M", "lineIdentifier": ["223", "297", "206"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490000257N", "stationAtcoCode": "490G00257M", "lineIdentifier": ["182", "83", "n83"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["metropolitan", "jubilee"]}, {"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "bus", "lineIdentifier": ["83", "n83", "182", "223", "206", "297"]}], "status": true, "id": "940GZZLUWYP", "commonName": "Wembley Park 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": "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": "Boarding Ramps", "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": "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": "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": "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 (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": "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": "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": "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"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5583"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "CarParks_800497"}], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490G00257M", "modes": ["bus"], "icsCode": "1000257", "stopType": "NaptanOnstreetBusCoachStopCluster", "stationNaptan": "490G00257M", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490G00257M", "commonName": "Wembley Park Station", "placeType": "StopPoint", "additionalProperties": [], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000257E", "indicator": "->NE", "modes": ["bus"], "icsCode": "1000257", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00257M", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000257E", "commonName": "Wembley Park Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.564618, "lon": -0.278111}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000257M", "indicator": "Stop M", "stopLetter": "M", "modes": ["bus"], "icsCode": "1000257", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00257M", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000257M", "commonName": "Wembley Park Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.563668, "lon": -0.278898}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000257N", "indicator": "Stop N", "stopLetter": "N", "modes": ["bus"], "icsCode": "1000257", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00257M", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000257N", "commonName": "Wembley Park Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.563226, "lon": -0.279434}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000257NB", "indicator": "->E", "stopLetter": "->E", "modes": ["bus"], "icsCode": "1000257", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00257M", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000257NB", "commonName": "Wembley Park Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.56413, "lon": -0.277957}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000257O", "indicator": "Stop O", "stopLetter": "O", "modes": ["bus"], "icsCode": "1000257", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00257M", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000257O", "commonName": "Wembley Park Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.5637, "lon": -0.278651}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000257RB", "indicator": "->S", "stopLetter": "->S", "modes": ["bus"], "icsCode": "1000257", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00257M", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000257RB", "commonName": "Wembley Park Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.565104, "lon": -0.277473}], "lat": 51.565104, "lon": -0.277473}, {"$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": "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"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.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": "9400ZZLUWYP", "modes": ["tube"], "icsCode": "1000257", "stopType": "NaptanMetroAccessArea", "stationNaptan": "940GZZLUWYP", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "9400ZZLUWYP", "commonName": "Wembley 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": "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": "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": "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": "5"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, 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": "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": "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": "Boarding Ramps", "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": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}], "children": [], "lat": 51.563198, "lon": -0.279262}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUWYP1", "modes": ["tube"], "icsCode": "1000257", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUWYP", "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": "940GZZLUWYP", "lineIdentifier": ["jubilee"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["jubilee"]}], "status": true, "id": "9400ZZLUWYP1", "commonName": "Wembley 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": "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": "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": "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": "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": "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": "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": "4"}], "children": [], "lat": 51.563518, "lon": -0.279596}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUWYP2", "modes": ["tube"], "icsCode": "1000257", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUWYP", "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": "940GZZLUWYP", "lineIdentifier": ["jubilee"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["jubilee"]}], "status": true, "id": "9400ZZLUWYP2", "commonName": "Wembley Park Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$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": "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": "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": "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": "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": "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": "Facility", "key": "Help Points", "sourceSystemKey": "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": "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, disabled/baby-changing facilities)"}], "children": [], "lat": 51.563518, "lon": -0.279581}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUWYP3", "modes": ["tube"], "icsCode": "1000257", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUWYP", "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": "940GZZLUWYP", "lineIdentifier": ["metropolitan"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["metropolitan"]}], "status": true, "id": "9400ZZLUWYP3", "commonName": "Wembley 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": "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": "Gates", "sourceSystemKey": "StaticObjects", "value": "33"}, {"$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": "5"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.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": "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": "Help Points", "sourceSystemKey": "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": "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)"}], "children": [], "lat": 51.563509, "lon": -0.279596}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUWYP4", "modes": ["tube"], "icsCode": "1000257", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUWYP", "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": "940GZZLUWYP", "lineIdentifier": ["metropolitan"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["metropolitan"]}], "status": true, "id": "9400ZZLUWYP4", "commonName": "Wembley 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": "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": "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": "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": "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": "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": "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": "Waiting Room", "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": "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": "2"}], "children": [], "lat": 51.563517, "lon": -0.279567}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUWYP6", "indicator": "southbound", "modes": ["tube"], "icsCode": "1000257", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUWYP", "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": "940GZZLUWYP", "lineIdentifier": ["metropolitan"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["metropolitan"]}], "status": true, "id": "9400ZZLUWYP6", "commonName": "Wembley 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": "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": "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": "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": "Lifts", "sourceSystemKey": "StaticObjects", "value": "5"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.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": "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": "4"}, {"$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": "Boarding Ramps", "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": "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.565944, "lon": -0.279504}], "lat": 51.563198, "lon": -0.279262}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "940GZZNEUGST", "modes": ["tube", "bus"], "icsCode": "1002196", "stopType": "NaptanMetroStation", "stationNaptan": "940GZZNEUGST", "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": "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": "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": "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", "naptanIdReference": "490014679S", "stationAtcoCode": "490G02196E", "lineIdentifier": ["196", "452", "77", "n87", "87"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "940GZZNEUGST", "lineIdentifier": ["northern"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490014679N", "stationAtcoCode": "490G02196E", "lineIdentifier": ["196", "77", "452", "87", "n87"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "bus", "lineIdentifier": ["196", "452", "77", "n87", "87"]}, {"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["northern"]}], "status": true, "id": "940GZZNEUGST", "commonName": "Nine Elms Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$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_600"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_676"}], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490G02196E", "modes": ["bus"], "icsCode": "1002196", "stopType": "NaptanOnstreetBusCoachStopCluster", "stationNaptan": "490G02196E", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490G02196E", "commonName": "Nine Elms Station", "placeType": "StopPoint", "additionalProperties": [], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490014679N", "indicator": "Stop J", "stopLetter": "J", "modes": ["bus"], "icsCode": "1002196", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G02196E", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490014679N", "commonName": "Nine Elms Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.479474, "lon": -0.128695}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490014679S", "indicator": "Stop L", "stopLetter": "L", "modes": ["bus"], "icsCode": "1002196", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G02196E", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490014679S", "commonName": "Nine Elms Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.480628, "lon": -0.127798}], "lat": 51.480628, "lon": -0.127798}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "4900ZZNEUGST", "indicator": "Entrance 1", "stopLetter": "1", "modes": ["bus"], "icsCode": "1002196", "stopType": "NaptanMetroEntrance", "stationNaptan": "940GZZNEUGST", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "4900ZZNEUGST", "commonName": "Nine Elms Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.479918, "lon": -0.128346}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZNEUGST", "indicator": "N/A", "stopLetter": "N/A", "modes": ["tube"], "icsCode": "1002196", "stopType": "NaptanMetroAccessArea", "stationNaptan": "940GZZNEUGST", "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": "940GZZNEUGST", "lineIdentifier": ["northern"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["northern"]}], "status": true, "id": "9400ZZNEUGST", "commonName": "Nine Elms Underground Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.479912, "lon": -0.128476}], "lat": 51.479912, "lon": -0.128476}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "HUBAMR", "modes": ["tube", "bus", "national-rail"], "icsCode": "1000006", "stopType": "TransportInterchange", "hubNaptanCode": "HUBAMR", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "chiltern-railways", "name": "Chiltern Railways", "uri": "/Line/chiltern-railways", "type": "Line", "crowding": {"$type": "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": "910GAMERSHM", "lineIdentifier": ["chiltern-railways"]}, {"$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": "national-rail", "lineIdentifier": ["chiltern-railways"]}, {"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["metropolitan"]}], "status": true, "id": "HUBAMR", "commonName": "Amersham", "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": "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"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, 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": "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": "Amersham Station,Stn Approach,Amersham,Bucks HP6 5AZ"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.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": "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": "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"}], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "910GAMERSHM", "modes": ["national-rail"], "icsCode": "1000006", "stopType": "NaptanRailStation", "stationNaptan": "910GAMERSHM", "hubNaptanCode": "HUBAMR", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "910GAMERSHM", "commonName": "Amersham Rail Station", "placeType": "StopPoint", "additionalProperties": [], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "040G00002152", "modes": [], "icsCode": "1000299", "stopType": "NaptanOnstreetBusCoachStopCluster", "stationNaptan": "040G00002152", "hubNaptanCode": "HUBAMR", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "040G00002152", "commonName": "Railway Station", "placeType": "StopPoint", "additionalProperties": [], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "040000002101", "indicator": "adj", "modes": [], "icsCode": "1000299", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "040G00002152", "hubNaptanCode": "HUBAMR", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "040000002101", "commonName": "Railway Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.674198, "lon": -0.607449}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "040000002152", "indicator": "Stop G", "stopLetter": "G", "modes": [], "icsCode": "1000299", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "040G00002152", "hubNaptanCode": "HUBAMR", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "040000002152", "commonName": "Railway Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.674294, "lon": -0.607981}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "040000002154", "indicator": "Stop F", "stopLetter": "F", "modes": [], "icsCode": "1000299", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "040G00002152", "hubNaptanCode": "HUBAMR", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "040000002154", "commonName": "Railway Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.674404, "lon": -0.606662}], "lat": 51.674198, "lon": -0.607449}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "940GZZLUAMS", "modes": ["tube"], "icsCode": "1000006", "stopType": "NaptanMetroStation", "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": "940GZZLUAMS", "commonName": "Amersham 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": "Amersham Station,Stn Approach,Amersham,Bucks HP6 5AZ"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.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": "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 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": "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": "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": "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": "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": "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": "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": [{"$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": "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}], "lat": 51.674126, "lon": -0.607714}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "0400AMERSHM0", "indicator": "entrance", "modes": [], "icsCode": "1000006", "stopType": "NaptanRailEntrance", "stationNaptan": "910GAMERSHM", "hubNaptanCode": "HUBAMR", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "0400AMERSHM0", "commonName": "Amersham Rail Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.674206, "lon": -0.607347}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9100AMERSHM1", "modes": [], "icsCode": "1000006", "stopType": "NaptanRailAccessArea", "stationNaptan": "910GAMERSHM", "hubNaptanCode": "HUBAMR", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "9100AMERSHM1", "commonName": "Amersham Rail Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 0.0, "lon": 0.0}], "lat": 51.674206, "lon": -0.607596}], "lat": 51.674207, "lon": -0.60759}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "HUBBAL", "modes": ["bus", "national-rail", "tube"], "icsCode": "1000012", "stopType": "TransportInterchange", "hubNaptanCode": "HUBBAL", "lines": [{"$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": "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": "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": "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": "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": "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": "490000012B", "stationAtcoCode": "490G00012S", "lineIdentifier": ["355", "249", "155", "n155"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "940GZZLUBLM", "lineIdentifier": ["northern"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490000012J", "stationAtcoCode": "490G00012S", "lineIdentifier": ["255"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490000012A", "stationAtcoCode": "490G00012S", "lineIdentifier": ["315"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490000012C", "stationAtcoCode": "490G00012C", "lineIdentifier": ["255", "155", "249", "355", "n155"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "910GBALHAM", "lineIdentifier": ["southern"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "bus", "lineIdentifier": ["355", "249", "155", "n155", "255", "315"]}, {"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["northern"]}, {"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "national-rail", "lineIdentifier": ["southern"]}], "status": true, "id": "HUBBAL", "commonName": "Balham", "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": "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": "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": "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": "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": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "3"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5665"}], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "910GBALHAM", "modes": ["national-rail"], "icsCode": "1000328", "stopType": "NaptanRailStation", "stationNaptan": "910GBALHAM", "hubNaptanCode": "HUBBAL", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "910GBALHAM", "commonName": "Balham Rail Station", "placeType": "StopPoint", "additionalProperties": [], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "4900BALHAM0", "indicator": "Entrance 1", "stopLetter": "1", "modes": [], "icsCode": "1000328", "stopType": "NaptanRailEntrance", "stationNaptan": "910GBALHAM", "hubNaptanCode": "HUBBAL", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "4900BALHAM0", "commonName": "Balham Rail Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.443047, "lon": -0.151525}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9100BALHAM0", "modes": [], "icsCode": "1000328", "stopType": "NaptanRailAccessArea", "stationNaptan": "910GBALHAM", "hubNaptanCode": "HUBBAL", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "9100BALHAM0", "commonName": "Balham Rail Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 0.0, "lon": 0.0}], "lat": 51.443225, "lon": -0.152424}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "940GZZLUBLM", "modes": ["tube"], "icsCode": "1000012", "stopType": "NaptanMetroStation", "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": "940GZZLUBLM", "commonName": "Balham 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": "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": "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": "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": "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": "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": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5665"}], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490G00012C", "modes": ["bus"], "icsCode": "1000012", "stopType": "NaptanOnstreetBusCoachStopCluster", "stationNaptan": "490G00012C", "hubNaptanCode": "HUBBAL", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490G00012C", "commonName": "Balham Station / Balham Station Road", "placeType": "StopPoint", "additionalProperties": [], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000012C", "indicator": "Stop C", "stopLetter": "C", "modes": ["bus"], "icsCode": "1000012", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00012C", "hubNaptanCode": "HUBBAL", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000012C", "commonName": "Balham Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.44391, "lon": -0.152066}], "lat": 51.44391, "lon": -0.152066}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490G00012S", "modes": ["bus"], "icsCode": "1000012", "stopType": "NaptanOnstreetBusCoachStopCluster", "stationNaptan": "490G00012S", "hubNaptanCode": "HUBBAL", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490G00012S", "commonName": "Balham Station", "placeType": "StopPoint", "additionalProperties": [], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000012A", "indicator": "Stop A", "stopLetter": "A", "modes": ["bus"], "icsCode": "1000012", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00012S", "hubNaptanCode": "HUBBAL", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000012A", "commonName": "Balham Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.443039, "lon": -0.151554}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000012B", "indicator": "Stop B", "stopLetter": "B", "modes": ["bus"], "icsCode": "1000012", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00012S", "hubNaptanCode": "HUBBAL", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000012B", "commonName": "Balham Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.442869, "lon": -0.15336}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000012J", "indicator": "Stop J", "stopLetter": "J", "modes": ["bus"], "icsCode": "1000012", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00012S", "hubNaptanCode": "HUBBAL", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000012J", "commonName": "Balham Station / Balham Station Road", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.443019, "lon": -0.150907}], "lat": 51.442869, "lon": -0.15336}, {"$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": "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": "Facility", "key": "Bridge", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$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": "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": "Payphones", "sourceSystemKey": "StaticObjects", "value": "2"}], "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": "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}], "lat": 51.443288, "lon": -0.152997}], "lat": 51.443259, "lon": -0.152707}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "HUBBAN", "modes": ["tube", "dlr", "bus"], "icsCode": "1000013", "stopType": "TransportInterchange", "hubNaptanCode": "HUBBAN", "lines": [{"$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": "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": "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": "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": "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": "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": "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": "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"}, {"$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": "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": "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": "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": "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": "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": "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": "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": "490000013D", "stationAtcoCode": "490G000556", "lineIdentifier": ["26", "25", "8", "n25", "n26", "n242", "n8", "n550"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "940GZZLUBNK", "lineIdentifier": ["waterloo-city"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "940GZZLUBNK", "lineIdentifier": ["central"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490000013E", "stationAtcoCode": "490G000556", "lineIdentifier": ["n25", "8", "26", "25", "n550", "n242", "n8", "n26", "n551"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490011218A", "stationAtcoCode": "490G000713", "lineIdentifier": ["43", "141", "21"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490007596K", "stationAtcoCode": "490G00007599", "lineIdentifier": ["n8", "n26", "n242", "n550", "25", "26", "n25", "8"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "940GZZLUBNK", "lineIdentifier": ["northern"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490000013F", "stationAtcoCode": "490G000557", "lineIdentifier": ["141", "133", "n21", "43", "21"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "940GZZDLBNK", "lineIdentifier": ["dlr"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "bus", "lineIdentifier": ["26", "25", "8", "n25", "n26", "n242", "n8", "n550", "n551", "43", "141", "21", "133", "n21"]}, {"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["waterloo-city", "central", "northern"]}, {"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "dlr", "lineIdentifier": ["dlr"]}], "status": true, "id": "HUBBAN", "commonName": "Bank", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5897"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5899"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5919"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5921"}, {"$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": "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": "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": "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": "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": "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": "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": "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_101"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_120"}, {"$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_427"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5907"}, {"$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": "BikePoints_579"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5901"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5910"}], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490G00007599", "modes": ["bus"], "icsCode": "1007599", "stopType": "NaptanOnstreetBusCoachStopCluster", "stationNaptan": "490G00007599", "hubNaptanCode": "HUBBAN", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490G00007599", "commonName": "Bank Station / Poultry", "placeType": "StopPoint", "additionalProperties": [], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490007596K", "indicator": "Stop K", "stopLetter": "K", "modes": ["bus"], "icsCode": "1007599", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00007599", "hubNaptanCode": "HUBBAN", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490007596K", "commonName": "Bank Station / Poultry", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.513738, "lon": -0.091463}], "lat": 51.513738, "lon": -0.091463}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490G000556", "modes": ["bus"], "icsCode": "1007606", "stopType": "NaptanOnstreetBusCoachStopCluster", "stationNaptan": "490G000556", "hubNaptanCode": "HUBBAN", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490G000556", "commonName": "Bank Station / Cornhill", "placeType": "StopPoint", "additionalProperties": [], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000013D", "indicator": "Stop D", "stopLetter": "D", "modes": ["bus"], "icsCode": "1007606", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G000556", "hubNaptanCode": "HUBBAN", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000013D", "commonName": "Bank Station / Cornhill", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.513378, "lon": -0.087601}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000013E", "indicator": "Stop E", "stopLetter": "E", "modes": ["bus"], "icsCode": "1007606", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G000556", "hubNaptanCode": "HUBBAN", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000013E", "commonName": "Bank Station / Cornhill", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.513273, "lon": -0.087749}], "lat": 51.513273, "lon": -0.087749}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490G000557", "modes": ["bus"], "icsCode": "1007607", "stopType": "NaptanOnstreetBusCoachStopCluster", "stationNaptan": "490G000557", "hubNaptanCode": "HUBBAN", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490G000557", "commonName": "Bank Station / King William Street", "placeType": "StopPoint", "additionalProperties": [], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000013F", "indicator": "Stop F", "stopLetter": "F", "modes": ["bus"], "icsCode": "1007607", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G000557", "hubNaptanCode": "HUBBAN", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000013F", "commonName": "Bank Station / King William Street", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.512261, "lon": -0.088051}], "lat": 51.512261, "lon": -0.088051}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490G000559", "modes": ["bus"], "icsCode": "1007620", "stopType": "NaptanOnstreetBusCoachStopPair", "stationNaptan": "490G000559", "hubNaptanCode": "HUBBAN", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490G000559", "commonName": "Bank Station / Threadneedle Street", "placeType": "StopPoint", "additionalProperties": [], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000013C", "indicator": "Stop C", "stopLetter": "C", "modes": ["bus"], "icsCode": "1007620", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G000559", "hubNaptanCode": "HUBBAN", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000013C", "commonName": "Bank Station / Threadneedle Street", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.513823, "lon": -0.08787}], "lat": 51.513823, "lon": -0.08787}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490G000713", "modes": ["bus"], "icsCode": "1011218", "stopType": "NaptanOnstreetBusCoachStopPair", "stationNaptan": "490G000713", "hubNaptanCode": "HUBBAN", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490G000713", "commonName": "Bank Station / Princes Street", "placeType": "StopPoint", "additionalProperties": [], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490011218A", "indicator": "Stop A", "stopLetter": "A", "modes": ["bus"], "icsCode": "1011218", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G000713", "hubNaptanCode": "HUBBAN", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490011218A", "commonName": "Bank Station / Princes Street", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.514311, "lon": -0.089652}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490011218B", "indicator": "Stop B", "stopLetter": "B", "modes": ["bus"], "icsCode": "1011218", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G000713", "hubNaptanCode": "HUBBAN", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490011218B", "commonName": "Bank Station / Princes Street", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.513963, "lon": -0.089263}], "lat": 51.513963, "lon": -0.089263}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "940GZZDLBNK", "modes": ["dlr"], "stopType": "NaptanMetroStation", "stationNaptan": "940GZZDLBNK", "hubNaptanCode": "HUBBAN", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "940GZZDLBNK", "commonName": "Bank DLR Station", "placeType": "StopPoint", "additionalProperties": [], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZDLBNK1", "modes": [], "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZDLBNK", "hubNaptanCode": "HUBBAN", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "9400ZZDLBNK1", "commonName": "Bank DLR Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 0.0, "lon": 0.0}], "lat": 51.513233, "lon": -0.088515}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "940GZZLUBNK", "modes": ["tube"], "icsCode": "1000013", "stopType": "NaptanMetroStation", "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"}, {"$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"}, {"$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": ["northern"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "940GZZLUBNK", "lineIdentifier": ["waterloo-city"]}, {"$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": ["northern", "waterloo-city", "central"]}], "status": true, "id": "940GZZLUBNK", "commonName": "Bank 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": "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"}, {"$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": "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": "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": "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": "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": "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_101"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_120"}, {"$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_427"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_579"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_587"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5907"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5901"}, {"$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_5897"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5919"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5921"}], "children": [{"$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": "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": "Facility", "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": "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"}], "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": "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"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "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.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": "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"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "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.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": "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": "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"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "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": "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": "Cash Machines", "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"}], "children": [], "lat": 51.511197, "lon": -0.087836}, {"$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": "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": "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": "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": "Car park", "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.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": "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": "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": "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": "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": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "3"}, {"$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": "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": "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}], "lat": 51.513356, "lon": -0.088899}], "lat": 51.513395, "lon": -0.089095}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "HUBBDS", "modes": ["elizabeth-line", "tube"], "icsCode": "1000025", "stopType": "TransportInterchange", "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"}, {"$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": "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": ["jubilee"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "910GBONDST", "lineIdentifier": ["elizabeth"]}, {"$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": ["jubilee", "central"]}, {"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "elizabeth-line", "lineIdentifier": ["elizabeth"]}], "status": true, "id": "HUBBDS", "commonName": "Bond Street", "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": "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": "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": "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": "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": "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": "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": "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_44"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_106"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_141"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_180"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_210"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_289"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_301"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_348"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_349"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_366"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_382"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5633"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5683"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5302"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5139"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5821"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5576"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5868"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5668"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5607"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5862"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_4171"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_4787"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5195"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5617"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5820"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_4676"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5565"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5600"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5611"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5104"}], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "910GBONDST", "modes": ["elizabeth-line"], "icsCode": "1000025", "stopType": "NaptanRailStation", "stationNaptan": "910GBONDST", "hubNaptanCode": "HUBBDS", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "910GBONDST", "commonName": "Bond Street", "placeType": "StopPoint", "additionalProperties": [], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9100BONDST1", "modes": [], "icsCode": "1000025", "stopType": "NaptanRailAccessArea", "stationNaptan": "910GBONDST", "hubNaptanCode": "HUBBDS", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "9100BONDST1", "commonName": "Bond Street Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 0.0, "lon": 0.0}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9100BONDST0", "modes": [], "icsCode": "1000025", "stopType": "NaptanRailAccessArea", "stationNaptan": "910GBONDST", "hubNaptanCode": "HUBBDS", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "9100BONDST0", "commonName": "Bond Street Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 0.0, "lon": 0.0}], "lat": 51.513895, "lon": -0.147246}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "940GZZLUBND", "modes": ["tube"], "icsCode": "1000025", "stopType": "NaptanMetroStation", "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"}, {"$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": ["jubilee"]}, {"$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": ["jubilee", "central"]}], "status": true, "id": "940GZZLUBND", "commonName": "Bond Street 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": "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": "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"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.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": "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": "Lifts", "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": "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": "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": "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": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_106"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_141"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_180"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_210"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_301"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_348"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_366"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_400"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_514"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5633"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5302"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5139"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5576"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5668"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5607"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_4334"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5862"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_4171"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_4787"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_4802"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5195"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5617"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5239"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5820"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_4676"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5565"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_4871"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5611"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5104"}], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490G00025BV", "modes": ["bus"], "icsCode": "1000025", "stopType": "NaptanOnstreetBusCoachStopCluster", "stationNaptan": "940GZZLUBND", "hubNaptanCode": "HUBBDS", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490G00025BV", "commonName": "Bond Street Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.514304, "lon": -0.149723}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490G00025BW", "modes": ["bus"], "icsCode": "1000025", "stopType": "NaptanOnstreetBusCoachStopCluster", "stationNaptan": "940GZZLUBND", "hubNaptanCode": "HUBBDS", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490G00025BW", "commonName": "Bond Street Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.514304, "lon": -0.149723}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "4900BONDST0", "indicator": "Entrance 8", "stopLetter": "8", "modes": [], "icsCode": "1000025", "stopType": "NaptanRailEntrance", "stationNaptan": "940GZZLUBND", "hubNaptanCode": "HUBBDS", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "4900BONDST0", "commonName": "Bond Street Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.513416, "lon": -0.148836}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "4900BONDST1", "indicator": "Entrance 9", "stopLetter": "9", "modes": [], "icsCode": "1000025", "stopType": "NaptanRailEntrance", "stationNaptan": "940GZZLUBND", "hubNaptanCode": "HUBBDS", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "4900BONDST1", "commonName": "Bond Street Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.514045, "lon": -0.144775}, {"$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": "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": "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": "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": "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": "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": "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"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.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"}], "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": "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": "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": "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"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.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": "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": "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": "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": "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"}], "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": "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": "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": "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"}, {"$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": "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"}], "children": [], "lat": 51.514682, "lon": -0.14916}], "lat": 51.514304, "lon": -0.149723}], "lat": 51.513362, "lon": -0.148795}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "HUBBFR", "modes": ["tube", "national-rail", "bus"], "icsCode": "1000023", "stopType": "TransportInterchange", "hubNaptanCode": "HUBBFR", "lines": [{"$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": "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"}, {"$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": "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": "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": "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": "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"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490000023BA", "stationAtcoCode": "490G00023BB", "lineIdentifier": ["4"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "940GZZLUBKF", "lineIdentifier": ["district", "circle"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490013934S", "stationAtcoCode": "490G00013934", "lineIdentifier": ["n63", "40", "n89", "63"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490000023BB", "stationAtcoCode": "490G00023BB", "lineIdentifier": ["4"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "910GBLFR", "lineIdentifier": ["southeastern"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "910GBLFR", "lineIdentifier": ["thameslink"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490013934N", "stationAtcoCode": "490G00013934", "lineIdentifier": ["63", "n63", "n89", "40"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "bus", "lineIdentifier": ["4", "n63", "40", "n89", "63"]}, {"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["district", "circle"]}, {"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "national-rail", "lineIdentifier": ["southeastern", "thameslink"]}], "status": true, "id": "HUBBFR", "commonName": "Blackfriars", "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": "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": "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": "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": "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": "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": "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": "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": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_48"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_195"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_230"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_240"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_659"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_773"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_792"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_810"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_839"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_842"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5865"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5920"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5909"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5922"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5949"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5928"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5822"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5814"}], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490G00013934", "modes": ["bus"], "icsCode": "1013934", "stopType": "NaptanOnstreetBusCoachStopPair", "stationNaptan": "490G00013934", "hubNaptanCode": "HUBBFR", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490G00013934", "commonName": "Blackfriars Station / South Entrance", "placeType": "StopPoint", "additionalProperties": [], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490013934N", "indicator": "Stop C", "stopLetter": "C", "modes": ["bus"], "icsCode": "1013934", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00013934", "hubNaptanCode": "HUBBFR", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490013934N", "commonName": "Blackfriars Station / South Entrance", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.508798, "lon": -0.104624}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490013934S", "indicator": "Stop D", "stopLetter": "D", "modes": ["bus"], "icsCode": "1013934", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00013934", "hubNaptanCode": "HUBBFR", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490013934S", "commonName": "Blackfriars Station / South Entrance", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.508209, "lon": -0.104303}], "lat": 51.508209, "lon": -0.104303}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "910GBLFR", "modes": ["national-rail"], "icsCode": "1000023", "stopType": "NaptanRailStation", "stationNaptan": "910GBLFR", "hubNaptanCode": "HUBBFR", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "910GBLFR", "commonName": "London Blackfriars Rail Station", "placeType": "StopPoint", "additionalProperties": [], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490G00023BA", "modes": ["bus"], "icsCode": "1000023", "stopType": "NaptanOnstreetBusCoachStopCluster", "stationNaptan": "910GBLFR", "hubNaptanCode": "HUBBFR", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490G00023BA", "commonName": "Blackfriars Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.51181, "lon": -0.103332}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490G00023BB", "modes": ["bus"], "icsCode": "1000023", "stopType": "NaptanOnstreetBusCoachStopCluster", "stationNaptan": "490G00023BB", "hubNaptanCode": "HUBBFR", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490G00023BB", "commonName": "Blackfriars Station", "placeType": "StopPoint", "additionalProperties": [], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000023BA", "indicator": "Stop A", "stopLetter": "A", "modes": ["bus"], "icsCode": "1000023", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00023BB", "hubNaptanCode": "HUBBFR", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000023BA", "commonName": "Blackfriars Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.51221, "lon": -0.102609}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000023BB", "indicator": "Stop B", "stopLetter": "B", "modes": ["bus"], "icsCode": "1000023", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00023BB", "hubNaptanCode": "HUBBFR", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000023BB", "commonName": "Blackfriars Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.51199, "lon": -0.102892}], "lat": 51.51221, "lon": -0.102609}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490G00023S", "modes": ["bus"], "icsCode": "1000023", "stopType": "NaptanOnstreetBusCoachStopCluster", "stationNaptan": "490G00023S", "hubNaptanCode": "HUBBFR", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490G00023S", "commonName": "Blackfriars Station", "placeType": "StopPoint", "additionalProperties": [], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000023S", "indicator": "Stop", "modes": ["bus"], "icsCode": "1000023", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00023S", "hubNaptanCode": "HUBBFR", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000023S", "commonName": "Blackfriars Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.511465, "lon": -0.102136}], "lat": 51.511465, "lon": -0.102136}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490G00023T", "modes": ["bus"], "icsCode": "1000023", "stopType": "NaptanOnstreetBusCoachStopCluster", "stationNaptan": "910GBLFR", "hubNaptanCode": "HUBBFR", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490G00023T", "commonName": "Blackfriars Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.510348, "lon": -0.104243}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "4900BLFR0", "indicator": "Entrance 1", "stopLetter": "1", "modes": [], "icsCode": "1000023", "stopType": "NaptanRailEntrance", "stationNaptan": "910GBLFR", "hubNaptanCode": "HUBBFR", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "4900BLFR0", "commonName": "Blackfriars Rail Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.511654, "lon": -0.104347}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "4900BLFR1", "indicator": "Entrance 2", "stopLetter": "2", "modes": [], "icsCode": "1000023", "stopType": "NaptanRailEntrance", "stationNaptan": "910GBLFR", "hubNaptanCode": "HUBBFR", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "4900BLFR1", "commonName": "Blackfriars Rail Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.508517, "lon": -0.103368}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9100BLFR1", "modes": [], "icsCode": "1000023", "stopType": "NaptanRailAccessArea", "stationNaptan": "910GBLFR", "hubNaptanCode": "HUBBFR", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "9100BLFR1", "commonName": "Blackfriars", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 0.0, "lon": 0.0}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9100BLFR2", "modes": [], "icsCode": "1000023", "stopType": "NaptanRailAccessArea", "stationNaptan": "910GBLFR", "hubNaptanCode": "HUBBFR", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "9100BLFR2", "commonName": "Blackfriars", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 0.0, "lon": 0.0}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9100BLFR3", "modes": [], "icsCode": "1000023", "stopType": "NaptanRailAccessArea", "stationNaptan": "910GBLFR", "hubNaptanCode": "HUBBFR", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "9100BLFR3", "commonName": "Blackfriars", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 0.0, "lon": 0.0}], "lat": 51.51181, "lon": -0.103332}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "940GZZLUBKF", "modes": ["tube"], "icsCode": "1000023", "stopType": "NaptanMetroStation", "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": "940GZZLUBKF", "commonName": "Blackfriars 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": "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": "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": "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": "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": "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": "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": "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": "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": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_27"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_48"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_136"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_659"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_703"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_773"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_839"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_842"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5926"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5814"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5928"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5911"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5924"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5922"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5909"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5920"}], "children": [{"$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": "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": "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": "9400ZZLUBKF1", "commonName": "Blackfriars Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$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": "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": "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": "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": "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": "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": "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}], "lat": 51.511581, "lon": -0.103659}], "lat": 51.509613, "lon": -0.104166}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "HUBBHO", "modes": ["tube", "bus", "overground"], "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": "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"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "london-overground", "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": "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": "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"}], "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", "naptanIdReference": "490000024D", "stationAtcoCode": "490G00024D", "lineIdentifier": ["n73", "123"]}, {"$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": "490000024B", "stationAtcoCode": "490G00024D", "lineIdentifier": ["230", "w11", "158"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490000024A", "stationAtcoCode": "490G00024D", "lineIdentifier": ["158", "w11"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490000024C", "stationAtcoCode": "490G00024D", "lineIdentifier": ["123", "230", "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": "bus", "lineIdentifier": ["n73", "123", "230", "w11", "158"]}, {"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "overground", "lineIdentifier": ["london-overground"]}], "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": "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": "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": "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": "Lifts", "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": "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"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.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": "Help Points", "sourceSystemKey": "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": [{"$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": "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, 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": "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": "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"}], "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": "940GZZLUBLR", "modes": ["tube"], "icsCode": "1000024", "stopType": "NaptanMetroStation", "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": "940GZZLUBLR", "commonName": "Blackhorse Road 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": "Help Points", "sourceSystemKey": "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": "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": "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": "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": "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": "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": "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": "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": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "CarParks_800466"}], "children": [{"$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": "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": "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": "Escalators", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$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}], "lat": 51.586919, "lon": -0.04115}], "lat": 51.586768, "lon": -0.041185}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "HUBBKG", "modes": ["tube", "national-rail", "bus", "overground"], "icsCode": "1000015", "stopType": "TransportInterchange", "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": "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": "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": "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": "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": "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": "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"}, {"$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": "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": "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": "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": "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": "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": "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": "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"}], "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", "naptanIdReference": "490000015X", "stationAtcoCode": "490G00015G", "lineIdentifier": ["5", "238", "366", "169", "n15"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "940GZZLUBKG", "lineIdentifier": ["district"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "910GBARKING", "lineIdentifier": ["london-overground", "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", "naptanIdReference": "490000015H", "stationAtcoCode": "490G00015G", "lineIdentifier": ["el2", "el3", "sl2", "287", "el1", "687", "368", "62"]}, {"$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", "naptanIdReference": "490000015K", "stationAtcoCode": "490G00015G", "lineIdentifier": ["n15", "el2", "el3", "687", "sl2", "368", "62", "5"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490000015L", "stationAtcoCode": "490G00015G", "lineIdentifier": ["366", "el1", "169", "287", "238"]}], "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": ["5", "238", "366", "169", "n15", "el2", "el3", "sl2", "287", "el1", "687", "368", "62"]}, {"$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": "overground", "lineIdentifier": ["london-overground"]}], "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": "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": "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"}, {"$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"}], "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": "MonFriTo", "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": "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": "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": "Gates", "sourceSystemKey": "StaticObjects", "value": "7"}, {"$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": "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": "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"}, {"$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"}], "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": "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", "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": "9100BARKING1", "commonName": "Barking 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": "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": "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": "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": "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": "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}, {"$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}], "lat": 51.539495, "lon": 0.080903}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "940GZZLUBKG", "modes": ["tube"], "icsCode": "1000015", "stopType": "NaptanMetroStation", "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"}, {"$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": ["hammersmith-city"]}, {"$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": ["district"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["hammersmith-city", "district"]}], "status": true, "id": "940GZZLUBKG", "commonName": "Barking 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": "Gates", "sourceSystemKey": "StaticObjects", "value": "7"}, {"$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": "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": "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": "SunTo", "sourceSystemKey": "StaticObjects", "value": "23: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": "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": "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": "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": "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": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5722"}], "children": [{"$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": "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": "940GZZLUBKG", "lineIdentifier": ["hammersmith-city", "district"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["hammersmith-city", "district"]}], "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": "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": "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": "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": "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": "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"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.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"}], "children": [], "lat": 51.539574, "lon": 0.080978}], "lat": 51.539321, "lon": 0.081053}], "lat": 51.539413, "lon": 0.080988}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "HUBBRX", "modes": ["bus", "national-rail", "tube"], "icsCode": "1000031", "stopType": "TransportInterchange", "hubNaptanCode": "HUBBRX", "lines": [{"$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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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", "naptanIdReference": "490000031Q", "stationAtcoCode": "490G00031N", "lineIdentifier": ["415", "196", "432", "2", "3", "n2", "n3"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "910GBRIXTON", "lineIdentifier": ["southeastern"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490000031P", "stationAtcoCode": "490G00031N", "lineIdentifier": ["109", "118", "333", "759", "n250", "133", "n133", "45", "159", "59", "250", "n109"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490000031N", "stationAtcoCode": "490G00031N", "lineIdentifier": ["35", "p4", "355"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490000031W", "stationAtcoCode": "490G00031E", "lineIdentifier": ["322"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "940GZZLUBXN", "lineIdentifier": ["victoria"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490000031E", "stationAtcoCode": "490G00031E", "lineIdentifier": ["322"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490000031T", "stationAtcoCode": "490G00031N", "lineIdentifier": ["n250", "35", "196", "45", "333", "2", "432", "p4", "250", "n2"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490000031R", "stationAtcoCode": "490G00031N", "lineIdentifier": ["355", "759", "3", "159", "109", "59", "n109", "n3"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490000031S", "stationAtcoCode": "490G00031N", "lineIdentifier": ["133", "118", "415", "n133"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "bus", "lineIdentifier": ["415", "196", "432", "2", "3", "n2", "n3", "109", "118", "333", "759", "n250", "133", "n133", "45", "159", "59", "250", "n109", "35", "p4", "355", "322"]}, {"$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": "tube", "lineIdentifier": ["victoria"]}], "status": true, "id": "HUBBRX", "commonName": "Brixton", "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": "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": "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": "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": "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": "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": "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": "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": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_831"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_832"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_833"}], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "910GBRIXTON", "modes": ["national-rail"], "icsCode": "1000325", "stopType": "NaptanRailStation", "stationNaptan": "910GBRIXTON", "hubNaptanCode": "HUBBRX", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "910GBRIXTON", "commonName": "Brixton Rail Station", "placeType": "StopPoint", "additionalProperties": [], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "4900BRIXTON1", "indicator": "Entrance 1", "stopLetter": "1", "modes": [], "icsCode": "1000325", "stopType": "NaptanRailEntrance", "stationNaptan": "910GBRIXTON", "hubNaptanCode": "HUBBRX", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "4900BRIXTON1", "commonName": "Brixton Rail Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.463235, "lon": -0.113639}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9100BRIXTON1", "modes": [], "icsCode": "1000325", "stopType": "NaptanRailAccessArea", "stationNaptan": "910GBRIXTON", "hubNaptanCode": "HUBBRX", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "9100BRIXTON1", "commonName": "Brixton Rail Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 0.0, "lon": 0.0}], "lat": 51.463299, "lon": -0.114183}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "940GZZLUBXN", "modes": ["tube"], "icsCode": "1000031", "stopType": "NaptanMetroStation", "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": "940GZZLUBXN", "commonName": "Brixton 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": "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": "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": "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": "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": "Brixton Underground Station,London Underground Ltd.,Brixton Rd,London,SW9 8HE"}, {"$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": "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, 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": "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": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_831"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_832"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_833"}], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490G00031E", "modes": ["bus"], "icsCode": "1000031", "stopType": "NaptanOnstreetBusCoachStopCluster", "stationNaptan": "490G00031E", "hubNaptanCode": "HUBBRX", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490G00031E", "commonName": "Brixton Station", "placeType": "StopPoint", "additionalProperties": [], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000031E", "indicator": "Stop L", "stopLetter": "L", "modes": ["bus"], "icsCode": "1000031", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00031E", "hubNaptanCode": "HUBBRX", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000031E", "commonName": "Brixton Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.462973, "lon": -0.113592}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000031W", "indicator": "Stop LA", "stopLetter": "LA", "modes": ["bus"], "icsCode": "1000031", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00031E", "hubNaptanCode": "HUBBRX", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000031W", "commonName": "Brixton Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.463049, "lon": -0.114395}], "lat": 51.463049, "lon": -0.114395}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490G00031N", "modes": ["bus"], "icsCode": "1000031", "stopType": "NaptanOnstreetBusCoachStopCluster", "stationNaptan": "490G00031N", "hubNaptanCode": "HUBBRX", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490G00031N", "commonName": "Brixton Station", "placeType": "StopPoint", "additionalProperties": [], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000031N", "indicator": "Stop N", "stopLetter": "N", "modes": ["bus"], "icsCode": "1000031", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00031N", "hubNaptanCode": "HUBBRX", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000031N", "commonName": "Brixton Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.462117, "lon": -0.115139}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000031P", "indicator": "Stop P", "stopLetter": "P", "modes": ["bus"], "icsCode": "1000031", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00031N", "hubNaptanCode": "HUBBRX", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000031P", "commonName": "Brixton Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.461795, "lon": -0.115253}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000031Q", "indicator": "Stop Q", "stopLetter": "Q", "modes": ["bus"], "icsCode": "1000031", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00031N", "hubNaptanCode": "HUBBRX", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000031Q", "commonName": "Brixton Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.461617, "lon": -0.115361}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000031R", "indicator": "Stop R", "stopLetter": "R", "modes": ["bus"], "icsCode": "1000031", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00031N", "hubNaptanCode": "HUBBRX", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000031R", "commonName": "Brixton Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.462236, "lon": -0.115292}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000031S", "indicator": "Stop S", "stopLetter": "S", "modes": ["bus"], "icsCode": "1000031", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00031N", "hubNaptanCode": "HUBBRX", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000031S", "commonName": "Brixton Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.462137, "lon": -0.115282}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000031T", "indicator": "Stop T", "stopLetter": "T", "modes": ["bus"], "icsCode": "1000031", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00031N", "hubNaptanCode": "HUBBRX", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000031T", "commonName": "Brixton Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.461968, "lon": -0.115376}], "lat": 51.462117, "lon": -0.115139}, {"$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": "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}], "lat": 51.462618, "lon": -0.114888}], "lat": 51.462961, "lon": -0.114531}, {"$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": "london-overground", "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": "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": "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": "910GBUSHYDC", "lineIdentifier": ["london-overground"]}, {"$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", "stationAtcoCode": "910GBUSHEY", "lineIdentifier": ["west-midlands-trains"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "210021903500", "stationAtcoCode": "210G3126", "lineIdentifier": ["258", "142"]}], "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": ["142", "258"]}, {"$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": "HUBCAN", "modes": ["tube", "bus", "dlr"], "icsCode": "1000039", "stopType": "TransportInterchange", "hubNaptanCode": "HUBCAN", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "147", "name": "147", "uri": "/Line/147", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "474", "name": "474", "uri": "/Line/474", "type": "Line", "crowding": {"$type": "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": "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": "323", "name": "323", "uri": "/Line/323", "type": "Line", "crowding": {"$type": "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": "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": "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": "309", "name": "309", "uri": "/Line/309", "type": "Line", "crowding": {"$type": "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": "115", "name": "115", "uri": "/Line/115", "type": "Line", "crowding": {"$type": "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": "300", "name": "300", "uri": "/Line/300", "type": "Line", "crowding": {"$type": "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"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490000039B", "stationAtcoCode": "490G00039A", "lineIdentifier": ["147", "474", "n551"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490000039E", "stationAtcoCode": "490G00039A", "lineIdentifier": ["69", "474", "323", "108"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "940GZZLUCGT", "lineIdentifier": ["jubilee"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490000039C", "stationAtcoCode": "490G00039A", "lineIdentifier": ["n550", "309", "n551"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "940GZZDLCGT", "lineIdentifier": ["dlr"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490000039G", "stationAtcoCode": "490G00039A", "lineIdentifier": ["115", "n15"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490000039A", "stationAtcoCode": "490G00039A", "lineIdentifier": ["n550", "309", "5", "323", "108", "300", "147", "69"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490000039D", "stationAtcoCode": "490G00039A", "lineIdentifier": ["330"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490000039F", "stationAtcoCode": "490G00039A", "lineIdentifier": ["115", "300", "5", "n15", "330"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "bus", "lineIdentifier": ["147", "474", "n551", "69", "323", "108", "n550", "309", "115", "n15", "5", "300", "330"]}, {"$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": "dlr", "lineIdentifier": ["dlr"]}], "status": true, "id": "HUBCAN", "commonName": "Canning Town", "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": "10"}, {"$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": "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": "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": "2/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": "Payphones", "sourceSystemKey": "StaticObjects", "value": "6"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5301"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.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": "Lifts", "sourceSystemKey": "StaticObjects", "value": "3"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "10"}], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "940GZZDLCGT", "modes": ["dlr"], "icsCode": "1000039", "stopType": "NaptanMetroStation", "stationNaptan": "940GZZDLCGT", "hubNaptanCode": "HUBCAN", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "940GZZDLCGT", "commonName": "Canning Town DLR Station", "placeType": "StopPoint", "additionalProperties": [], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490G00039A", "modes": ["bus"], "icsCode": "1000039", "stopType": "NaptanOnstreetBusCoachStopCluster", "stationNaptan": "490G00039A", "hubNaptanCode": "HUBCAN", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490G00039A", "commonName": "Canning Town Bus Station", "placeType": "StopPoint", "additionalProperties": [], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000039A", "indicator": "Stop A", "stopLetter": "A", "modes": ["bus"], "icsCode": "1000039", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00039A", "hubNaptanCode": "HUBCAN", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000039A", "commonName": "Canning Town Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.514547, "lon": 0.008177}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000039B", "indicator": "Stop B", "stopLetter": "B", "modes": ["bus"], "icsCode": "1000039", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00039A", "hubNaptanCode": "HUBCAN", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000039B", "commonName": "Canning Town Bus Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.513652, "lon": 0.008973}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000039C", "indicator": "Stop C", "stopLetter": "C", "modes": ["bus"], "icsCode": "1000039", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00039A", "hubNaptanCode": "HUBCAN", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000039C", "commonName": "Canning Town Bus Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.51404, "lon": 0.008904}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000039D", "indicator": "Stop D", "stopLetter": "D", "modes": ["bus"], "icsCode": "1000039", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00039A", "hubNaptanCode": "HUBCAN", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000039D", "commonName": "Canning Town Bus Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.514236, "lon": 0.008509}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000039E", "indicator": "Stop E", "stopLetter": "E", "modes": ["bus"], "icsCode": "1000039", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00039A", "hubNaptanCode": "HUBCAN", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000039E", "commonName": "Canning Town Bus Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.514314, "lon": 0.008657}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000039F", "indicator": "Stop F", "stopLetter": "F", "modes": ["bus"], "icsCode": "1000039", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00039A", "hubNaptanCode": "HUBCAN", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000039F", "commonName": "Canning Town Bus Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.514497, "lon": 0.008477}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000039G", "indicator": "Stop G", "stopLetter": "G", "modes": ["bus"], "icsCode": "1000039", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00039A", "hubNaptanCode": "HUBCAN", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000039G", "commonName": "Canning Town Bus Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.514428, "lon": 0.008273}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000039N1", "indicator": "->N", "stopLetter": "->N", "modes": ["bus"], "icsCode": "1000039", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00039A", "hubNaptanCode": "HUBCAN", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000039N1", "commonName": "Canning Town Bus Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.514008, "lon": 0.009176}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000039Z", "indicator": "->S", "stopLetter": "->S", "modes": ["bus"], "icsCode": "1000039", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00039A", "hubNaptanCode": "HUBCAN", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000039Z", "commonName": "Canning Town Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.514259, "lon": 0.00926}], "lat": 51.514428, "lon": 0.008273}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZDLCGT3", "indicator": "Platform 3", "stopLetter": "3", "modes": [], "icsCode": "1000039", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZDLCGT", "hubNaptanCode": "HUBCAN", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "9400ZZDLCGT3", "commonName": "Canning Town DLR Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 0.0, "lon": 0.0}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZDLCGT1", "indicator": "Platform 1", "stopLetter": "1", "modes": [], "icsCode": "1000039", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZDLCGT", "hubNaptanCode": "HUBCAN", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "9400ZZDLCGT1", "commonName": "Canning Town DLR Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 0.0, "lon": 0.0}], "lat": 51.514127, "lon": 0.008101}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "940GZZLUCGT", "modes": ["tube"], "icsCode": "1000039", "stopType": "NaptanMetroStation", "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": "940GZZLUCGT", "commonName": "Canning Town 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": "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": "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": "Accessibility", "key": "AccessViaLift", "sourceSystemKey": "LRAD", "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": "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": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "10"}, {"$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": "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": "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": "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": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5301"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "LimitedCapacityLift", "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": "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": "ToiletNote", "sourceSystemKey": "LRAD", "value": "(bus station)"}, {"$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": "AddtionalInformation", "sourceSystemKey": "LRAD", "value": "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 "}], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "4900ZZDLCGT2", "indicator": "Entrance 1", "stopLetter": "1", "modes": [], "icsCode": "1000039", "stopType": "NaptanMetroEntrance", "stationNaptan": "940GZZLUCGT", "hubNaptanCode": "HUBCAN", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "4900ZZDLCGT2", "commonName": "Canning Town Underground Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.514584, "lon": 0.008135}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "4900ZZDLCGT3", "indicator": "Entrance 2", "stopLetter": "2", "modes": [], "icsCode": "1000039", "stopType": "NaptanMetroEntrance", "stationNaptan": "940GZZLUCGT", "hubNaptanCode": "HUBCAN", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "4900ZZDLCGT3", "commonName": "Canning Town Underground Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.514464, "lon": 0.007251}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "4900ZZDLCGT4", "indicator": "Entrance 3", "stopLetter": "3", "modes": [], "icsCode": "1000039", "stopType": "NaptanMetroEntrance", "stationNaptan": "940GZZLUCGT", "hubNaptanCode": "HUBCAN", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "4900ZZDLCGT4", "commonName": "Canning Town Underground Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.514911, "lon": 0.007948}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "4900ZZDLCGT5", "indicator": "Entrance 4", "stopLetter": "4", "modes": [], "icsCode": "1000039", "stopType": "NaptanMetroEntrance", "stationNaptan": "940GZZLUCGT", "hubNaptanCode": "HUBCAN", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "4900ZZDLCGT5", "commonName": "Canning Town Underground Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.514671, "lon": 0.008312}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "4900ZZDLCGT6", "indicator": "Entrance 5", "stopLetter": "5", "modes": [], "icsCode": "1000039", "stopType": "NaptanMetroEntrance", "stationNaptan": "940GZZLUCGT", "hubNaptanCode": "HUBCAN", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "4900ZZDLCGT6", "commonName": "Canning Town Underground Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.513885, "lon": 0.008998}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "4900ZZDLCGT7", "indicator": "Entrance 6", "stopLetter": "6", "modes": [], "icsCode": "1000039", "stopType": "NaptanMetroEntrance", "stationNaptan": "940GZZLUCGT", "hubNaptanCode": "HUBCAN", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "4900ZZDLCGT7", "commonName": "Canning Town Underground Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.513314, "lon": 0.009276}, {"$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}], "lat": 51.513584, "lon": 0.008322}], "lat": 51.514029, "lon": 0.008025}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "HUBCAW", "modes": ["bus", "elizabeth-line", "dlr", "tube"], "icsCode": "1000038", "stopType": "TransportInterchange", "hubNaptanCode": "HUBCAW", "lines": [{"$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": "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": "d7", "name": "D7", "uri": "/Line/d7", "type": "Line", "crowding": {"$type": "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": "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": "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": "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": "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": "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": "elizabeth", "name": "Elizabeth line", "uri": "/Line/elizabeth", "type": "Line", "crowding": {"$type": "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": "490000038G", "stationAtcoCode": "490G00038G", "lineIdentifier": ["n550", "n277", "d7", "d8", "277", "135", "d3"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490016668K", "stationAtcoCode": "490G000917", "lineIdentifier": ["135", "d7", "277", "n550", "n277"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "940GZZDLCAN", "lineIdentifier": ["dlr"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490000038F", "stationAtcoCode": "490G00038F", "lineIdentifier": ["d3", "d7", "277", "135", "d8", "n277", "n550"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490016668L", "stationAtcoCode": "490G000917", "lineIdentifier": ["d7", "135", "277", "n277", "n550"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "940GZZLUCYF", "lineIdentifier": ["jubilee"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "910GCANWHRF", "lineIdentifier": ["elizabeth"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "bus", "lineIdentifier": ["n550", "n277", "d7", "d8", "277", "135", "d3"]}, {"$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": "tube", "lineIdentifier": ["jubilee"]}, {"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "elizabeth-line", "lineIdentifier": ["elizabeth"]}], "status": true, "id": "HUBCAW", "commonName": "Canary Wharf", "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": "Escalators", "sourceSystemKey": "StaticObjects", "value": "20"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.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": "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": "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": "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": "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": "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": "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": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_448"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_494"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_532"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_551"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_556"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_570"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5959"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5962"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5963"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5953"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5951"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5955"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5957"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5964"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5954"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5950"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5961"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5956"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5952"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5958"}], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490G000917", "modes": ["bus"], "icsCode": "1016668", "stopType": "NaptanOnstreetBusCoachStopPair", "stationNaptan": "490G000917", "hubNaptanCode": "HUBCAW", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490G000917", "commonName": "Canary Wharf Station", "placeType": "StopPoint", "additionalProperties": [], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490016668K", "indicator": "Stop K", "stopLetter": "K", "modes": ["bus"], "icsCode": "1016668", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G000917", "hubNaptanCode": "HUBCAW", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490016668K", "commonName": "Canary Wharf Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.502873, "lon": -0.018186}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490016668L", "indicator": "Stop L", "stopLetter": "L", "modes": ["bus"], "icsCode": "1016668", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G000917", "hubNaptanCode": "HUBCAW", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490016668L", "commonName": "Canary Wharf Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.502802, "lon": -0.019817}], "lat": 51.502802, "lon": -0.019817}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "910GCANWHRF", "modes": ["elizabeth-line"], "icsCode": "1002163", "stopType": "NaptanRailStation", "stationNaptan": "910GCANWHRF", "hubNaptanCode": "HUBCAW", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "910GCANWHRF", "commonName": "Canary Wharf", "placeType": "StopPoint", "additionalProperties": [], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "4900CANWHRF0", "indicator": "Entrance 1", "stopLetter": "1", "modes": [], "icsCode": "1002163", "stopType": "NaptanRailEntrance", "stationNaptan": "910GCANWHRF", "hubNaptanCode": "HUBCAW", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "4900CANWHRF0", "commonName": "Canary Wharf Rail Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.506501, "lon": -0.016833}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "4900CANWHRF1", "indicator": "Entrance 2", "stopLetter": "2", "modes": [], "icsCode": "1002163", "stopType": "NaptanRailEntrance", "stationNaptan": "910GCANWHRF", "hubNaptanCode": "HUBCAW", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "4900CANWHRF1", "commonName": "Canary Wharf Rail Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.506098, "lon": -0.020121}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "4900CANWHRF2", "indicator": "Entrance 3", "stopLetter": "3", "modes": [], "icsCode": "1002163", "stopType": "NaptanRailEntrance", "stationNaptan": "910GCANWHRF", "hubNaptanCode": "HUBCAW", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "4900CANWHRF2", "commonName": "Canary Wharf Rail Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.50605, "lon": -0.018855}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9100CANWHRF0", "modes": [], "icsCode": "1002163", "stopType": "NaptanRailAccessArea", "stationNaptan": "910GCANWHRF", "hubNaptanCode": "HUBCAW", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "9100CANWHRF0", "commonName": "Canary Wharf Crossrail Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 0.0, "lon": 0.0}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9100CANWHRF1", "modes": [], "icsCode": "1002163", "stopType": "NaptanRailAccessArea", "stationNaptan": "910GCANWHRF", "hubNaptanCode": "HUBCAW", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "9100CANWHRF1", "commonName": "Canary Wharf Crossrail Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 0.0, "lon": 0.0}], "lat": 51.506098, "lon": -0.020121}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "940GZZDLCAN", "modes": ["dlr"], "icsCode": "1003008", "stopType": "NaptanMetroStation", "stationNaptan": "940GZZDLCAN", "hubNaptanCode": "HUBCAW", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "940GZZDLCAN", "commonName": "Canary Wharf DLR Station", "placeType": "StopPoint", "additionalProperties": [], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "4900ZZDLCAN1", "indicator": "Entrance 1", "stopLetter": "1", "modes": ["dlr"], "icsCode": "1003008", "stopType": "NaptanMetroEntrance", "stationNaptan": "940GZZDLCAN", "hubNaptanCode": "HUBCAW", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "4900ZZDLCAN1", "commonName": "Canary Wharf DLR Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.505416, "lon": -0.020727}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "4900ZZDLCAN2", "indicator": "Entrance 2", "stopLetter": "2", "modes": ["dlr"], "icsCode": "1003008", "stopType": "NaptanMetroEntrance", "stationNaptan": "940GZZDLCAN", "hubNaptanCode": "HUBCAW", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "4900ZZDLCAN2", "commonName": "Canary Wharf DLR Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.504745, "lon": -0.0209}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "4900ZZDLCAN3", "indicator": "Entrance 3", "stopLetter": "3", "modes": ["dlr"], "icsCode": "1003008", "stopType": "NaptanMetroEntrance", "stationNaptan": "940GZZDLCAN", "hubNaptanCode": "HUBCAW", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "4900ZZDLCAN3", "commonName": "Canary Wharf DLR Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.505046, "lon": -0.020642}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "4900ZZDLCAN4", "indicator": "Entrance 4", "stopLetter": "4", "modes": ["dlr"], "icsCode": "1003008", "stopType": "NaptanMetroEntrance", "stationNaptan": "940GZZDLCAN", "hubNaptanCode": "HUBCAW", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "4900ZZDLCAN4", "commonName": "Canary Wharf DLR Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.5051, "lon": -0.021173}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZDLCAN1", "modes": [], "icsCode": "1003008", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZDLCAN", "hubNaptanCode": "HUBCAW", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "9400ZZDLCAN1", "commonName": "Canary Wharf DLR Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 0.0, "lon": 0.0}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZDLCAN2", "modes": [], "icsCode": "1003008", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZDLCAN", "hubNaptanCode": "HUBCAW", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "9400ZZDLCAN2", "commonName": "Canary Wharf DLR Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 0.0, "lon": 0.0}], "lat": 51.504838, "lon": -0.020997}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "940GZZLUCYF", "modes": ["tube"], "icsCode": "1000038", "stopType": "NaptanMetroStation", "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": "940GZZLUCYF", "commonName": "Canary Wharf 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": "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": "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": "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": "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": "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": "20"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, 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": "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": "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": "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": "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": "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": "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": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_448"}, {"$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": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_494"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_532"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5951"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_556"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_570"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5963"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5953"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5959"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5955"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5957"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5964"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5962"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5961"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5954"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_551"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5952"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5958"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5956"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5950"}], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490G00038F", "modes": ["bus"], "stopType": "NaptanOnstreetBusCoachStopCluster", "stationNaptan": "490G00038F", "hubNaptanCode": "HUBCAW", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490G00038F", "commonName": "Canary Wharf Station", "placeType": "StopPoint", "additionalProperties": [], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000038F", "indicator": "Stop F", "stopLetter": "F", "modes": ["bus"], "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00038F", "hubNaptanCode": "HUBCAW", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000038F", "commonName": "Canary Wharf Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.505473, "lon": -0.020912}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000038Z", "indicator": "Stop", "modes": ["bus"], "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00038F", "hubNaptanCode": "HUBCAW", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000038Z", "commonName": "Canary Wharf Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.505433, "lon": -0.02064}], "lat": 51.505433, "lon": -0.02064}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490G00038G", "modes": ["bus"], "icsCode": "1000038", "stopType": "NaptanOnstreetBusCoachStopCluster", "stationNaptan": "490G00038G", "hubNaptanCode": "HUBCAW", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490G00038G", "commonName": "Canary Wharf Station", "placeType": "StopPoint", "additionalProperties": [], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000038G", "indicator": "Stop G", "stopLetter": "G", "modes": ["bus"], "icsCode": "1000038", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00038G", "hubNaptanCode": "HUBCAW", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000038G", "commonName": "Canary Wharf Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.50472, "lon": -0.021046}], "lat": 51.50472, "lon": -0.021046}, {"$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": "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": "Lifts", "sourceSystemKey": "StaticObjects", "value": "3"}, {"$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": "Photo 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": "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": "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": "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": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "2"}], "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}], "lat": 51.503488, "lon": -0.018246}], "lat": 51.503734, "lon": -0.019121}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "HUBCFO", "modes": ["tube", "national-rail", "bus"], "icsCode": "1000042", "stopType": "TransportInterchange", "hubNaptanCode": "HUBCFO", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "chiltern-railways", "name": "Chiltern Railways", "uri": "/Line/chiltern-railways", "type": "Line", "crowding": {"$type": "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": "910GCHLFNAL", "lineIdentifier": ["chiltern-railways"]}, {"$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": "national-rail", "lineIdentifier": ["chiltern-railways"]}, {"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["metropolitan"]}], "status": true, "id": "HUBCFO", "commonName": "Chalfont & Latimer", "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": "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": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "8"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.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": "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": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, 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": "CarParks_800440"}], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "910GCHLFNAL", "modes": ["national-rail"], "icsCode": "1000042", "stopType": "NaptanRailStation", "stationNaptan": "910GCHLFNAL", "hubNaptanCode": "HUBCFO", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "910GCHLFNAL", "commonName": "Chalfont & Latimer Rail Station", "placeType": "StopPoint", "additionalProperties": [], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "040G00002102", "modes": [], "icsCode": "1000302", "stopType": "NaptanOnstreetBusCoachStopPair", "stationNaptan": "040G00002102", "hubNaptanCode": "HUBCFO", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "040G00002102", "commonName": "Station Forecourt", "placeType": "StopPoint", "additionalProperties": [], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "040000002102", "indicator": "o/s", "modes": [], "icsCode": "1000302", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "040G00002102", "hubNaptanCode": "HUBCFO", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "040000002102", "commonName": "Station Forecourt", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.667816, "lon": -0.560634}], "lat": 51.667816, "lon": -0.560634}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "040G00002191", "modes": [], "icsCode": "5253281", "stopType": "NaptanOnstreetBusCoachStopPair", "stationNaptan": "040G00002191", "hubNaptanCode": "HUBCFO", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "040G00002191", "commonName": "Chalfont Avenue", "placeType": "StopPoint", "additionalProperties": [], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "040000002006", "indicator": "Southbound", "modes": [], "icsCode": "5253281", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "040G00002191", "hubNaptanCode": "HUBCFO", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "040000002006", "commonName": "Chalfont Avenue", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.6688, "lon": -0.558752}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "040000002191", "indicator": "o/s 19", "stopLetter": "19", "modes": [], "icsCode": "5253281", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "040G00002191", "hubNaptanCode": "HUBCFO", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "040000002191", "commonName": "Chalfont Avenue", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.66881, "lon": -0.558867}], "lat": 51.66881, "lon": -0.558867}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "040G00002620", "modes": [], "icsCode": "1000042", "stopType": "NaptanOnstreetBusCoachStopPair", "stationNaptan": "910GCHLFNAL", "hubNaptanCode": "HUBCFO", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "040G00002620", "commonName": "Railway Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.668108, "lon": -0.560526}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "940GZZLUCAL", "modes": ["tube"], "icsCode": "1000042", "stopType": "NaptanMetroStation", "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": "940GZZLUCAL", "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": "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": "0"}, {"$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": "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": "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": "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": "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"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "CarParks_800440"}], "children": [{"$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": "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}], "lat": 51.667985, "lon": -0.560689}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "0400CHLFNAL0", "indicator": "south entrance", "stopLetter": "entrance", "modes": [], "icsCode": "1000042", "stopType": "NaptanRailEntrance", "stationNaptan": "910GCHLFNAL", "hubNaptanCode": "HUBCFO", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "0400CHLFNAL0", "commonName": "Chalfont & Latimer Rail Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.667914, "lon": -0.560602}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "0400CHLFNAL1", "indicator": "north entrance", "stopLetter": "entrance", "modes": [], "icsCode": "1000042", "stopType": "NaptanRailEntrance", "stationNaptan": "910GCHLFNAL", "hubNaptanCode": "HUBCFO", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "0400CHLFNAL1", "commonName": "Chalfont & Latimer Rail Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.668121, "lon": -0.56061}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9100CHLFNAL1", "modes": [], "icsCode": "1000042", "stopType": "NaptanRailAccessArea", "stationNaptan": "910GCHLFNAL", "hubNaptanCode": "HUBCFO", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "9100CHLFNAL1", "commonName": "Chalfont and Latimer Rail Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 0.0, "lon": 0.0}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9100CHLFNAL2", "modes": [], "icsCode": "1000042", "stopType": "NaptanRailAccessArea", "stationNaptan": "910GCHLFNAL", "hubNaptanCode": "HUBCFO", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "9100CHLFNAL2", "commonName": "Chalfont and Latimer Rail Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 0.0, "lon": 0.0}], "lat": 51.668108, "lon": -0.560526}], "lat": 51.668109, "lon": -0.560519}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "HUBCHX", "modes": ["tube", "bus", "national-rail"], "icsCode": "1000045", "stopType": "TransportInterchange", "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"}, {"$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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "n15", "name": "N15", "uri": "/Line/n15", "type": "Line", "crowding": {"$type": "Tfl.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"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490013766K", "stationAtcoCode": "490G000803", "lineIdentifier": ["n199", "26", "n87", "n91", "87", "n26", "n44", "91", "n155"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "910GCHRX", "lineIdentifier": ["southeastern"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "940GZZLUCHX", "lineIdentifier": ["bakerloo"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490013766G", "stationAtcoCode": "490G000803", "lineIdentifier": ["139", "n199", "176", "n21", "n343", "n89"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490013766E", "stationAtcoCode": "490G00045", "lineIdentifier": ["n87", "n155", "87", "9", "n44", "23", "n9"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490013766F", "stationAtcoCode": "490G000803", "lineIdentifier": ["n91", "n551", "n26", "n550", "15", "n15", "91", "26"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490013766H", "stationAtcoCode": "490G00045", "lineIdentifier": ["23", "n9", "n89", "176", "n15", "15", "139", "n550", "9", "n343", "n21", "n551"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["northern", "bakerloo"]}, {"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "bus", "lineIdentifier": ["n199", "26", "n87", "n91", "87", "n26", "n44", "91", "n155", "139", "176", "n21", "n343", "n89", "9", "23", "n9", "n551", "n550", "15", "n15"]}, {"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "national-rail", "lineIdentifier": ["southeastern"]}], "status": true, "id": "HUBCHX", "commonName": "Charing Cross", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_4982"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5681"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5853"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5867"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5854"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5758"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.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": "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": "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": "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": "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": "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": "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_64"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_83"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_160"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_226"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_229"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_233"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_325"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_341"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_354"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_388"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5506"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5596"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5016"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5670"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5364"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5281"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5671"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5737"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_4470"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5875"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5855"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5965"}], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490G000803", "modes": ["bus"], "icsCode": "1013766", "stopType": "NaptanOnstreetBusCoachStopCluster", "stationNaptan": "490G000803", "hubNaptanCode": "HUBCHX", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490G000803", "commonName": "Charing Cross Stn / Trafalgar Square", "placeType": "StopPoint", "additionalProperties": [], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490013766F", "indicator": "Stop F", "stopLetter": "F", "modes": ["bus"], "icsCode": "1013766", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G000803", "hubNaptanCode": "HUBCHX", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490013766F", "commonName": "Charing Cross Stn / Trafalgar Square", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.508165, "lon": -0.126194}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490013766G", "indicator": "Stop G", "stopLetter": "G", "modes": ["bus"], "icsCode": "1013766", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G000803", "hubNaptanCode": "HUBCHX", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490013766G", "commonName": "Trafalgar Square / Charing Cross Stn", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.508642, "lon": -0.126232}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490013766K", "indicator": "Stop K", "stopLetter": "K", "modes": ["bus"], "icsCode": "1013766", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G000803", "hubNaptanCode": "HUBCHX", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490013766K", "commonName": "Trafalgar Square / Charing Cross Stn", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.508005, "lon": -0.126345}], "lat": 51.508165, "lon": -0.126194}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "910GCHRX", "modes": ["national-rail"], "icsCode": "1000045", "stopType": "NaptanRailStation", "stationNaptan": "910GCHRX", "hubNaptanCode": "HUBCHX", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "910GCHRX", "commonName": "London Charing Cross Rail Station", "placeType": "StopPoint", "additionalProperties": [], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9100CHRX0", "modes": [], "icsCode": "1000045", "stopType": "NaptanRailAccessArea", "stationNaptan": "910GCHRX", "hubNaptanCode": "HUBCHX", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "9100CHRX0", "commonName": "Charing Cross", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 0.0, "lon": 0.0}], "lat": 51.508027, "lon": -0.124802}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "940GZZLUCHX", "modes": ["tube"], "icsCode": "1000045", "stopType": "NaptanMetroStation", "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"}, {"$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": ["northern"]}, {"$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": ["northern", "bakerloo"]}], "status": true, "id": "940GZZLUCHX", "commonName": "Charing Cross 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": "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": "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": "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": "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": "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": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_64"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_83"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_160"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_226"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_229"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_233"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_325"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_341"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_354"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5596"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5016"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5670"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5364"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5325"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5281"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5671"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5737"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_4470"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5855"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_4982"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5681"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5853"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5867"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5854"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5856"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5758"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5572"}], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490G00045", "modes": ["bus"], "icsCode": "1000045", "stopType": "NaptanOnstreetBusCoachStopCluster", "stationNaptan": "490G00045", "hubNaptanCode": "HUBCHX", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490G00045", "commonName": "Charing Cross Stn / Trafalgar Square", "placeType": "StopPoint", "additionalProperties": [], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490013766E", "indicator": "Stop E", "stopLetter": "E", "modes": ["bus"], "icsCode": "1000045", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00045", "hubNaptanCode": "HUBCHX", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490013766E", "commonName": "Charing Cross Stn / Trafalgar Square", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.508044, "lon": -0.126487}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490013766H", "indicator": "Stop H", "stopLetter": "H", "modes": ["bus"], "icsCode": "1000045", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00045", "hubNaptanCode": "HUBCHX", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490013766H", "commonName": "Charing Cross Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.508433, "lon": -0.12552}], "lat": 51.508044, "lon": -0.126487}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "4900CHRX0", "indicator": "Entrance 9", "stopLetter": "9", "modes": [], "icsCode": "1000045", "stopType": "NaptanRailEntrance", "stationNaptan": "940GZZLUCHX", "hubNaptanCode": "HUBCHX", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "4900CHRX0", "commonName": "London Charing Cross Rail Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.508118, "lon": -0.124971}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "4900CHRX1", "indicator": "Entrance 12", "stopLetter": "12", "modes": [], "icsCode": "1000045", "stopType": "NaptanRailEntrance", "stationNaptan": "940GZZLUCHX", "hubNaptanCode": "HUBCHX", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "4900CHRX1", "commonName": "London Charing Cross Rail Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.508061, "lon": -0.124224}, {"$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": "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": "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"}], "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": "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": "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": "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": "Car park", "sourceSystemKey": "StaticObjects", "value": "no"}], "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": "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"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.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"}], "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}], "lat": 51.50741, "lon": -0.127277}], "lat": 51.507819, "lon": -0.126137}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "HUBCLJ", "modes": ["overground", "bus", "national-rail"], "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": "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": "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": "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": "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": "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": "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": "london-overground", "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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"}], "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", "naptanIdReference": "490015058E", "stationAtcoCode": "490G000855", "lineIdentifier": ["170"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490015060L", "stationAtcoCode": "490G01069M", "lineIdentifier": ["n19", "295", "n31", "344", "c3"]}, {"$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", "stationAtcoCode": "910GCLPHMJ1", "lineIdentifier": ["london-overground"]}, {"$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", "naptanIdReference": "490005332P", "stationAtcoCode": "490G000462", "lineIdentifier": ["g1", "77", "219"]}, {"$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": "490005332T", "stationAtcoCode": "490G000462", "lineIdentifier": ["77", "35", "219", "319", "49", "37", "337", "g1"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490005333V", "stationAtcoCode": "490G00005333", "lineIdentifier": ["g1", "337", "37", "49", "319", "219", "77", "35"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490005331E", "stationAtcoCode": "490G000462", "lineIdentifier": ["39", "670", "35", "344", "n31", "c3", "49", "295", "319", "639", "170", "345", "n19"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490001069D", "stationAtcoCode": "490G01069M", "lineIdentifier": ["n87", "87", "39", "156", "c3", "n31"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490001069M", "stationAtcoCode": "490G01069M", "lineIdentifier": ["37", "156", "39", "670", "87", "n87", "337", "170", "639"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490001069C", "stationAtcoCode": "490G01069M", "lineIdentifier": ["295", "344", "670", "337", "n19", "37", "639", "170"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490005333Y", "stationAtcoCode": "490G00005333", "lineIdentifier": ["77", "35", "319", "219", "37", "49", "g1", "337"]}], "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": "bus", "lineIdentifier": ["170", "n19", "295", "n31", "344", "c3", "345", "g1", "77", "219", "35", "319", "49", "37", "337", "39", "670", "639", "n87", "87", "156"]}, {"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "overground", "lineIdentifier": ["london-overground"]}], "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": "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": "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": ["south-western-railway"]}, {"$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": "national-rail", "lineIdentifier": ["south-western-railway", "southern"]}, {"$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": ["overground", "national-rail"], "icsCode": "1001069", "stopType": "NaptanRailAccessArea", "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"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "910GCLPHMJC", "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": "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": "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}, {"$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}], "lat": 51.464188, "lon": -0.170293}], "lat": 51.463724, "lon": -0.168997}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "HUBCLW", "modes": ["national-rail", "bus", "tube"], "icsCode": "1000049", "stopType": "TransportInterchange", "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"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "chiltern-railways", "name": "Chiltern Railways", "uri": "/Line/chiltern-railways", "type": "Line", "crowding": {"$type": "Tfl.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"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "910GCHRW", "lineIdentifier": ["chiltern-railways"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["metropolitan"]}, {"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "national-rail", "lineIdentifier": ["chiltern-railways"]}], "status": true, "id": "HUBCLW", "commonName": "Chorleywood", "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": "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": "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": "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": "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": "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": "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": "Help Points", "sourceSystemKey": "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": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "CarParks_800441"}], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "910GCHRW", "modes": ["national-rail"], "icsCode": "1000049", "stopType": "NaptanRailStation", "stationNaptan": "910GCHRW", "hubNaptanCode": "HUBCLW", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "910GCHRW", "commonName": "Chorleywood Rail Station", "placeType": "StopPoint", "additionalProperties": [], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "210G3353", "modes": [], "icsCode": "5304899", "stopType": "NaptanOnstreetBusCoachStopPair", "stationNaptan": "210G3353", "hubNaptanCode": "HUBCLW", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "210G3353", "commonName": "Library", "placeType": "StopPoint", "additionalProperties": [], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "210021804610", "indicator": "opp", "modes": [], "icsCode": "5304899", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "210G3353", "hubNaptanCode": "HUBCLW", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "210021804610", "commonName": "Library", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.652643, "lon": -0.518069}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "210021804995", "indicator": "o/s", "modes": [], "icsCode": "5304899", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "210G3353", "hubNaptanCode": "HUBCLW", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "210021804995", "commonName": "Library", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.653092, "lon": -0.51869}], "lat": 51.653092, "lon": -0.51869}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "210G3356", "modes": [], "icsCode": "5304951", "stopType": "NaptanOnstreetBusCoachStopPair", "stationNaptan": "210G3356", "hubNaptanCode": "HUBCLW", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "210G3356", "commonName": "Memorial Hall", "placeType": "StopPoint", "additionalProperties": [], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "210021802180", "indicator": "nr", "modes": [], "icsCode": "5304951", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "210G3356", "hubNaptanCode": "HUBCLW", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "210021802180", "commonName": "Memorial Hall", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.6554, "lon": -0.517025}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "210021804600", "indicator": "opp", "modes": [], "icsCode": "5304951", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "210G3356", "hubNaptanCode": "HUBCLW", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "210021804600", "commonName": "Memorial Hall", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.655614, "lon": -0.516902}], "lat": 51.6554, "lon": -0.517025}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "940GZZLUCYD", "modes": ["tube"], "icsCode": "1000049", "stopType": "NaptanMetroStation", "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": "940GZZLUCYD", "commonName": "Chorleywood 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": "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": "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": "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": "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": "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": "Geo", "key": "Zone", "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": "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": "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"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "CarParks_800441"}], "children": [{"$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": "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": "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": "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": "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"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, 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"}], "children": [], "lat": 51.653798, "lon": -0.518233}], "lat": 51.654358, "lon": -0.518461}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "2100CHRW0", "indicator": "back entrance", "stopLetter": "entrance", "modes": [], "icsCode": "1000049", "stopType": "NaptanRailEntrance", "stationNaptan": "910GCHRW", "hubNaptanCode": "HUBCLW", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "2100CHRW0", "commonName": "Chorleywood Rail Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.654274, "lon": -0.518305}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "2100CHRW1", "indicator": "main entrance", "stopLetter": "entrance", "modes": [], "icsCode": "1000049", "stopType": "NaptanRailEntrance", "stationNaptan": "910GCHRW", "hubNaptanCode": "HUBCLW", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "2100CHRW1", "commonName": "Chorleywood Rail Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.654151, "lon": -0.51854}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9100CHRW1", "modes": [], "icsCode": "1000049", "stopType": "NaptanRailAccessArea", "stationNaptan": "910GCHRW", "hubNaptanCode": "HUBCLW", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "9100CHRW1", "commonName": "Chorleywood Rail Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 0.0, "lon": 0.0}], "lat": 51.654249, "lon": -0.51832}], "lat": 51.654249, "lon": -0.518312}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "HUBCST", "modes": ["national-rail", "bus", "tube"], "icsCode": "1000040", "stopType": "TransportInterchange", "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"}, {"$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": "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": "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": "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": "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": "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": "133", "name": "133", "uri": "/Line/133", "type": "Line", "crowding": {"$type": "Tfl.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"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490000040A", "stationAtcoCode": "490G00040E", "lineIdentifier": ["n199", "17", "15", "n15"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "910GCANONST", "lineIdentifier": ["southeastern"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490000040B", "stationAtcoCode": "490G00040E", "lineIdentifier": ["17", "15", "n21", "133", "n199", "n15"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["circle", "district"]}, {"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "bus", "lineIdentifier": ["n199", "17", "15", "n15", "n21", "133"]}, {"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "national-rail", "lineIdentifier": ["southeastern"]}], "status": true, "id": "HUBCST", "commonName": "Cannon Street", "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": "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": "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": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_101"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_136"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_276"}, {"$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_427"}, {"$type": "Tfl.Api.Presentation.Entities.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": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5921"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5907"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5901"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5918"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5919"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_579"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_587"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, 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": "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": "Photo 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": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "910GCANONST", "modes": ["national-rail"], "icsCode": "1000337", "stopType": "NaptanRailStation", "stationNaptan": "910GCANONST", "hubNaptanCode": "HUBCST", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "910GCANONST", "commonName": "London Cannon Street Rail Station", "placeType": "StopPoint", "additionalProperties": [], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "4900CANONST0", "indicator": "Entrance 2", "stopLetter": "2", "modes": [], "icsCode": "1000337", "stopType": "NaptanRailEntrance", "stationNaptan": "910GCANONST", "hubNaptanCode": "HUBCST", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "4900CANONST0", "commonName": "London Cannon Street Rail Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.511528, "lon": -0.089927}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "4900CANONST1", "indicator": "Entrance 1", "stopLetter": "1", "modes": [], "icsCode": "1000337", "stopType": "NaptanRailEntrance", "stationNaptan": "910GCANONST", "hubNaptanCode": "HUBCST", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "4900CANONST1", "commonName": "London Cannon Street Rail Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.511627, "lon": -0.090499}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9100CANONST0", "modes": [], "icsCode": "1000337", "stopType": "NaptanRailAccessArea", "stationNaptan": "910GCANONST", "hubNaptanCode": "HUBCST", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "9100CANONST0", "commonName": "Cannon Street Rail Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 0.0, "lon": 0.0}], "lat": 51.511382, "lon": -0.090293}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "940GZZLUCST", "modes": ["tube"], "icsCode": "1000040", "stopType": "NaptanMetroStation", "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": "940GZZLUCST", "commonName": "Cannon Street 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": "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": "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": "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": "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": "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": "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": "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"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_101"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_136"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_276"}, {"$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_427"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_579"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_587"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5907"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5901"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5897"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5899"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5918"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5919"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5921"}], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490G00040E", "modes": ["bus"], "icsCode": "1000040", "stopType": "NaptanOnstreetBusCoachStopCluster", "stationNaptan": "490G00040E", "hubNaptanCode": "HUBCST", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490G00040E", "commonName": "Cannon Street Station", "placeType": "StopPoint", "additionalProperties": [], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000040A", "indicator": "Stop MA", "stopLetter": "MA", "modes": ["bus"], "icsCode": "1000040", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00040E", "hubNaptanCode": "HUBCST", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000040A", "commonName": "Cannon Street Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.511345, "lon": -0.089185}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000040B", "indicator": "Stop MB", "stopLetter": "MB", "modes": ["bus"], "icsCode": "1000040", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00040E", "hubNaptanCode": "HUBCST", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000040B", "commonName": "Cannon Street Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.511924, "lon": -0.091063}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490004756E", "indicator": "Stop 47", "stopLetter": "47", "modes": ["bus"], "icsCode": "1000040", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00040E", "hubNaptanCode": "HUBCST", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490004756E", "commonName": "Cannon Street Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.510435, "lon": -0.090232}], "lat": 51.511924, "lon": -0.091063}, {"$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": "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": "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": "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}], "lat": 51.51151, "lon": -0.090432}], "lat": 51.511451, "lon": -0.090357}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "HUBCYP", "modes": ["national-rail", "bus", "overground"], "icsCode": "1001078", "stopType": "TransportInterchange", "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"}, {"$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": "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": "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": "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": "358", "name": "358", "uri": "/Line/358", "type": "Line", "crowding": {"$type": "Tfl.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"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490001078M", "stationAtcoCode": "490G01078M", "lineIdentifier": ["n3", "157", "249", "432", "410", "358"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490001078P", "stationAtcoCode": "490G01078M", "lineIdentifier": ["358", "n3", "249", "157", "410", "432"]}], "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": ["n3", "157", "249", "432", "410", "358"]}], "status": true, "id": "HUBCYP", "commonName": "Crystal Palace", "placeType": "StopPoint", "additionalProperties": [], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "910GCRYSTLP", "modes": ["overground", "national-rail"], "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": "Toilet", "sourceSystemKey": "LRAD", "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"}], "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": "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": "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}, {"$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": "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}], "lat": 51.418109, "lon": -0.07261}], "lat": 51.418111, "lon": -0.072605}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "HUBEAL", "modes": ["bus", "national-rail", "elizabeth-line", "tube"], "icsCode": "1000062", "stopType": "TransportInterchange", "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"}, {"$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": "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": "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": "e11", "name": "E11", "uri": "/Line/e11", "type": "Line", "crowding": {"$type": "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": "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": "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": "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": "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": "e8", "name": "E8", "uri": "/Line/e8", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "e7", "name": "E7", "uri": "/Line/e7", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "e2", "name": "E2", "uri": "/Line/e2", "type": "Line", "crowding": {"$type": "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": "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": "great-western-railway", "name": "Great Western Railway", "uri": "/Line/great-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": "e10", "name": "E10", "uri": "/Line/e10", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "e1", "name": "E1", "uri": "/Line/e1", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "e9", "name": "E9", "uri": "/Line/e9", "type": "Line", "crowding": {"$type": "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": "n65", "name": "N65", "uri": "/Line/n65", "type": "Line", "crowding": {"$type": "Tfl.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"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490000062K", "stationAtcoCode": "490G00062H", "lineIdentifier": ["207", "n83", "n207", "e11", "n7", "sl8", "483"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490007913D", "stationAtcoCode": "490G000578", "lineIdentifier": ["112", "226"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "940GZZLUEBY", "lineIdentifier": ["central"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490000062F", "stationAtcoCode": "490G00062G", "lineIdentifier": ["e8", "e7", "n7", "e2", "n11"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490000062H", "stationAtcoCode": "490G00062H", "lineIdentifier": ["483", "207", "e11", "sl8", "n207", "n83"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "910GEALINGB", "lineIdentifier": ["elizabeth", "great-western-railway"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490007913E", "stationAtcoCode": "490G000578", "lineIdentifier": ["e10", "e1", "e9"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490000062C", "stationAtcoCode": "490G00062G", "lineIdentifier": ["65", "n65"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["district", "central"]}, {"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "bus", "lineIdentifier": ["207", "n83", "n207", "e11", "n7", "sl8", "483", "112", "226", "e8", "e7", "e2", "n11", "e10", "e1", "e9", "65", "n65"]}, {"$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": ["great-western-railway"]}], "status": true, "id": "HUBEAL", "commonName": "Ealing Broadway", "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": "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": "Facility", "key": "Help Points", "sourceSystemKey": "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": "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": "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": "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": "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": "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": "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": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5543"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5741"}], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490G000578", "modes": ["bus"], "icsCode": "1007913", "stopType": "NaptanOnstreetBusCoachStopPair", "stationNaptan": "490G000578", "hubNaptanCode": "HUBEAL", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490G000578", "commonName": "Haven Grn / Ealing Broadway Stn", "placeType": "StopPoint", "additionalProperties": [], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490007913D", "indicator": "Stop D", "stopLetter": "D", "modes": ["bus"], "icsCode": "1007913", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G000578", "hubNaptanCode": "HUBEAL", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490007913D", "commonName": "Haven Grn / Ealing Broadway Stn", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.515179, "lon": -0.303425}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490007913E", "indicator": "Stop E", "stopLetter": "E", "modes": ["bus"], "icsCode": "1007913", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G000578", "hubNaptanCode": "HUBEAL", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490007913E", "commonName": "Haven Grn / Ealing Broadway Stn", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.515603, "lon": -0.304173}], "lat": 51.515179, "lon": -0.303425}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "910GEALINGB", "modes": ["national-rail", "elizabeth-line"], "icsCode": "1000062", "stopType": "NaptanRailStation", "stationNaptan": "910GEALINGB", "hubNaptanCode": "HUBEAL", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "910GEALINGB", "commonName": "Ealing Broadway Rail Station", "placeType": "StopPoint", "additionalProperties": [], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490G00062G", "modes": ["bus"], "icsCode": "1000062", "stopType": "NaptanOnstreetBusCoachStopCluster", "stationNaptan": "490G00062G", "hubNaptanCode": "HUBEAL", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490G00062G", "commonName": "Ealing Broadway Station", "placeType": "StopPoint", "additionalProperties": [], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000062C", "indicator": "Stop C", "stopLetter": "C", "modes": ["bus"], "icsCode": "1000062", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00062G", "hubNaptanCode": "HUBEAL", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000062C", "commonName": "Ealing Broadway Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.515179, "lon": -0.302215}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000062F", "indicator": "Stop F", "stopLetter": "F", "modes": ["bus"], "icsCode": "1000062", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00062G", "hubNaptanCode": "HUBEAL", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000062F", "commonName": "Ealing Broadway Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.514694, "lon": -0.302247}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000062RB", "indicator": "Stop", "modes": ["bus"], "icsCode": "1000062", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00062G", "hubNaptanCode": "HUBEAL", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000062RB", "commonName": "Ealing Broadway Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.514162, "lon": -0.300912}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000062X2", "indicator": "Stop X2", "stopLetter": "X2", "modes": ["bus"], "icsCode": "1000062", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00062G", "hubNaptanCode": "HUBEAL", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000062X2", "commonName": "Ealing Broadway Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.515476, "lon": -0.302204}], "lat": 51.515179, "lon": -0.302215}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490G00062H", "modes": ["bus"], "icsCode": "1000062", "stopType": "NaptanOnstreetBusCoachStopCluster", "stationNaptan": "490G00062H", "hubNaptanCode": "HUBEAL", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490G00062H", "commonName": "Ealing Broadway Station", "placeType": "StopPoint", "additionalProperties": [], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000062H", "indicator": "Stop H", "stopLetter": "H", "modes": ["bus"], "icsCode": "1000062", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00062H", "hubNaptanCode": "HUBEAL", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000062H", "commonName": "Ealing Broadway Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.514003, "lon": -0.302979}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000062K", "indicator": "Stop K", "stopLetter": "K", "modes": ["bus"], "icsCode": "1000062", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00062H", "hubNaptanCode": "HUBEAL", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000062K", "commonName": "Ealing Broadway Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.513966, "lon": -0.299752}], "lat": 51.513966, "lon": -0.299752}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "4900EALINGB1", "indicator": "Entrance 1", "stopLetter": "1", "modes": [], "icsCode": "1000062", "stopType": "NaptanRailEntrance", "stationNaptan": "910GEALINGB", "hubNaptanCode": "HUBEAL", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "4900EALINGB1", "commonName": "Ealing Broadway Rail Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.515008, "lon": -0.302221}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9100EALINGB0", "modes": [], "icsCode": "1000062", "stopType": "NaptanRailAccessArea", "stationNaptan": "910GEALINGB", "hubNaptanCode": "HUBEAL", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "9100EALINGB0", "commonName": "Ealing Broadway", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 0.0, "lon": 0.0}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9100EALINGB1", "modes": [], "icsCode": "1000062", "stopType": "NaptanRailAccessArea", "stationNaptan": "910GEALINGB", "hubNaptanCode": "HUBEAL", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "9100EALINGB1", "commonName": "Ealing Broadway", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 0.0, "lon": 0.0}], "lat": 51.514841, "lon": -0.301752}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "940GZZLUEBY", "modes": ["tube"], "icsCode": "1000062", "stopType": "NaptanMetroStation", "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"}, {"$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": ["district"]}, {"$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": ["district", "central"]}], "status": true, "id": "940GZZLUEBY", "commonName": "Ealing Broadway 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": "Opening Time", "key": "MonFriFrom", "sourceSystemKey": "StaticObjects", "value": "05:35"}, {"$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": "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": "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": "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": "Ealing Broadway Station,The Broadway,London,W5 2NU"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.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": "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": "Help Points", "sourceSystemKey": "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": "Opening Time", "key": "MonFriTo", "sourceSystemKey": "StaticObjects", "value": "23:25"}, {"$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": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5543"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5741"}], "children": [{"$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": "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"}, {"$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": "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": "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": "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": "Facility", "key": "Help 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": "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": "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": "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": "Car park", "sourceSystemKey": "StaticObjects", "value": "no"}], "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": "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": "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": "Other Facilities", "sourceSystemKey": "StaticObjects", "value": "routeways platform to ticket hall."}, {"$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": "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": "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": "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": "Opening Time", "key": "SatFrom", "sourceSystemKey": "StaticObjects", "value": "05:35"}, {"$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"}], "children": [], "lat": 51.5152, "lon": -0.301075}], "lat": 51.515017, "lon": -0.301457}], "lat": 51.514993, "lon": -0.302131}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "HUBEPH", "modes": ["bus", "national-rail", "tube"], "icsCode": "1000073", "stopType": "TransportInterchange", "hubNaptanCode": "HUBEPH", "lines": [{"$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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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", "naptanIdReference": "490000073N", "stationAtcoCode": "490G000645", "lineIdentifier": ["n63", "1", "n1", "363", "172", "188", "415", "63"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490000073P", "stationAtcoCode": "490G00073G", "lineIdentifier": ["n133", "415", "333", "133", "196", "155", "n155"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490000073T", "stationAtcoCode": "490G00073G", "lineIdentifier": ["40", "155", "p5", "196", "45"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490000073V", "stationAtcoCode": "490G00073G", "lineIdentifier": ["n89", "148", "n155", "n171", "n68", "468", "12", "176", "171", "68"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490000073J", "stationAtcoCode": "490G000645", "lineIdentifier": ["n53", "415", "172", "453", "363", "53", "n63", "63"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "940GZZLUEAC", "lineIdentifier": ["bakerloo"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490000073R", "stationAtcoCode": "490G00073G", "lineIdentifier": ["n171", "n343", "n68", "468", "45", "12", "68", "343", "n89", "40", "136", "171", "176", "148", "35", "p5"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490000073S", "stationAtcoCode": "490G00073G", "lineIdentifier": ["35", "133", "343", "136", "333", "415", "n133", "n343"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "940GZZLUEAC", "lineIdentifier": ["northern"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490000073M", "stationAtcoCode": "490G000645", "lineIdentifier": ["453", "n53", "53"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490000073K", "stationAtcoCode": "490G000645", "lineIdentifier": ["n1", "1", "188"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "910GELPHNAC", "lineIdentifier": ["southeastern", "thameslink"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "bus", "lineIdentifier": ["n63", "1", "n1", "363", "172", "188", "415", "63", "n133", "333", "133", "196", "155", "n155", "40", "p5", "45", "n89", "148", "n171", "n68", "468", "12", "176", "171", "68", "n53", "453", "53", "n343", "343", "136", "35"]}, {"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["bakerloo", "northern"]}, {"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "national-rail", "lineIdentifier": ["southeastern", "thameslink"]}], "status": true, "id": "HUBEPH", "commonName": "Elephant & Castle", "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": "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": "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": "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": "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": "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": "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": "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": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_92"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_152"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_156"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_317"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_324"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_409"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_549"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_725"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5558"}], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490G000645", "modes": ["bus"], "icsCode": "1009298", "stopType": "NaptanOnstreetBusCoachStopCluster", "stationNaptan": "490G000645", "hubNaptanCode": "HUBEPH", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490G000645", "commonName": "Elephant & Castle / New Kent Road", "placeType": "StopPoint", "additionalProperties": [], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000073J", "indicator": "Stop J", "stopLetter": "J", "modes": ["bus"], "icsCode": "1009298", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G000645", "hubNaptanCode": "HUBEPH", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000073J", "commonName": "Elephant & Castle / New Kent Road", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.494858, "lon": -0.097812}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000073K", "indicator": "Stop K", "stopLetter": "K", "modes": ["bus"], "icsCode": "1009298", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G000645", "hubNaptanCode": "HUBEPH", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000073K", "commonName": "Elephant & Castle / New Kent Road", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.495076, "lon": -0.099071}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000073M", "indicator": "Stop M", "stopLetter": "M", "modes": ["bus"], "icsCode": "1009298", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G000645", "hubNaptanCode": "HUBEPH", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000073M", "commonName": "Elephant & Castle / New Kent Road", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.494799, "lon": -0.09806}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000073N", "indicator": "Stop N", "stopLetter": "N", "modes": ["bus"], "icsCode": "1009298", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G000645", "hubNaptanCode": "HUBEPH", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000073N", "commonName": "Elephant & Castle / New Kent Road", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.49498, "lon": -0.099233}], "lat": 51.49498, "lon": -0.099233}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "910GELPHNAC", "modes": ["national-rail"], "icsCode": "1000326", "stopType": "NaptanRailStation", "stationNaptan": "910GELPHNAC", "hubNaptanCode": "HUBEPH", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "910GELPHNAC", "commonName": "Elephant & Castle Rail Station", "placeType": "StopPoint", "additionalProperties": [], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "4900ELPHNAC0", "indicator": "Entrance 1", "stopLetter": "1", "modes": [], "icsCode": "1000326", "stopType": "NaptanRailEntrance", "stationNaptan": "910GELPHNAC", "hubNaptanCode": "HUBEPH", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "4900ELPHNAC0", "commonName": "Elephant & Castle Rail Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.493985, "lon": -0.098367}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9100ELPHNAC0", "modes": [], "icsCode": "1000326", "stopType": "NaptanRailAccessArea", "stationNaptan": "910GELPHNAC", "hubNaptanCode": "HUBEPH", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "9100ELPHNAC0", "commonName": "Elephant & Castle Rail Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 0.0, "lon": 0.0}], "lat": 51.494029, "lon": -0.098725}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "940GZZLUEAC", "modes": ["tube"], "icsCode": "1000073", "stopType": "NaptanMetroStation", "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"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "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": ["bakerloo"]}, {"$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": ["bakerloo", "northern"]}], "status": true, "id": "940GZZLUEAC", "commonName": "Elephant & Castle Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_297"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_324"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_409"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_549"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_725"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5558"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_262"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_152"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_92"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "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": "Accessibility", "key": "LimitedCapacityLift", "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": "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": "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": "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": "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": "Facility", "key": "Toilets", "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": "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": "1+2"}, {"$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": "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": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "11"}], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490G00073G", "modes": ["bus"], "icsCode": "1000073", "stopType": "NaptanOnstreetBusCoachStopCluster", "stationNaptan": "490G00073G", "hubNaptanCode": "HUBEPH", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490G00073G", "commonName": "Elephant & Castle Station", "placeType": "StopPoint", "additionalProperties": [], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000073P", "indicator": "Stop P", "stopLetter": "P", "modes": ["bus"], "icsCode": "1000073", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00073G", "hubNaptanCode": "HUBEPH", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000073P", "commonName": "Elephant & Castle Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.494236, "lon": -0.100489}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000073R", "indicator": "Stop R", "stopLetter": "R", "modes": ["bus"], "icsCode": "1000073", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00073G", "hubNaptanCode": "HUBEPH", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000073R", "commonName": "Elephant & Castle Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.492237, "lon": -0.098137}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000073S", "indicator": "Stop S", "stopLetter": "S", "modes": ["bus"], "icsCode": "1000073", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00073G", "hubNaptanCode": "HUBEPH", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000073S", "commonName": "Elephant & Castle Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.49396, "lon": -0.100716}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000073T", "indicator": "Stop T", "stopLetter": "T", "modes": ["bus"], "icsCode": "1000073", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00073G", "hubNaptanCode": "HUBEPH", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000073T", "commonName": "Elephant & Castle Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.494213, "lon": -0.100749}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000073V", "indicator": "Stop V", "stopLetter": "V", "modes": ["bus"], "icsCode": "1000073", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00073G", "hubNaptanCode": "HUBEPH", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000073V", "commonName": "Elephant & Castle Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.494466, "lon": -0.100854}], "lat": 51.494236, "lon": -0.100489}, {"$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": "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": "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": "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": "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": "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.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": "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": "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": "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": "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": "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": "Other Facilities", "sourceSystemKey": "StaticObjects", "value": "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": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "1+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": "Help Points", "sourceSystemKey": "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": "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": "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": "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"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.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.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": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "1+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": "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": "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": "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": "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": "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": "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": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "2"}], "children": [], "lat": 51.495011, "lon": -0.100529}], "lat": 51.494536, "lon": -0.100606}], "lat": 51.494505, "lon": -0.099185}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "HUBEUS", "modes": ["bus", "overground", "national-rail", "tube"], "icsCode": "1000077", "stopType": "TransportInterchange", "hubNaptanCode": "HUBEUS", "lines": [{"$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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "london-overground", "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", "naptanIdReference": "490012867L", "stationAtcoCode": "490G00012867", "lineIdentifier": ["91", "68", "1", "n91"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "940GZZLUEUS", "lineIdentifier": ["victoria"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490012867M", "stationAtcoCode": "490G00012867", "lineIdentifier": ["68", "1", "91", "n91"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490000077C", "stationAtcoCode": "490G00077G", "lineIdentifier": ["n91", "n5", "91", "390", "n20"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490000077AP", "stationAtcoCode": "490G000652", "lineIdentifier": ["253", "n253", "68"]}, {"$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", "stationAtcoCode": "940GZZLUEUS", "lineIdentifier": ["northern"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490000077H", "stationAtcoCode": "490G00077H", "lineIdentifier": ["30", "18", "205", "n205", "73", "390", "n73"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490000077B", "stationAtcoCode": "490G00077B", "lineIdentifier": ["n253", "253", "1", "n20", "n5"]}, {"$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", "naptanIdReference": "490000077A", "stationAtcoCode": "490G000651", "lineIdentifier": ["1", "253", "n253", "n5", "n20"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490000077F", "stationAtcoCode": "490G000652", "lineIdentifier": ["n20", "n5"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490000077D", "stationAtcoCode": "490G00077G", "lineIdentifier": ["n205", "205", "30", "n73", "73"]}, {"$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": "490000077E", "stationAtcoCode": "490G00077G", "lineIdentifier": ["18", "68"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "bus", "lineIdentifier": ["91", "68", "1", "n91", "n5", "390", "n20", "253", "n253", "30", "18", "205", "n205", "73", "n73"]}, {"$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": "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": "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": "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": "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": "910GEUSTON", "lineIdentifier": ["london-overground", "avanti-west-coast", "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": "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": "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"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.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": "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"}], "children": [], "lat": 51.527639, "lon": -0.132185}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9100EUSTON0", "modes": ["national-rail", "overground"], "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": "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": "910GEUSTON", "lineIdentifier": ["london-overground", "avanti-west-coast", "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": "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": "940GZZLUEUS", "modes": ["tube"], "icsCode": "1000077", "stopType": "NaptanMetroStation", "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"}, {"$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": ["northern"]}, {"$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": ["northern", "victoria"]}], "status": true, "id": "940GZZLUEUS", "commonName": "Euston 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": "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": "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": "2"}, {"$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": "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": "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": "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": "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": "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": "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_214"}, {"$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_5896"}], "children": [{"$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": "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": "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": "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"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.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."}], "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": "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": "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": "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": "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"}], "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": "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": "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}], "lat": 51.528344, "lon": -0.1323}], "lat": 51.527365, "lon": -0.132754}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "HUBFPK", "modes": ["tube", "national-rail", "bus"], "icsCode": "1000083", "stopType": "TransportInterchange", "hubNaptanCode": "HUBFPK", "lines": [{"$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": "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": "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": "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": "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"}, {"$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": "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"}, {"$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": "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": "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": "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": "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": "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": "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": "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": "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", "naptanIdReference": "490000083G", "stationAtcoCode": "490G000516", "lineIdentifier": ["153", "n19", "19", "4"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "940GZZLUFPK", "lineIdentifier": ["piccadilly"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "940GZZLUFPK", "lineIdentifier": ["victoria"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490000083C", "stationAtcoCode": "490G00083W", "lineIdentifier": ["210"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490000083SB", "stationAtcoCode": "490G00083SB", "lineIdentifier": ["w3", "210", "w7"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490000083A", "stationAtcoCode": "490G00083W", "lineIdentifier": ["w7"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490015078L", "stationAtcoCode": "490G000858", "lineIdentifier": ["259", "29", "253", "n253", "254", "n29", "n279"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "910GFNPK", "lineIdentifier": ["great-northern", "thameslink"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490000083B", "stationAtcoCode": "490G00083W", "lineIdentifier": ["w3"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490000083R", "stationAtcoCode": "490G00083R", "lineIdentifier": ["n253", "259", "n29", "253", "29", "254", "4", "153", "n279"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490000083S", "stationAtcoCode": "490G00083S", "lineIdentifier": ["n279", "153", "4", "254", "29", "253", "n29", "259", "n253"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490000083AP", "stationAtcoCode": "490G000516", "lineIdentifier": ["n19", "106", "19", "236", "153"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490000083H", "stationAtcoCode": "490G000516", "lineIdentifier": ["106", "236"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490015078M", "stationAtcoCode": "490G000858", "lineIdentifier": ["29", "259", "254", "n253", "n279", "253", "n29"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "bus", "lineIdentifier": ["153", "n19", "19", "4", "210", "w3", "w7", "259", "29", "253", "n253", "254", "n29", "n279", "106", "236"]}, {"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["piccadilly", "victoria"]}, {"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "national-rail", "lineIdentifier": ["great-northern", "thameslink"]}], "status": true, "id": "HUBFPK", "commonName": "Finsbury Park", "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": "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": "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": "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": "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": "Opening Time", "key": "SatTo", "sourceSystemKey": "StaticObjects", "value": "22: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": "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": "Opening Time", "key": "MonFriTo", "sourceSystemKey": "StaticObjects", "value": "21: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": "Opening Time", "key": "SunFrom", "sourceSystemKey": "StaticObjects", "value": "08:15"}, {"$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": "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": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5870"}], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490G000516", "modes": ["bus"], "icsCode": "1006849", "stopType": "NaptanOnstreetBusCoachStopCluster", "stationNaptan": "490G000516", "hubNaptanCode": "HUBFPK", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490G000516", "commonName": "Finsbury Park Interchange", "placeType": "StopPoint", "additionalProperties": [], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000083AP", "indicator": "Stop AP", "stopLetter": "AP", "modes": ["bus"], "icsCode": "1006849", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G000516", "hubNaptanCode": "HUBFPK", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000083AP", "commonName": "Finsbury Park Interchange", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.564246, "lon": -0.10571}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000083G", "indicator": "Stop G", "stopLetter": "G", "modes": ["bus"], "icsCode": "1006849", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G000516", "hubNaptanCode": "HUBFPK", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000083G", "commonName": "Finsbury Park Interchange", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.564686, "lon": -0.105692}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000083H", "indicator": "Stop H", "stopLetter": "H", "modes": ["bus"], "icsCode": "1006849", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G000516", "hubNaptanCode": "HUBFPK", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000083H", "commonName": "Finsbury Park Interchange", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.564838, "lon": -0.105613}], "lat": 51.564246, "lon": -0.10571}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490G000858", "modes": ["bus"], "icsCode": "1015078", "stopType": "NaptanOnstreetBusCoachStopPair", "stationNaptan": "490G000858", "hubNaptanCode": "HUBFPK", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490G000858", "commonName": "Finsbury Park / Blackstock Road", "placeType": "StopPoint", "additionalProperties": [], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490015078L", "indicator": "Stop L", "stopLetter": "L", "modes": ["bus"], "icsCode": "1015078", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G000858", "hubNaptanCode": "HUBFPK", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490015078L", "commonName": "Finsbury Park / Blackstock Road", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.565469, "lon": -0.103481}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490015078M", "indicator": "Stop M", "stopLetter": "M", "modes": ["bus"], "icsCode": "1015078", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G000858", "hubNaptanCode": "HUBFPK", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490015078M", "commonName": "Finsbury Park / Blackstock Road", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.565249, "lon": -0.103244}], "lat": 51.565249, "lon": -0.103244}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "910GFNPK", "modes": ["national-rail"], "icsCode": "1000334", "stopType": "NaptanRailStation", "stationNaptan": "910GFNPK", "hubNaptanCode": "HUBFPK", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "910GFNPK", "commonName": "Finsbury Park Rail Station", "placeType": "StopPoint", "additionalProperties": [], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "4900FNPK", "indicator": "Entrance 1", "stopLetter": "1", "modes": [], "icsCode": "1000334", "stopType": "NaptanRailEntrance", "stationNaptan": "910GFNPK", "hubNaptanCode": "HUBFPK", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "4900FNPK", "commonName": "Finsbury Park Rail Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.564669, "lon": -0.105736}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9100FNPK1", "modes": [], "icsCode": "1000334", "stopType": "NaptanRailAccessArea", "stationNaptan": "910GFNPK", "hubNaptanCode": "HUBFPK", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "9100FNPK1", "commonName": "Finsbury Park Rail Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 0.0, "lon": 0.0}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9100FNPK0", "modes": [], "icsCode": "1000334", "stopType": "NaptanRailAccessArea", "stationNaptan": "910GFNPK", "hubNaptanCode": "HUBFPK", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "9100FNPK0", "commonName": "Finsbury Park Rail Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 0.0, "lon": 0.0}], "lat": 51.564302, "lon": -0.106285}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "940GZZLUFPK", "modes": ["tube"], "icsCode": "1000083", "stopType": "NaptanMetroStation", "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"}, {"$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": ["victoria"]}, {"$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": ["victoria", "piccadilly"]}], "status": true, "id": "940GZZLUFPK", "commonName": "Finsbury Park 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": "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": "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": "Opening Time", "key": "MonFriTo", "sourceSystemKey": "StaticObjects", "value": "21: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": "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": "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": "MonFriFrom", "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": "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": "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": "SunTo", "sourceSystemKey": "StaticObjects", "value": "22: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": "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": "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": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5870"}], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490G00083R", "modes": ["bus"], "icsCode": "1000083", "stopType": "NaptanOnstreetBusCoachStopCluster", "stationNaptan": "490G00083R", "hubNaptanCode": "HUBFPK", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490G00083R", "commonName": "Finsbury Park Station", "placeType": "StopPoint", "additionalProperties": [], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000083R", "indicator": "Stop R", "stopLetter": "R", "modes": ["bus"], "icsCode": "1000083", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00083R", "hubNaptanCode": "HUBFPK", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000083R", "commonName": "Finsbury Park Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.564003, "lon": -0.10624}], "lat": 51.564003, "lon": -0.10624}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490G00083S", "modes": ["bus"], "icsCode": "1000083", "stopType": "NaptanOnstreetBusCoachStopCluster", "stationNaptan": "490G00083S", "hubNaptanCode": "HUBFPK", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490G00083S", "commonName": "Finsbury Park Station", "placeType": "StopPoint", "additionalProperties": [], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000083S", "indicator": "Stop S", "stopLetter": "S", "modes": ["bus"], "icsCode": "1000083", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00083S", "hubNaptanCode": "HUBFPK", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000083S", "commonName": "Finsbury Park Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.563744, "lon": -0.10638}], "lat": 51.563744, "lon": -0.10638}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490G00083SB", "modes": ["bus"], "icsCode": "1000083", "stopType": "NaptanOnstreetBusCoachStopCluster", "stationNaptan": "490G00083SB", "hubNaptanCode": "HUBFPK", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490G00083SB", "commonName": "Finsbury Park Station", "placeType": "StopPoint", "additionalProperties": [], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000083E", "indicator": "Stop D", "stopLetter": "D", "modes": ["bus"], "icsCode": "1000083", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00083SB", "hubNaptanCode": "HUBFPK", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000083E", "commonName": "Finsbury Park Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.566033, "lon": -0.107771}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000083SB", "indicator": "Stop", "modes": ["bus"], "icsCode": "1000083", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00083SB", "hubNaptanCode": "HUBFPK", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000083SB", "commonName": "Finsbury Park Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.56556, "lon": -0.107993}], "lat": 51.56556, "lon": -0.107993}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490G00083W", "modes": ["bus"], "icsCode": "1000083", "stopType": "NaptanOnstreetBusCoachStopCluster", "stationNaptan": "490G00083W", "hubNaptanCode": "HUBFPK", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490G00083W", "commonName": "Finsbury Park Station", "placeType": "StopPoint", "additionalProperties": [], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000083A", "indicator": "Stop A", "stopLetter": "A", "modes": ["bus"], "icsCode": "1000083", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00083W", "hubNaptanCode": "HUBFPK", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000083A", "commonName": "Finsbury Park Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.565643, "lon": -0.107008}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000083B", "indicator": "Stop B", "stopLetter": "B", "modes": ["bus"], "icsCode": "1000083", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00083W", "hubNaptanCode": "HUBFPK", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000083B", "commonName": "Finsbury Park Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.565706, "lon": -0.107049}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000083C", "indicator": "Stop C", "stopLetter": "C", "modes": ["bus"], "icsCode": "1000083", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00083W", "hubNaptanCode": "HUBFPK", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000083C", "commonName": "Finsbury Park Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.565661, "lon": -0.107022}], "lat": 51.565706, "lon": -0.107049}, {"$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": "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"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.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.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": "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": "SunTo", "sourceSystemKey": "StaticObjects", "value": "22:00"}, {"$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": "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"}], "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": "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": "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": "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"}, {"$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"}], "children": [], "lat": 51.56464, "lon": -0.107281}, {"$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": "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"}, {"$type": "Tfl.Api.Presentation.Entities.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"}], "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": "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": "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": "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": "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": "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": "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": "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": "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": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}], "children": [], "lat": 51.564428, "lon": -0.105746}], "lat": 51.564158, "lon": -0.106825}], "lat": 51.564778, "lon": -0.105876}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "HUBGFD", "modes": ["tube", "national-rail", "bus"], "icsCode": "1000092", "stopType": "TransportInterchange", "hubNaptanCode": "HUBGFD", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "105", "name": "105", "uri": "/Line/105", "type": "Line", "crowding": {"$type": "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": "395", "name": "395", "uri": "/Line/395", "type": "Line", "crowding": {"$type": "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": "great-western-railway", "name": "Great Western Railway", "uri": "/Line/great-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", "naptanIdReference": "490015198B", "stationAtcoCode": "490G00092D", "lineIdentifier": ["105", "92"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490013515KK", "stationAtcoCode": "490G000790", "lineIdentifier": ["395"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "940GZZLUGFD", "lineIdentifier": ["central"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490000092W1", "stationAtcoCode": "490G00092D", "lineIdentifier": ["105"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "910GGFORD", "lineIdentifier": ["great-western-railway"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "bus", "lineIdentifier": ["105", "92", "395"]}, {"$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": "national-rail", "lineIdentifier": ["great-western-railway"]}], "status": true, "id": "HUBGFD", "commonName": "Greenford", "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": "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": "Help 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": "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"}, {"$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": "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": "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"}, {"$type": "Tfl.Api.Presentation.Entities.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": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "CarParks_800444"}], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490G000790", "modes": ["bus"], "icsCode": "1013515", "stopType": "NaptanOnstreetBusCoachStopPair", "stationNaptan": "490G000790", "hubNaptanCode": "HUBGFD", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490G000790", "commonName": "Greenford Station / Rockware Avenue", "placeType": "StopPoint", "additionalProperties": [], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490013515KK", "indicator": "Stop KK", "stopLetter": "KK", "modes": ["bus"], "icsCode": "1013515", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G000790", "hubNaptanCode": "HUBGFD", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490013515KK", "commonName": "Greenford Station / Rockware Avenue", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.543197, "lon": -0.345474}], "lat": 51.543197, "lon": -0.345474}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "910GGFORD", "modes": ["national-rail"], "icsCode": "1000092", "stopType": "NaptanRailStation", "stationNaptan": "910GGFORD", "hubNaptanCode": "HUBGFD", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "910GGFORD", "commonName": "Greenford Rail Station", "placeType": "StopPoint", "additionalProperties": [], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490G00092D", "modes": ["bus"], "icsCode": "1000092", "stopType": "NaptanOnstreetBusCoachStopCluster", "stationNaptan": "490G00092D", "hubNaptanCode": "HUBGFD", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490G00092D", "commonName": "Greenford Station", "placeType": "StopPoint", "additionalProperties": [], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000092W1", "indicator": "Stop Z1", "stopLetter": "Z1", "modes": ["bus"], "icsCode": "1000092", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00092D", "hubNaptanCode": "HUBGFD", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000092W1", "commonName": "Greenford Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.542675, "lon": -0.344844}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490015198B", "indicator": "Stop MM", "stopLetter": "MM", "modes": ["bus"], "icsCode": "1000092", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00092D", "hubNaptanCode": "HUBGFD", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490015198B", "commonName": "Greenford Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.542011, "lon": -0.346166}], "lat": 51.542675, "lon": -0.344844}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "4900GFORD1", "indicator": "Entrance 1", "stopLetter": "1", "modes": [], "icsCode": "1000092", "stopType": "NaptanRailEntrance", "stationNaptan": "910GGFORD", "hubNaptanCode": "HUBGFD", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "4900GFORD1", "commonName": "Greenford Rail Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.542378, "lon": -0.346066}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9100GFORD0", "modes": [], "icsCode": "1000092", "stopType": "NaptanRailAccessArea", "stationNaptan": "910GGFORD", "hubNaptanCode": "HUBGFD", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "9100GFORD0", "commonName": "Greenford", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 0.0, "lon": 0.0}], "lat": 51.542331, "lon": -0.345837}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "940GZZLUGFD", "modes": ["tube"], "icsCode": "1000092", "stopType": "NaptanMetroStation", "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": "940GZZLUGFD", "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": "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": "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": "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": "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": "4"}, {"$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": "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": "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": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "CarParks_800444"}], "children": [{"$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": "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": "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"}], "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}], "lat": 51.542424, "lon": -0.34605}], "lat": 51.542657, "lon": -0.345789}, {"$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": "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": "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": "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": "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": "london-overground", "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"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490000094B", "stationAtcoCode": "490G00094B", "lineIdentifier": ["440", "267", "110", "237", "n9", "h91"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "910GGNRSBRY", "lineIdentifier": ["london-overground"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490000094A", "stationAtcoCode": "490G00094B", "lineIdentifier": ["110", "237", "267", "h91", "n9"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "940GZZLUGBY", "lineIdentifier": ["district"]}, {"$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", "naptanIdReference": "490000094C", "stationAtcoCode": "490G00094C", "lineIdentifier": ["440"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "bus", "lineIdentifier": ["440", "267", "110", "237", "n9", "h91"]}, {"$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"]}], "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": "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": "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": "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": "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"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "yes"}], "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": "940GZZLUGBY", "modes": ["tube"], "icsCode": "1000094", "stopType": "NaptanMetroStation", "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": "940GZZLUGBY", "commonName": "Gunnersbury 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 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": "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": "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": "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": "Waiting Room", "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": "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": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5551"}], "children": [{"$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": "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": "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": "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"}, {"$type": "Tfl.Api.Presentation.Entities.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": "3"}], "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": "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": "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"}, {"$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": "Gates", "sourceSystemKey": "StaticObjects", "value": "10"}], "children": [], "lat": 51.491465, "lon": -0.275525}], "lat": 51.491803, "lon": -0.275267}], "lat": 51.491745, "lon": -0.275276}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "HUBH13", "modes": ["tube", "bus", "national-rail", "elizabeth-line", "plane"], "icsCode": "1000105", "stopType": "TransportInterchange", "hubNaptanCode": "HUBH13", "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": "heathrow-express", "name": "Heathrow Express", "uri": "/Line/heathrow-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": "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": "sl9", "name": "SL9", "uri": "/Line/sl9", "type": "Line", "crowding": {"$type": "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": "a10", "name": "A10", "uri": "/Line/a10", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "278", "name": "278", "uri": "/Line/278", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "285", "name": "285", "uri": "/Line/285", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "111", "name": "111", "uri": "/Line/111", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "u3", "name": "U3", "uri": "/Line/u3", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "105", "name": "105", "uri": "/Line/105", "type": "Line", "crowding": {"$type": "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": "n9", "name": "N9", "uri": "/Line/n9", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "910GHTRWAPT", "lineIdentifier": ["elizabeth", "heathrow-express"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "940GZZLUHRC", "lineIdentifier": ["piccadilly"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490008016S", "stationAtcoCode": "910GHTRWCBS", "lineIdentifier": ["sl9", "sl7", "a10", "278", "285", "111", "u3", "105", "n140"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "4900801618", "stationAtcoCode": "910GHTRWCBS", "lineIdentifier": ["u3", "a10", "n9"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "4900801619", "stationAtcoCode": "910GHTRWCBS", "lineIdentifier": ["n9", "sl9", "sl7", "105", "278", "111", "285", "n140"]}], "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": ["heathrow-express"]}, {"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["piccadilly"]}, {"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "bus", "lineIdentifier": ["sl9", "sl7", "a10", "278", "285", "111", "u3", "105", "n140", "n9"]}], "status": true, "id": "HUBH13", "commonName": "Heathrow Terminals 2 & 3", "placeType": "StopPoint", "additionalProperties": [{"$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": "Help Points", "sourceSystemKey": "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": "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": "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": "Payphones", "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": "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": "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": "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": "none"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5934"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5932"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5933"}], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "910GHTRWAPT", "modes": ["national-rail", "elizabeth-line"], "icsCode": "1001147", "stopType": "NaptanRailStation", "stationNaptan": "910GHTRWAPT", "hubNaptanCode": "HUBH13", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "910GHTRWAPT", "commonName": "Heathrow Terminals 2 & 3 Rail Station", "placeType": "StopPoint", "additionalProperties": [], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "4900HTRWAPT1", "indicator": "Entrance 1", "stopLetter": "1", "modes": [], "icsCode": "1001147", "stopType": "NaptanRailEntrance", "stationNaptan": "910GHTRWAPT", "hubNaptanCode": "HUBH13", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "4900HTRWAPT1", "commonName": "Heathrow Airport Terminals 2 & 3 Rail Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.470976, "lon": -0.458033}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "4900HTRWAPT2", "indicator": "Entrance 2", "stopLetter": "2", "modes": [], "icsCode": "1001147", "stopType": "NaptanRailEntrance", "stationNaptan": "910GHTRWAPT", "hubNaptanCode": "HUBH13", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "4900HTRWAPT2", "commonName": "Heathrow Airport Terminals 2 & 3 Rail Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.473393, "lon": -0.45176}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9100HTRWAPT0", "modes": [], "icsCode": "1001147", "stopType": "NaptanRailAccessArea", "stationNaptan": "910GHTRWAPT", "hubNaptanCode": "HUBH13", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "9100HTRWAPT0", "commonName": "Heathrow Terminals 2 & 3 Rail Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 0.0, "lon": 0.0}], "lat": 51.470976, "lon": -0.458033}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "910GHTRWCBS", "modes": ["bus"], "icsCode": "1008016", "stopType": "NaptanRailStation", "stationNaptan": "910GHTRWCBS", "hubNaptanCode": "HUBH13", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "910GHTRWCBS", "commonName": "Heathrow Central Bus Stn (Rail-Air)", "placeType": "StopPoint", "additionalProperties": [], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "4900080161", "indicator": "Stand 1", "stopLetter": "1", "modes": ["bus"], "icsCode": "1008016", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "910GHTRWCBS", "hubNaptanCode": "HUBH13", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "4900080161", "commonName": "Heathrow Central Bus Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.47093, "lon": -0.452448}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "49000801611", "indicator": "Stand 11", "stopLetter": "11", "modes": ["bus"], "icsCode": "1008016", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "910GHTRWCBS", "hubNaptanCode": "HUBH13", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "49000801611", "commonName": ".Heathrow Central", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.471089, "lon": -0.453638}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "49000801613", "indicator": "Stand 13", "stopLetter": "13", "modes": ["bus"], "icsCode": "1008016", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "910GHTRWCBS", "hubNaptanCode": "HUBH13", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "49000801613", "commonName": "Heathrow Central Bus Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.471092, "lon": -0.453825}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "49000801614", "indicator": "Stand 14", "stopLetter": "14", "modes": ["bus"], "icsCode": "1008016", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "910GHTRWCBS", "hubNaptanCode": "HUBH13", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "49000801614", "commonName": ".Heathrow Central", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.471102, "lon": -0.45394}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "49000801615", "indicator": "Stand 15", "stopLetter": "15", "modes": ["bus"], "icsCode": "1008016", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "910GHTRWCBS", "hubNaptanCode": "HUBH13", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "49000801615", "commonName": "Heathrow Central Bus Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.471104, "lon": -0.454055}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "49000801616", "indicator": "Stand 16", "stopLetter": "16", "modes": ["bus"], "icsCode": "1008016", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "910GHTRWCBS", "hubNaptanCode": "HUBH13", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "49000801616", "commonName": ".Heathrow Central", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.471677, "lon": -0.452552}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "4900080162", "indicator": "Stand 2", "stopLetter": "2", "modes": ["bus"], "icsCode": "1008016", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "910GHTRWCBS", "hubNaptanCode": "HUBH13", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "4900080162", "commonName": "Heathrow Central Bus Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.470953, "lon": -0.452836}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "4900080164", "indicator": "Stand 4", "stopLetter": "4", "modes": ["bus"], "icsCode": "1008016", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "910GHTRWCBS", "hubNaptanCode": "HUBH13", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "4900080164", "commonName": ".Heathrow Central", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.470969, "lon": -0.453426}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "4900080165", "indicator": "Stand 5", "stopLetter": "5", "modes": ["bus"], "icsCode": "1008016", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "910GHTRWCBS", "hubNaptanCode": "HUBH13", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "4900080165", "commonName": "Heathrow Central Bus Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.470957, "lon": -0.453844}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "4900080166", "indicator": "Stand 6", "stopLetter": "6", "modes": ["bus"], "icsCode": "1008016", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "910GHTRWCBS", "hubNaptanCode": "HUBH13", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "4900080166", "commonName": ".Heathrow Central", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.471082, "lon": -0.453105}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "4900080168", "indicator": "Stand 8", "stopLetter": "8", "modes": ["bus"], "icsCode": "1008016", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "910GHTRWCBS", "hubNaptanCode": "HUBH13", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "4900080168", "commonName": "Heathrow Central Bus Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.471085, "lon": -0.453292}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "4900080169", "indicator": "Stand 9", "stopLetter": "9", "modes": ["bus"], "icsCode": "1008016", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "910GHTRWCBS", "hubNaptanCode": "HUBH13", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "4900080169", "commonName": ".Heathrow Central", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.471087, "lon": -0.453494}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490008016N2", "indicator": "Stand", "modes": ["bus"], "icsCode": "1008016", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "910GHTRWCBS", "hubNaptanCode": "HUBH13", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490008016N2", "commonName": ".Heathrow Central", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.470838, "lon": -0.452307}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490008016N3", "indicator": "Stand", "modes": ["bus"], "icsCode": "1008016", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "910GHTRWCBS", "hubNaptanCode": "HUBH13", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490008016N3", "commonName": "Heathrow Central", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.470885, "lon": -0.453832}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490008016S", "indicator": "Stand", "modes": ["bus"], "icsCode": "1008016", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "910GHTRWCBS", "hubNaptanCode": "HUBH13", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490008016S", "commonName": "Heathrow Central Bus Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.471543, "lon": -0.452586}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "4900801618", "indicator": "Stand 18", "stopLetter": "18", "modes": ["bus"], "icsCode": "1008016", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "910GHTRWCBS", "hubNaptanCode": "HUBH13", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "4900801618", "commonName": "Heathrow Central Bus Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.471353, "lon": -0.453197}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "4900801619", "indicator": "Stand 19", "stopLetter": "19", "modes": ["bus"], "icsCode": "1008016", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "910GHTRWCBS", "hubNaptanCode": "HUBH13", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "4900801619", "commonName": "Heathrow Central Bus Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.471365, "lon": -0.453456}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "4900801620", "indicator": "Stand 20", "stopLetter": "20", "modes": ["bus"], "icsCode": "1008016", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "910GHTRWCBS", "hubNaptanCode": "HUBH13", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "4900801620", "commonName": "Heathrow Central Bus Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.471369, "lon": -0.4537}], "lat": 51.471095, "lon": -0.453306}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "940GZZLUHRC", "modes": ["tube"], "icsCode": "1000105", "stopType": "NaptanMetroStation", "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": "940GZZLUHRC", "commonName": "Heathrow Terminals 2 & 3 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": "Euro Cash Machines", "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"}, {"$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": "WiFi", "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": "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": "Help Points", "sourceSystemKey": "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": "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": "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": "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": "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 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"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5934"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5932"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5933"}], "children": [{"$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": "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"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.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"}], "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": "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": "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": "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": "Help Points", "sourceSystemKey": "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": "12"}, {"$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": "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": "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"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Toilets", "sourceSystemKey": "StaticObjects", "value": "no"}], "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": "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": "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"}, {"$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"}], "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}], "lat": 51.471235, "lon": -0.452265}], "lat": 51.471618, "lon": -0.454037}, {"$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": "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": "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": "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": "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": "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": "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": "london-overground", "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": "490000100N", "stationAtcoCode": "490G00100N", "lineIdentifier": ["187", "226", "224", "487", "228", "260"]}, {"$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", "naptanIdReference": "490000100S", "stationAtcoCode": "490G00100N", "lineIdentifier": ["226", "224", "187", "260", "487", "228"]}, {"$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": "bus", "lineIdentifier": ["187", "226", "224", "487", "228", "260"]}, {"$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": "HUBHDN", "commonName": "Harlesden", "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": "Harlesden,London Overground Ltd,Acton Lane,LONDON,NW10 7AA"}, {"$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": "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": "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": "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": "Bridge", "sourceSystemKey": "StaticObjects", "value": "yes"}], "children": [{"$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": "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": "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": "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": "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": "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": "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": [{"$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": "940GZZLUHSN", "modes": ["tube"], "icsCode": "1000100", "stopType": "NaptanMetroStation", "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": "940GZZLUHSN", "commonName": "Harlesden 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 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": "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": "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": "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": "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": "Photo 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": "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": "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": "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"}], "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}], "lat": 51.53631, "lon": -0.257883}], "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": "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": "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": "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": "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": "london-overground", "name": "London Overground", "uri": "/Line/london-overground", "type": "Line", "crowding": {"$type": "Tfl.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"]}, {"$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", "naptanIdReference": "490000108A", "stationAtcoCode": "490G00108B", "lineIdentifier": ["43", "393", "21", "263", "n41", "n271"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490000108B", "stationAtcoCode": "490G00108B", "lineIdentifier": ["393", "43", "21", "263", "n271", "n41"]}, {"$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": "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": "bus", "lineIdentifier": ["43", "393", "21", "263", "n41", "n271"]}, {"$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": "910GHGHI", "modes": ["national-rail", "overground"], "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": "940GZZLUHAI", "modes": ["tube"], "icsCode": "1000108", "stopType": "NaptanMetroStation", "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": "940GZZLUHAI", "commonName": "Highbury & Islington 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": "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": "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": "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": "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": "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": "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": "Help Points", "sourceSystemKey": "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"}], "children": [{"$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": "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": "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"}], "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": "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": "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": "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": "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}], "lat": 51.54635, "lon": -0.103324}], "lat": 51.546269, "lon": -0.103538}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "HUBHMS", "modes": ["bus", "tube"], "icsCode": "1000096", "stopType": "TransportInterchange", "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"}, {"$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": "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": "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": "533", "name": "533", "uri": "/Line/533", "type": "Line", "crowding": {"$type": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "27", "name": "27", "uri": "/Line/27", "type": "Line", "crowding": {"$type": "Tfl.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"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490007705A", "stationAtcoCode": "490G000565", "lineIdentifier": ["h91"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "940GZZLUHSD", "lineIdentifier": ["district"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490007705K", "stationAtcoCode": "490G000565", "lineIdentifier": ["n72", "533", "n33", "72"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490007705Z3", "stationAtcoCode": "490G000565", "lineIdentifier": ["283"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490007705F", "stationAtcoCode": "490G000565", "lineIdentifier": ["218", "267", "n27", "n266", "9", "n97", "211"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490007705J", "stationAtcoCode": "490G000565", "lineIdentifier": ["110"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "940GZZLUHSC", "lineIdentifier": ["circle", "hammersmith-city"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490007705D", "stationAtcoCode": "490G000565", "lineIdentifier": ["220", "190", "295", "211", "n11", "n97"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490007705G", "stationAtcoCode": "490G000565", "lineIdentifier": ["n27", "n9", "306", "27", "9"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490007705B", "stationAtcoCode": "490G000565", "lineIdentifier": ["72", "295", "220", "283", "n72"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490007705C", "stationAtcoCode": "490G000565", "lineIdentifier": ["n9", "n11", "h91", "110", "190", "218", "267", "27", "n266", "306"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490000097T", "stationAtcoCode": "490G00097T", "lineIdentifier": ["h91", "n11", "n9", "190", "n266", "110", "27", "218", "267", "306"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490007705Z2", "stationAtcoCode": "490G000565", "lineIdentifier": ["533", "n33"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["piccadilly", "district", "circle", "hammersmith-city"]}, {"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "bus", "lineIdentifier": ["h91", "n72", "533", "n33", "72", "283", "218", "267", "n27", "n266", "9", "n97", "211", "110", "220", "190", "295", "n11", "n9", "306", "27"]}], "status": true, "id": "HUBHMS", "commonName": "Hammersmith", "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": "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": "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": "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": "Gates", "sourceSystemKey": "StaticObjects", "value": "24"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.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": "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": "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": "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": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_595"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_598"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_686"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_730"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_775"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_4595"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5396"}], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490G000565", "modes": ["bus"], "icsCode": "1007705", "stopType": "NaptanBusCoachStation", "stationNaptan": "490G000565", "hubNaptanCode": "HUBHMS", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490G000565", "commonName": "Hammersmith Bus Station", "placeType": "StopPoint", "additionalProperties": [], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490007705A", "indicator": "Stop Z1", "stopLetter": "Z1", "modes": ["bus"], "icsCode": "1007705", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G000565", "hubNaptanCode": "HUBHMS", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490007705A", "commonName": "Hammersmith Bus Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.492591, "lon": -0.224502}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490007705B", "indicator": "Stop A", "stopLetter": "A", "modes": ["bus"], "icsCode": "1007705", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G000565", "hubNaptanCode": "HUBHMS", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490007705B", "commonName": "Hammersmith Bus Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.492462, "lon": -0.224348}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490007705C", "indicator": "Stop B", "stopLetter": "B", "modes": ["bus"], "icsCode": "1007705", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G000565", "hubNaptanCode": "HUBHMS", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490007705C", "commonName": "Hammersmith Bus Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.492276, "lon": -0.22388}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490007705D", "indicator": "Stop C", "stopLetter": "C", "modes": ["bus"], "icsCode": "1007705", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G000565", "hubNaptanCode": "HUBHMS", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490007705D", "commonName": "Hammersmith Bus Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.491959, "lon": -0.223749}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490007705E", "indicator": "Stop D", "stopLetter": "D", "modes": ["bus"], "icsCode": "1007705", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G000565", "hubNaptanCode": "HUBHMS", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490007705E", "commonName": "Hammersmith Bus Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.491837, "lon": -0.223393}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490007705F", "indicator": "Stop E", "stopLetter": "E", "modes": ["bus"], "icsCode": "1007705", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G000565", "hubNaptanCode": "HUBHMS", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490007705F", "commonName": "Hammersmith Bus Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.492162, "lon": -0.223525}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490007705G", "indicator": "Stop F", "stopLetter": "F", "modes": ["bus"], "icsCode": "1007705", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G000565", "hubNaptanCode": "HUBHMS", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490007705G", "commonName": "Hammersmith Bus Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.492358, "lon": -0.223978}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490007705H1", "indicator": "Stop H", "stopLetter": "H", "modes": ["bus"], "icsCode": "1007705", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G000565", "hubNaptanCode": "HUBHMS", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490007705H1", "commonName": "Hammersmith Bus Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.492546, "lon": -0.222732}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490007705J", "indicator": "Stop J", "stopLetter": "J", "modes": ["bus"], "icsCode": "1007705", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G000565", "hubNaptanCode": "HUBHMS", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490007705J", "commonName": "Hammersmith Bus Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.492828, "lon": -0.222937}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490007705K", "indicator": "Stop K", "stopLetter": "K", "modes": ["bus"], "icsCode": "1007705", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G000565", "hubNaptanCode": "HUBHMS", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490007705K", "commonName": "Hammersmith Bus Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.492423, "lon": -0.222909}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490007705L", "indicator": "Stop L", "stopLetter": "L", "modes": ["bus"], "icsCode": "1007705", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G000565", "hubNaptanCode": "HUBHMS", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490007705L", "commonName": "Hammersmith Bus Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.492388, "lon": -0.223012}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490007705Z2", "indicator": "Stop Z2", "stopLetter": "Z2", "modes": ["bus"], "icsCode": "1007705", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G000565", "hubNaptanCode": "HUBHMS", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490007705Z2", "commonName": "Hammersmith Bus Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.492669, "lon": -0.223145}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490007705Z3", "indicator": "Stop Z3", "stopLetter": "Z3", "modes": ["bus"], "icsCode": "1007705", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G000565", "hubNaptanCode": "HUBHMS", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490007705Z3", "commonName": "Hammersmith Bus Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.492634, "lon": -0.223218}], "lat": 51.492462, "lon": -0.224348}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "940GZZLUHSC", "modes": ["tube"], "icsCode": "1000097", "stopType": "NaptanMetroStation", "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": "940GZZLUHSC", "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": "Gates", "sourceSystemKey": "StaticObjects", "value": "10"}, {"$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": "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": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_598"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_730"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_4595"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_775"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5396"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_595"}, {"$type": "Tfl.Api.Presentation.Entities.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": "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": "BlueBadgeCarParkSpaces", "sourceSystemKey": "LRAD", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.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": "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": "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": "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": "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"}], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490G00097T", "modes": ["bus"], "icsCode": "1000097", "stopType": "NaptanOnstreetBusCoachStopCluster", "stationNaptan": "490G00097T", "hubNaptanCode": "HUBHMS", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490G00097T", "commonName": "Hammersmith Stn / H&c and Circle Lines", "placeType": "StopPoint", "additionalProperties": [], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000097T", "indicator": "Stop W", "stopLetter": "W", "modes": ["bus"], "icsCode": "1000097", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00097T", "hubNaptanCode": "HUBHMS", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000097T", "commonName": "Hammersmith Stn / H&c and Circle Lines", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.493339, "lon": -0.225208}], "lat": 51.493339, "lon": -0.225208}, {"$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": "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": "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": "940GZZLUHSC", "lineIdentifier": ["hammersmith-city", "circle"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["hammersmith-city", "circle"]}], "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": "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": "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": "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": "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": "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": "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"}], "children": [], "lat": 51.493843, "lon": -0.22513}], "lat": 51.493307, "lon": -0.224301}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "940GZZLUHSD", "modes": ["tube"], "icsCode": "1000096", "stopType": "NaptanMetroStation", "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"}, {"$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": ["piccadilly"]}, {"$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": ["piccadilly", "district"]}], "status": true, "id": "940GZZLUHSD", "commonName": "Hammersmith (Dist&Picc Line) 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": "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": "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": "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": "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": "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": "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": "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"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_595"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_598"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_686"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_730"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_775"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_4595"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5396"}], "children": [{"$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": "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": "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": "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": "Gates", "sourceSystemKey": "StaticObjects", "value": "24"}, {"$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": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}], "children": [], "lat": 51.491921, "lon": -0.22362}, {"$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": "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": "Help 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": "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": "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": "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": "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"}], "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": "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": "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"}], "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}], "lat": 51.4923, "lon": -0.22362}], "lat": 51.492304, "lon": -0.223619}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "HUBHOH", "modes": ["national-rail", "bus", "tube"], "icsCode": "1000102", "stopType": "TransportInterchange", "hubNaptanCode": "HUBHOH", "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": "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": "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": "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": "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": "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": "h14", "name": "H14", "uri": "/Line/h14", "type": "Line", "crowding": {"$type": "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": "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": "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": "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": "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": "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": "sl9", "name": "SL9", "uri": "/Line/sl9", "type": "Line", "crowding": {"$type": "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": "395", "name": "395", "uri": "/Line/395", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "chiltern-railways", "name": "Chiltern Railways", "uri": "/Line/chiltern-railways", "type": "Line", "crowding": {"$type": "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": "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": "h11", "name": "H11", "uri": "/Line/h11", "type": "Line", "crowding": {"$type": "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": "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": "183", "name": "183", "uri": "/Line/183", "type": "Line", "crowding": {"$type": "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": "490007845C", "stationAtcoCode": "490G000574", "lineIdentifier": ["483", "n18", "h19", "258", "182", "h17", "h14", "186", "h9"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490007845B", "stationAtcoCode": "490G000574", "lineIdentifier": ["h10", "114", "sl10", "140", "n140", "sl9", "640", "395", "483"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "910GHAROOTH", "lineIdentifier": ["chiltern-railways"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "940GZZLUHOH", "lineIdentifier": ["metropolitan"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490007845A", "stationAtcoCode": "490G000574", "lineIdentifier": ["n18", "640", "140", "258", "186", "340", "n140"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490007845E", "stationAtcoCode": "490G000574", "lineIdentifier": ["h11", "395", "sl10", "h17", "223", "h18", "183", "114", "340", "sl9"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490007845Z", "stationAtcoCode": "490G000574", "lineIdentifier": ["h19"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490007845D", "stationAtcoCode": "490G000574", "lineIdentifier": ["223", "182", "h14", "183", "h18", "h11"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "bus", "lineIdentifier": ["483", "n18", "h19", "258", "182", "h17", "h14", "186", "h9", "h10", "114", "sl10", "140", "n140", "sl9", "640", "395", "340", "h11", "223", "h18", "183"]}, {"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "national-rail", "lineIdentifier": ["chiltern-railways"]}, {"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["metropolitan"]}], "status": true, "id": "HUBHOH", "commonName": "Harrow-on-the-Hill", "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": "Bridge", "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": "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": "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": "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": "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": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_4903"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5530"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "CarParks_800445"}], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490G000574", "modes": ["bus"], "icsCode": "1007845", "stopType": "NaptanBusCoachStation", "stationNaptan": "490G000574", "hubNaptanCode": "HUBHOH", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490G000574", "commonName": "Harrow Bus Station", "placeType": "StopPoint", "additionalProperties": [], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490007845A", "indicator": "Stop A", "stopLetter": "A", "modes": ["bus"], "icsCode": "1007845", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G000574", "hubNaptanCode": "HUBHOH", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490007845A", "commonName": "Harrow Bus Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.57996, "lon": -0.337414}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490007845B", "indicator": "Stop B", "stopLetter": "B", "modes": ["bus"], "icsCode": "1007845", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G000574", "hubNaptanCode": "HUBHOH", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490007845B", "commonName": "Harrow Bus Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.580043, "lon": -0.337584}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490007845C", "indicator": "Stop C", "stopLetter": "C", "modes": ["bus"], "icsCode": "1007845", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G000574", "hubNaptanCode": "HUBHOH", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490007845C", "commonName": "Harrow Bus Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.579971, "lon": -0.337586}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490007845D", "indicator": "Stop D", "stopLetter": "D", "modes": ["bus"], "icsCode": "1007845", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G000574", "hubNaptanCode": "HUBHOH", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490007845D", "commonName": "Harrow Bus Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.580067, "lon": -0.337958}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490007845E", "indicator": "Stop E", "stopLetter": "E", "modes": ["bus"], "icsCode": "1007845", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G000574", "hubNaptanCode": "HUBHOH", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490007845E", "commonName": "Harrow Bus Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.579984, "lon": -0.337875}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490007845Z", "indicator": "Stop Z", "stopLetter": "Z", "modes": ["bus"], "icsCode": "1007845", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G000574", "hubNaptanCode": "HUBHOH", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490007845Z", "commonName": "Harrow Bus Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.579966, "lon": -0.339131}], "lat": 51.57996, "lon": -0.337414}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "910GHAROOTH", "modes": ["national-rail"], "icsCode": "1000102", "stopType": "NaptanRailStation", "stationNaptan": "910GHAROOTH", "hubNaptanCode": "HUBHOH", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "910GHAROOTH", "commonName": "Harrow-on-the-Hill Rail Station", "placeType": "StopPoint", "additionalProperties": [], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490G00102E", "modes": ["bus"], "icsCode": "1000102", "stopType": "NaptanOnstreetBusCoachStopCluster", "stationNaptan": "910GHAROOTH", "hubNaptanCode": "HUBHOH", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490G00102E", "commonName": "Harrow-On-The-Hill Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.579186, "lon": -0.337225}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490G00102N", "modes": ["bus"], "icsCode": "1000102", "stopType": "NaptanOnstreetBusCoachStopCluster", "stationNaptan": "490G00102N", "hubNaptanCode": "HUBHOH", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490G00102N", "commonName": "Harrow-On-The-Hill Station", "placeType": "StopPoint", "additionalProperties": [], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000102N", "indicator": "N-bound", "modes": ["bus"], "icsCode": "1000102", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00102N", "hubNaptanCode": "HUBHOH", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000102N", "commonName": "Harrow-On-The-Hill Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.577976, "lon": -0.337616}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000102S", "indicator": "->SE", "modes": ["bus"], "icsCode": "1000102", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00102N", "hubNaptanCode": "HUBHOH", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000102S", "commonName": "Harrow-On-The-Hill Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.57818, "lon": -0.337479}], "lat": 51.577976, "lon": -0.337616}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "4900HAROOTH1", "indicator": "Entrance 1", "stopLetter": "1", "modes": [], "icsCode": "1000102", "stopType": "NaptanRailEntrance", "stationNaptan": "910GHAROOTH", "hubNaptanCode": "HUBHOH", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "4900HAROOTH1", "commonName": "Harrow-on-the-Hill Rail Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.578986, "lon": -0.337189}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "4900HAROOTH2", "indicator": "Entrance 2", "stopLetter": "2", "modes": [], "icsCode": "1000102", "stopType": "NaptanRailEntrance", "stationNaptan": "910GHAROOTH", "hubNaptanCode": "HUBHOH", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "4900HAROOTH2", "commonName": "Harrow-on-the-Hill Rail Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.580034, "lon": -0.3363}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9100HAROOTH0", "modes": [], "icsCode": "1000102", "stopType": "NaptanRailAccessArea", "stationNaptan": "910GHAROOTH", "hubNaptanCode": "HUBHOH", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "9100HAROOTH0", "commonName": "Harrow-on-the-Hill", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 0.0, "lon": 0.0}], "lat": 51.579186, "lon": -0.337225}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "940GZZLUHOH", "modes": ["tube"], "icsCode": "1000102", "stopType": "NaptanMetroStation", "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": "940GZZLUHOH", "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": "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": "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": "WiFi", "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": "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": "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": "Euro Cash Machines", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_4903"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5530"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "CarParks_800445"}], "children": [{"$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": "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"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.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"}], "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}], "lat": 51.579195, "lon": -0.337225}], "lat": 51.579197, "lon": -0.337226}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "HUBHRW", "modes": ["tube", "bus", "national-rail", "overground"], "icsCode": "1000101", "stopType": "TransportInterchange", "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"}, {"$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": "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": "london-overground", "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": "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": "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": "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": "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": "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": "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", "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", "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", "stationAtcoCode": "910GHROW", "lineIdentifier": ["london-overground"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490015249M", "stationAtcoCode": "490G15249M", "lineIdentifier": ["n18", "340", "258", "640", "182", "140", "186", "n140"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490015249N", "stationAtcoCode": "490G15249M", "lineIdentifier": ["n140", "340", "n18", "640", "186", "258", "140", "182"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "bus", "lineIdentifier": ["h9", "h10", "n18", "340", "258", "640", "182", "140", "186", "n140"]}, {"$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": "overground", "lineIdentifier": ["london-overground"]}], "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": "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": "Payphones", "sourceSystemKey": "StaticObjects", "value": "3"}, {"$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": "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": "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": "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": "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": "14"}, {"$type": "Tfl.Api.Presentation.Entities.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": "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": "4"}, {"$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": "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": "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": "2"}, {"$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": "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"}], "children": [], "lat": 51.592115, "lon": -0.334573}], "lat": 51.592268, "lon": -0.335217}], "lat": 51.592216, "lon": -0.334896}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "HUBHX4", "modes": ["tube", "bus", "elizabeth-line", "national-rail", "plane"], "icsCode": "1000104", "stopType": "TransportInterchange", "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"}, {"$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": "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": "482", "name": "482", "uri": "/Line/482", "type": "Line", "crowding": {"$type": "Tfl.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"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "910GHTRWTM4", "lineIdentifier": ["elizabeth"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490000104N", "stationAtcoCode": "490G00104A", "lineIdentifier": ["490", "482"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490000104E", "stationAtcoCode": "490G00104A", "lineIdentifier": ["482", "490"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["piccadilly"]}, {"$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": ["490", "482"]}], "status": true, "id": "HUBHX4", "commonName": "Heathrow Airport Terminal 4", "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, 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": "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": "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": "Gates", "sourceSystemKey": "StaticObjects", "value": "3"}, {"$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": "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": "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": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5935"}], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "910GHTRWTE4", "modes": [], "stopType": "NaptanRailStation", "hubNaptanCode": "HUBHX4", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "910GHTRWTE4", "commonName": "Heathrow Terminal 4 (Rail-Air)", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.459331, "lon": -0.446967}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "910GHTRWTM4", "modes": ["elizabeth-line"], "icsCode": "1000104", "stopType": "NaptanRailStation", "stationNaptan": "910GHTRWTM4", "hubNaptanCode": "HUBHX4", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "910GHTRWTM4", "commonName": "Heathrow Terminal 4 Rail Station", "placeType": "StopPoint", "additionalProperties": [], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490G00104A", "modes": ["bus"], "icsCode": "1000104", "stopType": "NaptanOnstreetBusCoachStopCluster", "stationNaptan": "490G00104A", "hubNaptanCode": "HUBHX4", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490G00104A", "commonName": "Heathrow Terminal 4", "placeType": "StopPoint", "additionalProperties": [], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "49000010410", "indicator": "---", "modes": ["bus"], "icsCode": "1000104", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00104A", "hubNaptanCode": "HUBHX4", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "49000010410", "commonName": "Heathrow Terminal 4", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.458718, "lon": -0.446974}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "49000010413", "indicator": "Stand 13", "stopLetter": "13", "modes": ["bus"], "icsCode": "1000104", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00104A", "hubNaptanCode": "HUBHX4", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "49000010413", "commonName": "Heathrow Terminal 4", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.459176, "lon": -0.446267}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "49000010414", "indicator": "Stand 14", "stopLetter": "14", "modes": ["bus"], "icsCode": "1000104", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00104A", "hubNaptanCode": "HUBHX4", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "49000010414", "commonName": "Heathrow Terminal 4", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.459291, "lon": -0.446105}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "49000010415", "indicator": "Stand 15", "stopLetter": "15", "modes": ["bus"], "icsCode": "1000104", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00104A", "hubNaptanCode": "HUBHX4", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "49000010415", "commonName": "Heathrow Terminal 4", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.459379, "lon": -0.445958}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "49000010418", "indicator": "Stand 18", "stopLetter": "18", "modes": ["bus"], "icsCode": "1000104", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00104A", "hubNaptanCode": "HUBHX4", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "49000010418", "commonName": "Heathrow Terminal 4", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.458475, "lon": -0.446953}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "49000010420", "indicator": "Stand 20", "stopLetter": "20", "modes": ["bus"], "icsCode": "1000104", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00104A", "hubNaptanCode": "HUBHX4", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "49000010420", "commonName": "Heathrow Terminal 4", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.458767, "lon": -0.446598}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "4900001048", "indicator": "Stand 8", "stopLetter": "8", "modes": ["bus"], "icsCode": "1000104", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00104A", "hubNaptanCode": "HUBHX4", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "4900001048", "commonName": "Heathrow Terminal 4", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.458488, "lon": -0.447298}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "4900001049", "indicator": "Stand 9", "stopLetter": "9", "modes": ["bus"], "icsCode": "1000104", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00104A", "hubNaptanCode": "HUBHX4", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "4900001049", "commonName": "Heathrow Terminal 4", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.458603, "lon": -0.447107}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000104E", "indicator": "Stop 10", "stopLetter": "10", "modes": ["bus"], "icsCode": "1000104", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00104A", "hubNaptanCode": "HUBHX4", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000104E", "commonName": "Heathrow Terminal 4", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.459037, "lon": -0.446646}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000104N", "indicator": "Stop 11", "stopLetter": "11", "modes": ["bus"], "icsCode": "1000104", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00104A", "hubNaptanCode": "HUBHX4", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000104N", "commonName": "Heathrow Terminal 4", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.458993, "lon": -0.446705}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000104W", "indicator": "Stand 12", "stopLetter": "12", "modes": ["bus"], "icsCode": "1000104", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00104A", "hubNaptanCode": "HUBHX4", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000104W", "commonName": "Heathrow Terminal 4", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.458767, "lon": -0.446598}], "lat": 51.459176, "lon": -0.446267}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "4900HTRWTM41", "indicator": "Entrance 1", "stopLetter": "1", "modes": [], "icsCode": "1000104", "stopType": "NaptanRailEntrance", "stationNaptan": "910GHTRWTM4", "hubNaptanCode": "HUBHX4", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "4900HTRWTM41", "commonName": "Heathrow Terminal 4 Rail Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.459055, "lon": -0.446646}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9100HTRWTM40", "modes": [], "icsCode": "1000104", "stopType": "NaptanRailAccessArea", "stationNaptan": "910GHTRWTM4", "hubNaptanCode": "HUBHX4", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "9100HTRWTM40", "commonName": "Heathrow Terminal 4", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 0.0, "lon": 0.0}], "lat": 51.458268, "lon": -0.445463}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "940GZZLUHR4", "modes": ["tube"], "icsCode": "1000104", "stopType": "NaptanMetroStation", "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": "940GZZLUHR4", "commonName": "Heathrow Terminal 4 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": "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"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "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": "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": "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": "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": "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": "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_5935"}], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "4900HTRWTM49", "indicator": "Entrance 2", "stopLetter": "2", "modes": [], "icsCode": "1000104", "stopType": "NaptanMetroEntrance", "stationNaptan": "940GZZLUHR4", "hubNaptanCode": "HUBHX4", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "4900HTRWTM49", "commonName": "Heathrow Terminal 4 Underground Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.459273, "lon": -0.44481}, {"$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": "Help Points", "sourceSystemKey": "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"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}], "children": [], "lat": 51.458363, "lon": -0.445863}], "lat": 51.458524, "lon": -0.445771}], "lat": 51.458837, "lon": -0.446419}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "HUBHX5", "modes": ["tube", "national-rail", "elizabeth-line", "bus", "plane"], "icsCode": "1016430", "stopType": "TransportInterchange", "hubNaptanCode": "HUBHX5", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "350", "name": "350", "uri": "/Line/350", "type": "Line", "crowding": {"$type": "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": "482", "name": "482", "uri": "/Line/482", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "423", "name": "423", "uri": "/Line/423", "type": "Line", "crowding": {"$type": "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": "heathrow-express", "name": "Heathrow Express", "uri": "/Line/heathrow-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": "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": "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", "naptanIdReference": "4900164301", "stationAtcoCode": "910GHTRBUS5", "lineIdentifier": ["350", "n9", "482", "423", "490"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "910GHTRWTM5", "lineIdentifier": ["heathrow-express", "elizabeth"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "4900164306", "stationAtcoCode": "910GHTRBUS5", "lineIdentifier": ["423", "n9", "350"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "940GZZLUHR5", "lineIdentifier": ["piccadilly"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "4900164307", "stationAtcoCode": "910GHTRBUS5", "lineIdentifier": ["482", "490"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "bus", "lineIdentifier": ["350", "n9", "482", "423", "490"]}, {"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "national-rail", "lineIdentifier": ["heathrow-express"]}, {"$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": "tube", "lineIdentifier": ["piccadilly"]}], "status": true, "id": "HUBHX5", "commonName": "Heathrow Airport Terminal 5", "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": "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": "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": "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": "6"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5936"}, {"$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": "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": "WiFi", "sourceSystemKey": "StaticObjects", "value": "no"}], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "910GHTRWTM5", "modes": ["national-rail", "elizabeth-line"], "icsCode": "1016430", "stopType": "NaptanRailStation", "stationNaptan": "910GHTRWTM5", "hubNaptanCode": "HUBHX5", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "910GHTRWTM5", "commonName": "Heathrow Terminal 5 Rail Station", "placeType": "StopPoint", "additionalProperties": [], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "4900HTRWTM51", "indicator": "Entrance 1", "stopLetter": "1", "modes": [], "icsCode": "1016430", "stopType": "NaptanRailEntrance", "stationNaptan": "910GHTRWTM5", "hubNaptanCode": "HUBHX5", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "4900HTRWTM51", "commonName": "Heathrow Terminal 5 Rail Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.471927, "lon": -0.488209}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9100HTRWTM50", "modes": [], "icsCode": "1016430", "stopType": "NaptanRailAccessArea", "stationNaptan": "910GHTRWTM5", "hubNaptanCode": "HUBHX5", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "9100HTRWTM50", "commonName": "Heathrow Terminal 5", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 0.0, "lon": 0.0}], "lat": 51.470053, "lon": -0.490589}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "940GZZLUHR5", "modes": ["tube"], "icsCode": "1016430", "stopType": "NaptanMetroStation", "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": "940GZZLUHR5", "commonName": "Heathrow Terminal 5 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": "Help Points", "sourceSystemKey": "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": "Facility", "key": "Escalators", "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": "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"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo 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": "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": "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": "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": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5936"}], "children": [{"$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}], "lat": 51.470052, "lon": -0.49056}], "lat": 51.471569, "lon": -0.489556}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "HUBIMP", "modes": ["overground", "bus", "national-rail"], "icsCode": "1001347", "stopType": "TransportInterchange", "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"}, {"$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"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "910GCSEAH", "lineIdentifier": ["london-overground"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490005071E", "stationAtcoCode": "490G05071E", "lineIdentifier": ["c3"]}], "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": ["c3"]}], "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": "HUBKGX", "modes": ["tube", "national-rail", "international-rail", "bus"], "icsCode": "1000129", "stopType": "TransportInterchange", "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"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "940GZZLUKSX", "lineIdentifier": ["victoria"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "940GZZLUKSX", "lineIdentifier": ["northern"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490012553B", "stationAtcoCode": "490G000760", "lineIdentifier": ["46", "214"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490000129E", "stationAtcoCode": "490G00129R", "lineIdentifier": ["n205", "205", "214", "30", "73", "n73"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "910GSTPX", "lineIdentifier": ["thameslink", "east-midlands-railway"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "910GKNGX", "lineIdentifier": ["lumo", "great-northern", "thameslink", "first-hull-trains", "london-north-eastern-railway", "grand-central"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "940GZZLUKSX", "lineIdentifier": ["piccadilly"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "910GSTPX", "lineIdentifier": ["first-hull-trains", "thameslink"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490000129R", "stationAtcoCode": "490G00129R", "lineIdentifier": ["30", "205", "91", "n205", "73", "n91", "390", "n73"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490001171H", "stationAtcoCode": "490G000480", "lineIdentifier": ["17", "91", "259", "476", "390", "n91"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490001172X", "stationAtcoCode": "490G00005909", "lineIdentifier": ["214", "30", "205", "476", "73", "n205", "n73"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490001171G", "stationAtcoCode": "490G000479", "lineIdentifier": ["476", "91", "n63", "259", "17", "63", "390", "n91"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "910GSTPADOM", "lineIdentifier": ["southeastern"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490000129D", "stationAtcoCode": "490G00129R", "lineIdentifier": ["n63", "46", "63"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490004722A", "stationAtcoCode": "490G01276S", "lineIdentifier": ["73", "390", "n73", "30", "n91", "n205", "91", "205"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "940GZZLUKSX", "lineIdentifier": ["circle", "hammersmith-city", "metropolitan"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490001276S", "stationAtcoCode": "490G01276S", "lineIdentifier": ["n63", "214", "63", "46"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490004722M", "stationAtcoCode": "490G01276S", "lineIdentifier": ["91", "n91", "390"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["victoria", "northern", "piccadilly", "circle", "hammersmith-city", "metropolitan"]}, {"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "bus", "lineIdentifier": ["46", "214", "n205", "205", "30", "73", "n73", "91", "n91", "390", "17", "259", "476", "n63", "63"]}, {"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "national-rail", "lineIdentifier": ["thameslink", "east-midlands-railway", "lumo", "great-northern", "first-hull-trains", "london-north-eastern-railway", "grand-central", "southeastern"]}], "status": true, "id": "HUBKGX", "commonName": "King's Cross & St Pancras International", "placeType": "StopPoint", "additionalProperties": [{"$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": "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": "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": "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": "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": "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": "Facility", "key": "Help Points", "sourceSystemKey": "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": "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": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_4"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_14"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_34"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_70"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_431"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_439"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_593"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_793"}, {"$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": "BikePoints_798"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_804"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5237"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5896"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5708"}], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490G00005909", "modes": ["bus"], "icsCode": "1005909", "stopType": "NaptanOnstreetBusCoachStopPair", "stationNaptan": "490G00005909", "hubNaptanCode": "HUBKGX", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490G00005909", "commonName": "King's Cross / Caledonian Road", "placeType": "StopPoint", "additionalProperties": [], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490001172X", "indicator": "Stop X", "stopLetter": "X", "modes": ["bus"], "icsCode": "1005909", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00005909", "hubNaptanCode": "HUBKGX", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490001172X", "commonName": "King's Cross / Caledonian Road", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.530843, "lon": -0.12052}], "lat": 51.530843, "lon": -0.12052}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490G000479", "modes": ["bus"], "icsCode": "1005916", "stopType": "NaptanOnstreetBusCoachStopPair", "stationNaptan": "490G000479", "hubNaptanCode": "HUBKGX", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490G000479", "commonName": "King's Cross Station / York Way", "placeType": "StopPoint", "additionalProperties": [], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490001171G", "indicator": "Stop G", "stopLetter": "G", "modes": ["bus"], "icsCode": "1005916", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G000479", "hubNaptanCode": "HUBKGX", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490001171G", "commonName": "King's Cross Station / York Way", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.531282, "lon": -0.122679}], "lat": 51.531282, "lon": -0.122679}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490G000480", "modes": ["bus"], "icsCode": "1005924", "stopType": "NaptanOnstreetBusCoachStopPair", "stationNaptan": "490G000480", "hubNaptanCode": "HUBKGX", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490G000480", "commonName": "King's Cross Stn / Pentonville Rd", "placeType": "StopPoint", "additionalProperties": [], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490001171H", "indicator": "Stop H", "stopLetter": "H", "modes": ["bus"], "icsCode": "1005924", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G000480", "hubNaptanCode": "HUBKGX", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490001171H", "commonName": "King's Cross Stn / Pentonville Rd", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.531478, "lon": -0.120869}], "lat": 51.531478, "lon": -0.120869}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490G000760", "modes": ["bus"], "icsCode": "1012553", "stopType": "NaptanOnstreetBusCoachStopPair", "stationNaptan": "490G000760", "hubNaptanCode": "HUBKGX", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490G000760", "commonName": "St Pancras Intern'l & King's X Stns", "placeType": "StopPoint", "additionalProperties": [], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490012553B", "indicator": "Stop T", "stopLetter": "T", "modes": ["bus"], "icsCode": "1012553", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G000760", "hubNaptanCode": "HUBKGX", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490012553B", "commonName": "St Pancras Intern'l & King's X Stns", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.530551, "lon": -0.124713}], "lat": 51.530551, "lon": -0.124713}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "910GKNGX", "modes": ["national-rail"], "icsCode": "1001171", "stopType": "NaptanRailStation", "stationNaptan": "910GKNGX", "hubNaptanCode": "HUBKGX", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "910GKNGX", "commonName": "London King's Cross Rail Station", "placeType": "StopPoint", "additionalProperties": [], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "4900KNGX1", "indicator": "Entrance 1", "stopLetter": "1", "modes": [], "icsCode": "1001171", "stopType": "NaptanRailEntrance", "stationNaptan": "910GKNGX", "hubNaptanCode": "HUBKGX", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "4900KNGX1", "commonName": "London King's Cross Rail Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.530875, "lon": -0.122494}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "4900KNGX2", "indicator": "Entrance 2", "stopLetter": "2", "modes": [], "icsCode": "1001171", "stopType": "NaptanRailEntrance", "stationNaptan": "910GKNGX", "hubNaptanCode": "HUBKGX", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "4900KNGX2", "commonName": "London King's Cross Rail Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.530721, "lon": -0.123019}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "4900KNGX3", "indicator": "Entrance 3", "stopLetter": "3", "modes": [], "icsCode": "1001171", "stopType": "NaptanRailEntrance", "stationNaptan": "910GKNGX", "hubNaptanCode": "HUBKGX", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "4900KNGX3", "commonName": "London King's Cross Rail Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.532148, "lon": -0.124532}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "4900KNGX4", "indicator": "Entrance 4", "stopLetter": "4", "modes": [], "icsCode": "1001171", "stopType": "NaptanRailEntrance", "stationNaptan": "910GKNGX", "hubNaptanCode": "HUBKGX", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "4900KNGX4", "commonName": "London King's Cross Rail Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.53092, "lon": -0.124741}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9100KNGX1", "modes": [], "icsCode": "1001171", "stopType": "NaptanRailAccessArea", "stationNaptan": "910GKNGX", "hubNaptanCode": "HUBKGX", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "9100KNGX1", "commonName": "King's Cross Rail Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 0.0, "lon": 0.0}], "lat": 51.530883, "lon": -0.122926}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "910GSTPADOM", "modes": ["national-rail"], "icsCode": "1001276", "stopType": "NaptanRailStation", "stationNaptan": "910GSTPADOM", "hubNaptanCode": "HUBKGX", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "910GSTPADOM", "commonName": "London St Pancras International Rail Station", "placeType": "StopPoint", "additionalProperties": [], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490G01276S", "modes": ["bus"], "icsCode": "1001276", "stopType": "NaptanOnstreetBusCoachStopCluster", "stationNaptan": "490G01276S", "hubNaptanCode": "HUBKGX", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490G01276S", "commonName": "St Pancras International Station", "placeType": "StopPoint", "additionalProperties": [], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490001276S", "indicator": "Stop S", "stopLetter": "S", "modes": ["bus"], "icsCode": "1001276", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G01276S", "hubNaptanCode": "HUBKGX", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490001276S", "commonName": "St Pancras International Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.531597, "lon": -0.127179}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490001276Z", "indicator": "Stop Z", "stopLetter": "Z", "modes": ["bus"], "icsCode": "1001276", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G01276S", "hubNaptanCode": "HUBKGX", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490001276Z", "commonName": "St Pancras International Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.531879, "lon": -0.127369}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490004722A", "indicator": "Stop A", "stopLetter": "A", "modes": ["bus"], "icsCode": "1001276", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G01276S", "hubNaptanCode": "HUBKGX", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490004722A", "commonName": "St Pancras International Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.529423, "lon": -0.125062}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490004722M", "indicator": "Stop M", "stopLetter": "M", "modes": ["bus"], "icsCode": "1001276", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G01276S", "hubNaptanCode": "HUBKGX", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490004722M", "commonName": "St Pancras International Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.529761, "lon": -0.124846}], "lat": 51.531879, "lon": -0.127369}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "4900STPXBOX0", "indicator": "Entrance 1", "stopLetter": "1", "modes": [], "icsCode": "1001276", "stopType": "NaptanRailEntrance", "stationNaptan": "910GSTPADOM", "hubNaptanCode": "HUBKGX", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "4900STPXBOX0", "commonName": "London St Pancras International Rail Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.531231, "lon": -0.125103}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "4900STPXBOX1", "indicator": "Entrance 4", "stopLetter": "4", "modes": [], "icsCode": "1001276", "stopType": "NaptanRailEntrance", "stationNaptan": "910GSTPADOM", "hubNaptanCode": "HUBKGX", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "4900STPXBOX1", "commonName": "London St Pancras International Rail Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.530537, "lon": -0.126098}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "4900STPXBOX2", "indicator": "Entrance 2", "stopLetter": "2", "modes": [], "icsCode": "1001276", "stopType": "NaptanRailEntrance", "stationNaptan": "910GSTPADOM", "hubNaptanCode": "HUBKGX", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "4900STPXBOX2", "commonName": "London St Pancras International Rail Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.532249, "lon": -0.125753}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "4900STPXBOX3", "indicator": "Entrance 3", "stopLetter": "3", "modes": [], "icsCode": "1001276", "stopType": "NaptanRailEntrance", "stationNaptan": "910GSTPADOM", "hubNaptanCode": "HUBKGX", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "4900STPXBOX3", "commonName": "London St Pancras International Rail Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.531781, "lon": -0.127416}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9100STPADOM1", "modes": [], "icsCode": "1001276", "stopType": "NaptanRailAccessArea", "stationNaptan": "910GSTPADOM", "hubNaptanCode": "HUBKGX", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "9100STPADOM1", "commonName": "St Pancras International", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 0.0, "lon": 0.0}], "lat": 51.532514, "lon": -0.126463}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "910GSTPX", "modes": ["national-rail"], "icsCode": "1001276", "stopType": "NaptanRailStation", "stationNaptan": "910GSTPX", "hubNaptanCode": "HUBKGX", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "910GSTPX", "commonName": "London St Pancras International Rail Station", "placeType": "StopPoint", "additionalProperties": [], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9100STPX1", "modes": [], "icsCode": "1001276", "stopType": "NaptanRailAccessArea", "stationNaptan": "910GSTPX", "hubNaptanCode": "HUBKGX", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "9100STPX1", "commonName": "St Pancras International", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 0.0, "lon": 0.0}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9100STPXBOX1", "modes": [], "icsCode": "1001276", "stopType": "NaptanRailAccessArea", "stationNaptan": "910GSTPX", "hubNaptanCode": "HUBKGX", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "9100STPXBOX1", "commonName": "St Pancras International", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 0.0, "lon": 0.0}], "lat": 51.53239, "lon": -0.127189}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "910GSTPXBOX", "modes": ["national-rail"], "icsCode": "1001276", "stopType": "NaptanRailStation", "stationNaptan": "910GSTPXBOX", "hubNaptanCode": "HUBKGX", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "910GSTPXBOX", "commonName": "London St Pancras International LL Rail Station", "placeType": "StopPoint", "additionalProperties": [], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9100STPXBOX2", "modes": [], "icsCode": "1001276", "stopType": "NaptanRailAccessArea", "stationNaptan": "910GSTPXBOX", "hubNaptanCode": "HUBKGX", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "9100STPXBOX2", "commonName": "St Pancras International", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 0.0, "lon": 0.0}], "lat": 51.532168, "lon": -0.127343}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "940GZZLUKSX", "modes": ["tube"], "icsCode": "1000129", "stopType": "NaptanMetroStation", "stationNaptan": "940GZZLUKSX", "hubNaptanCode": "HUBKGX", "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"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "940GZZLUKSX", "lineIdentifier": ["circle", "hammersmith-city", "metropolitan"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "940GZZLUKSX", "lineIdentifier": ["northern"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "940GZZLUKSX", "lineIdentifier": ["piccadilly"]}, {"$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": ["circle", "hammersmith-city", "metropolitan", "northern", "piccadilly", "victoria"]}], "status": true, "id": "940GZZLUKSX", "commonName": "King's Cross St. Pancras 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": "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": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_804"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5237"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5896"}, {"$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": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_4"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_14"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_70"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_89"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_431"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_439"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_593"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_793"}, {"$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": "BikePoints_798"}, {"$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": "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": "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": "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": "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": "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": "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": "Lifts", "sourceSystemKey": "StaticObjects", "value": "10"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5708"}], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490G00129R", "modes": ["bus"], "icsCode": "1000129", "stopType": "NaptanOnstreetBusCoachStopCluster", "stationNaptan": "490G00129R", "hubNaptanCode": "HUBKGX", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490G00129R", "commonName": "King's Cross Station", "placeType": "StopPoint", "additionalProperties": [], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000129D", "indicator": "Stop D", "stopLetter": "D", "modes": ["bus"], "icsCode": "1000129", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00129R", "hubNaptanCode": "HUBKGX", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000129D", "commonName": "King's Cross Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.530398, "lon": -0.123076}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000129E", "indicator": "Stop E", "stopLetter": "E", "modes": ["bus"], "icsCode": "1000129", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00129R", "hubNaptanCode": "HUBKGX", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000129E", "commonName": "King's Cross Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.530497, "lon": -0.123072}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000129R", "indicator": "Stop R", "stopLetter": "R", "modes": ["bus"], "icsCode": "1000129", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00129R", "hubNaptanCode": "HUBKGX", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000129R", "commonName": "King's Cross Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.530466, "lon": -0.121689}], "lat": 51.530466, "lon": -0.121689}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "4900KNSXMCL0", "indicator": "Entrance 13", "stopLetter": "13", "modes": [], "icsCode": "1000129", "stopType": "NaptanRailEntrance", "stationNaptan": "940GZZLUKSX", "hubNaptanCode": "HUBKGX", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "4900KNSXMCL0", "commonName": "King's Cross Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.530913, "lon": -0.120358}, {"$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": "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": "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": "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": "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": "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": "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": "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": "ToiletNote", "sourceSystemKey": "LRAD", "value": "(National Rail)"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.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"}], "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": "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": "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"}], "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": "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"}, {"$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.530121, "lon": -0.12486}, {"$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": "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": "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": "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": "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": "940GZZLUKSX", "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": "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": "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": "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": "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": "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": "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"}], "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}], "lat": 51.530663, "lon": -0.123194}], "lat": 51.531683, "lon": -0.123538}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "HUBKNL", "modes": ["overground", "bus", "tube"], "icsCode": "1000122", "stopType": "TransportInterchange", "hubNaptanCode": "HUBKNL", "lines": [{"$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"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "london-overground", "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": "490000122W", "stationAtcoCode": "490G00122W", "lineIdentifier": ["n18", "18"]}, {"$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": ["18", "n18"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "bus", "lineIdentifier": ["n18", "18"]}, {"$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": "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": "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": "940GZZLUKSL", "modes": ["tube"], "icsCode": "1000122", "stopType": "NaptanMetroStation", "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": "940GZZLUKSL", "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "Bridge", "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 601 4867"}], "children": [], "lat": 51.530519, "lon": -0.224887}], "lat": 51.530539, "lon": -0.225016}], "lat": 51.530545, "lon": -0.22505}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "HUBKNT", "modes": ["tube", "bus", "overground"], "icsCode": "1000124", "stopType": "TransportInterchange", "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"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "london-overground", "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": "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": "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": "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": "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": "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": "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"}], "lineGroup": [{"$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"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490000124HH", "stationAtcoCode": "490G00124II", "lineIdentifier": ["h9", "223", "sl10", "114", "183", "h19"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490000124II", "stationAtcoCode": "490G00124II", "lineIdentifier": ["114", "183", "h10", "223", "h18", "sl10"]}], "lineModeGroups": [{"$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": "bus", "lineIdentifier": ["h9", "223", "sl10", "114", "183", "h19", "h10", "h18"]}], "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": "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": "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": "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": "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"}], "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": "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": "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"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.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": "Help Points", "sourceSystemKey": "StaticObjects", "value": "3 on platforms, 0 in ticket halls, 0 elsewhere"}], "children": [], "lat": 51.581663, "lon": -0.316755}], "lat": 51.581802, "lon": -0.316981}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "940GZZLUKEN", "modes": ["tube"], "icsCode": "1000124", "stopType": "NaptanMetroStation", "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": "940GZZLUKEN", "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": "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": "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": "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": "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": "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": "Facility", "key": "Help Points", "sourceSystemKey": "StaticObjects", "value": "3 on platforms, 0 in ticket halls, 0 elsewhere"}], "children": [{"$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": "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"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.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"}], "children": [], "lat": 51.582209, "lon": -0.317168}], "lat": 51.581756, "lon": -0.31691}], "lat": 51.581786, "lon": -0.316946}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "HUBKPA", "modes": ["tube", "bus", "national-rail", "overground"], "icsCode": "1000170", "stopType": "TransportInterchange", "hubNaptanCode": "HUBKPA", "lines": [{"$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": "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": "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": "london-overground", "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": "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": "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": "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"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490007709H", "stationAtcoCode": "490G00019922", "lineIdentifier": ["n28", "28", "306"]}, {"$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", "naptanIdReference": "490007709S", "stationAtcoCode": "490G00007709", "lineIdentifier": ["306", "28", "n28"]}, {"$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", "28", "n9", "n27", "27", "9"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "bus", "lineIdentifier": ["n28", "28", "306", "n9", "n27", "27", "9"]}, {"$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"]}], "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": "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": "Lifts", "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": "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": "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"}, {"$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"}], "children": [], "lat": 51.497959, "lon": -0.210174}], "lat": 51.497899, "lon": -0.210364}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "940GZZLUKOY", "modes": ["tube"], "icsCode": "1000170", "stopType": "NaptanMetroStation", "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": "940GZZLUKOY", "commonName": "Kensington (Olympia) 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": "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": "Help Points", "sourceSystemKey": "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": "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": "Kensington Olympia,Kensington Olympia Station,Olympia Way,LONDON,W14 0NE"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, 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": "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": "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": "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": "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": "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": "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": "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": "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"}], "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}], "lat": 51.497624, "lon": -0.210015}], "lat": 51.496156, "lon": -0.210502}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "HUBKTN", "modes": ["tube", "national-rail", "bus"], "icsCode": "1000123", "stopType": "TransportInterchange", "hubNaptanCode": "HUBKTN", "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": "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": "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": "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": "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": "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": "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": "134", "name": "134", "uri": "/Line/134", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "910GKNTSHTN", "lineIdentifier": ["thameslink", "east-midlands-railway"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "940GZZLUKSH", "lineIdentifier": ["northern"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490000123E", "stationAtcoCode": "490G00123B", "lineIdentifier": ["393"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490000123B", "stationAtcoCode": "490G00123B", "lineIdentifier": ["n20", "88", "214", "134"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490000123A", "stationAtcoCode": "490G00123B", "lineIdentifier": ["n20", "88", "214", "393", "134"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "national-rail", "lineIdentifier": ["thameslink", "east-midlands-railway"]}, {"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["northern"]}, {"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "bus", "lineIdentifier": ["393", "n20", "88", "214", "134"]}], "status": true, "id": "HUBKTN", "commonName": "Kentish Town", "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": "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": "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": "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": "Payphones", "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": "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": "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"}], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "910GKNTSHTN", "modes": ["national-rail"], "icsCode": "1000123", "stopType": "NaptanRailStation", "stationNaptan": "910GKNTSHTN", "hubNaptanCode": "HUBKTN", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "910GKNTSHTN", "commonName": "Kentish Town Rail Station", "placeType": "StopPoint", "additionalProperties": [], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490G00123B", "modes": ["bus"], "icsCode": "1000123", "stopType": "NaptanOnstreetBusCoachStopCluster", "stationNaptan": "490G00123B", "hubNaptanCode": "HUBKTN", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490G00123B", "commonName": "Kentish Town Station", "placeType": "StopPoint", "additionalProperties": [], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000123A", "indicator": "Stop KB", "stopLetter": "KB", "modes": ["bus"], "icsCode": "1000123", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00123B", "hubNaptanCode": "HUBKTN", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000123A", "commonName": "Kentish Town Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.550211, "lon": -0.140708}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000123B", "indicator": "Stop KF", "stopLetter": "KF", "modes": ["bus"], "icsCode": "1000123", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00123B", "hubNaptanCode": "HUBKTN", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000123B", "commonName": "Kentish Town Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.551366, "lon": -0.140978}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000123E", "indicator": "Stop LG", "stopLetter": "LG", "modes": ["bus"], "icsCode": "1000123", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00123B", "hubNaptanCode": "HUBKTN", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000123E", "commonName": "Kentish Town Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.550922, "lon": -0.139064}], "lat": 51.550922, "lon": -0.139064}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "4900KNTSHTN1", "indicator": "Entrance 1", "stopLetter": "1", "modes": [], "icsCode": "1000123", "stopType": "NaptanRailEntrance", "stationNaptan": "910GKNTSHTN", "hubNaptanCode": "HUBKTN", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "4900KNTSHTN1", "commonName": "Kentish Town Rail Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.550517, "lon": -0.140739}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "4900KNTSHTN2", "indicator": "Entrance 2", "stopLetter": "2", "modes": [], "icsCode": "1000123", "stopType": "NaptanRailEntrance", "stationNaptan": "910GKNTSHTN", "hubNaptanCode": "HUBKTN", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "4900KNTSHTN2", "commonName": "Kentish Town Rail Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.550192, "lon": -0.140074}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "4900KNTSHTN3", "indicator": "Entrance 3", "stopLetter": "3", "modes": [], "icsCode": "1000123", "stopType": "NaptanRailEntrance", "stationNaptan": "910GKNTSHTN", "hubNaptanCode": "HUBKTN", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "4900KNTSHTN3", "commonName": "Kentish Town Rail Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.550724, "lon": -0.140731}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9100KNTSHTN1", "modes": [], "icsCode": "1000123", "stopType": "NaptanRailAccessArea", "stationNaptan": "910GKNTSHTN", "hubNaptanCode": "HUBKTN", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "9100KNTSHTN1", "commonName": "Kentish Town", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 0.0, "lon": 0.0}], "lat": 51.550495, "lon": -0.140365}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "940GZZLUKSH", "modes": ["tube"], "icsCode": "1000123", "stopType": "NaptanMetroStation", "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": "940GZZLUKSH", "commonName": "Kentish Town 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": "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": "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": "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": "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": "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": "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": "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"}], "children": [{"$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}], "lat": 51.550312, "lon": -0.140733}], "lat": 51.550409, "lon": -0.140545}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "HUBKWG", "modes": ["bus", "tube", "overground"], "icsCode": "1000125", "stopType": "TransportInterchange", "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"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "london-overground", "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": "110", "name": "110", "uri": "/Line/110", "type": "Line", "crowding": {"$type": "Tfl.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"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "910GKEWGRDN", "lineIdentifier": ["london-overground"]}, {"$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", "naptanIdReference": "490000125B", "stationAtcoCode": "490G00125B", "lineIdentifier": ["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": "overground", "lineIdentifier": ["london-overground"]}, {"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "bus", "lineIdentifier": ["110"]}], "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": "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": "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": "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": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "3+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": "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": "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": "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": "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": "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": "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": "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": "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.476848, "lon": -0.285048}], "lat": 51.477073, "lon": -0.285054}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "940GZZLUKWG", "modes": ["tube"], "icsCode": "1000125", "stopType": "NaptanMetroStation", "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": "940GZZLUKWG", "commonName": "Kew Gardens 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": "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": "3+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": "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": "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": "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": "Boarding Ramps", "sourceSystemKey": "StaticObjects", "value": "yes District line 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": "yes (male, female)"}, {"$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"}], "children": [{"$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": "Bridge", "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": "Help Points", "sourceSystemKey": "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": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "3+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": "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": "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": "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)"}], "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": "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": "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": "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": "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"}], "children": [], "lat": 51.477003, "lon": -0.285143}], "lat": 51.477058, "lon": -0.285241}], "lat": 51.477069, "lon": -0.285148}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "HUBLBG", "modes": ["national-rail", "bus", "tube"], "icsCode": "1000139", "stopType": "TransportInterchange", "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"}, {"$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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "343", "name": "343", "uri": "/Line/343", "type": "Line", "crowding": {"$type": "Tfl.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"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490019954L", "stationAtcoCode": "490G000970", "lineIdentifier": ["388", "149", "n343"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "910GLNDNBDC", "lineIdentifier": ["southeastern", "thameslink"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490000139CZ", "stationAtcoCode": "490G000970", "lineIdentifier": ["141", "43"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490000139M", "stationAtcoCode": "490G000922", "lineIdentifier": ["35", "n199", "133", "344", "141", "149", "n21", "17", "43", "388", "n133", "21"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "940GZZLULNB", "lineIdentifier": ["jubilee"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490019954J", "stationAtcoCode": "490G000970", "lineIdentifier": ["149", "388"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "910GLNDNBDC", "lineIdentifier": ["southeastern", "southern", "thameslink"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490000139R", "stationAtcoCode": "490G00139R", "lineIdentifier": ["n381", "381", "n199", "343"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490000139B", "stationAtcoCode": "490G000970", "lineIdentifier": ["17"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490000139Y", "stationAtcoCode": "490G000922", "lineIdentifier": ["35", "133", "n199", "21", "n133", "n21"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490000139A", "stationAtcoCode": "490G000970", "lineIdentifier": ["n21", "n343"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490000139S", "stationAtcoCode": "490G00139R", "lineIdentifier": ["343", "n199", "381", "n381"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["northern", "jubilee"]}, {"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "bus", "lineIdentifier": ["388", "149", "n343", "141", "43", "35", "n199", "133", "344", "n21", "17", "n133", "21", "n381", "381", "343"]}, {"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "national-rail", "lineIdentifier": ["southeastern", "thameslink", "southern"]}], "status": true, "id": "HUBLBG", "commonName": "London Bridge", "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": "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": "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": "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": "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": "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": "Facility", "key": "Help 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": "BikePoints_10"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_194"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_276"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_587"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_706"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_732"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5471"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5578"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5948"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5876"}], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490G000970", "modes": ["bus"], "icsCode": "1019954", "stopType": "NaptanBusCoachStation", "stationNaptan": "490G000970", "hubNaptanCode": "HUBLBG", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490G000970", "commonName": "London Bridge Station", "placeType": "StopPoint", "additionalProperties": [], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000139A", "indicator": "Stop D", "stopLetter": "D", "modes": ["bus"], "icsCode": "1019954", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G000970", "hubNaptanCode": "HUBLBG", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000139A", "commonName": "London Bridge Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.504977, "lon": -0.087491}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000139B", "indicator": "Stop B", "stopLetter": "B", "modes": ["bus"], "icsCode": "1019954", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G000970", "hubNaptanCode": "HUBLBG", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000139B", "commonName": "London Bridge Bus Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.505169, "lon": -0.086576}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000139CZ", "indicator": "Stop C", "stopLetter": "C", "modes": ["bus"], "icsCode": "1019954", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G000970", "hubNaptanCode": "HUBLBG", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000139CZ", "commonName": "London Bridge Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.505134, "lon": -0.086635}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490019954J", "indicator": "Stop", "modes": ["bus"], "icsCode": "1019954", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G000970", "hubNaptanCode": "HUBLBG", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490019954J", "commonName": "London Bridge Bus Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.50544, "lon": -0.086651}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490019954K", "indicator": "Stop", "modes": ["bus"], "icsCode": "1019954", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G000970", "hubNaptanCode": "HUBLBG", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490019954K", "commonName": "London Bridge Bus Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.505118, "lon": -0.087284}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490019954L", "indicator": "Stop A", "stopLetter": "A", "modes": ["bus"], "icsCode": "1019954", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G000970", "hubNaptanCode": "HUBLBG", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490019954L", "commonName": "London Bridge Bus Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.505303, "lon": -0.086541}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490019954S", "indicator": "Stop", "modes": ["bus"], "icsCode": "1019954", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G000970", "hubNaptanCode": "HUBLBG", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490019954S", "commonName": "London Bridge Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.505562, "lon": -0.086934}], "lat": 51.505303, "lon": -0.086541}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490G000922", "modes": ["bus"], "icsCode": "1018542", "stopType": "NaptanOnstreetBusCoachStopPair", "stationNaptan": "490G000922", "hubNaptanCode": "HUBLBG", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490G000922", "commonName": "London Bridge", "placeType": "StopPoint", "additionalProperties": [], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000139M", "indicator": "Stop M", "stopLetter": "M", "modes": ["bus"], "icsCode": "1018542", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G000922", "hubNaptanCode": "HUBLBG", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000139M", "commonName": "London Bridge", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.506699, "lon": -0.088327}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000139Y", "indicator": "Stop Y", "stopLetter": "Y", "modes": ["bus"], "icsCode": "1018542", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G000922", "hubNaptanCode": "HUBLBG", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000139Y", "commonName": "London Bridge", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.506579, "lon": -0.088116}], "lat": 51.506579, "lon": -0.088116}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "910GLNDNBDC", "modes": ["national-rail"], "icsCode": "1000139", "stopType": "NaptanRailStation", "stationNaptan": "910GLNDNBDC", "hubNaptanCode": "HUBLBG", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "910GLNDNBDC", "commonName": "London Bridge Rail Station", "placeType": "StopPoint", "additionalProperties": [], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490G00139C", "modes": ["bus"], "icsCode": "1000139", "stopType": "NaptanOnstreetBusCoachStopCluster", "stationNaptan": "910GLNDNBDC", "hubNaptanCode": "HUBLBG", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490G00139C", "commonName": "London Bridge Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.505019, "lon": -0.086092}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490G00139M", "modes": ["bus"], "icsCode": "1000139", "stopType": "NaptanOnstreetBusCoachStopCluster", "stationNaptan": "910GLNDNBDC", "hubNaptanCode": "HUBLBG", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490G00139M", "commonName": "London Bridge Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.505019, "lon": -0.086092}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490G00139R", "modes": ["bus"], "icsCode": "1000139", "stopType": "NaptanOnstreetBusCoachStopCluster", "stationNaptan": "490G00139R", "hubNaptanCode": "HUBLBG", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490G00139R", "commonName": "London Bridge Station", "placeType": "StopPoint", "additionalProperties": [], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000139R", "indicator": "Stop R", "stopLetter": "R", "modes": ["bus"], "icsCode": "1000139", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00139R", "hubNaptanCode": "HUBLBG", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000139R", "commonName": "London Bridge Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.505974, "lon": -0.087378}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000139S", "indicator": "Stop S", "stopLetter": "S", "modes": ["bus"], "icsCode": "1000139", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00139R", "hubNaptanCode": "HUBLBG", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000139S", "commonName": "London Bridge Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.505688, "lon": -0.085877}], "lat": 51.505688, "lon": -0.085877}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "910GLNDNBDE", "modes": [], "stopType": "NaptanRailStation", "stationNaptan": "910GLNDNBDE", "hubNaptanCode": "HUBLBG", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "910GLNDNBDE", "commonName": "London Bridge Rail Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.505109, "lon": -0.086088}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "4900LNDNBDC0", "indicator": "Entrance 4", "stopLetter": "4", "modes": [], "icsCode": "1000139", "stopType": "NaptanRailEntrance", "stationNaptan": "910GLNDNBDC", "hubNaptanCode": "HUBLBG", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "4900LNDNBDC0", "commonName": "London Bridge Rail Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.505327, "lon": -0.086886}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9100LNDNBDE1", "modes": [], "icsCode": "1000139", "stopType": "NaptanRailAccessArea", "stationNaptan": "910GLNDNBDC", "hubNaptanCode": "HUBLBG", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "9100LNDNBDE1", "commonName": "London Bridge Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 0.0, "lon": 0.0}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9100LNDNBDC1", "modes": [], "icsCode": "1000139", "stopType": "NaptanRailAccessArea", "stationNaptan": "910GLNDNBDC", "hubNaptanCode": "HUBLBG", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "9100LNDNBDC1", "commonName": "London Bridge Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 0.0, "lon": 0.0}], "lat": 51.505019, "lon": -0.086092}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "940GZZLULNB", "modes": ["tube"], "icsCode": "1000139", "stopType": "NaptanMetroStation", "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"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "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": ["jubilee"]}, {"$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": ["jubilee", "northern"]}], "status": true, "id": "940GZZLULNB", "commonName": "London 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": "Gates", "sourceSystemKey": "StaticObjects", "value": "36"}, {"$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": "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": "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": "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": "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": "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": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5471"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5578"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5502"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5948"}, {"$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": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_10"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_194"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_276"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_732"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5876"}, {"$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": "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": "ServiceInfo", "key": "Night", "sourceSystemKey": "TransXchangeETL", "value": "yes"}], "children": [{"$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": "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, 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": "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": "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": "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 "}], "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": "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": "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": "17"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.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": "Toilets", "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": "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": "Facility", "key": "Payphones", "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": "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": "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": "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": "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": "Gates", "sourceSystemKey": "StaticObjects", "value": "36"}], "children": [], "lat": 51.505727, "lon": -0.086595}, {"$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": "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": "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": "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": "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"}], "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": "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": "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": "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": "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": "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"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.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": "London Bridge Underground Station,London Underground Ltd.,21 Duke St Hill,London,SE1 2SW"}], "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": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$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": "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": "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": "36"}, {"$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": "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"}], "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}], "lat": 51.505721, "lon": -0.088873}], "lat": 51.505881, "lon": -0.086807}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "HUBLST", "modes": ["overground", "national-rail", "elizabeth-line", "bus", "tube"], "icsCode": "1000138", "stopType": "TransportInterchange", "hubNaptanCode": "HUBLST", "lines": [{"$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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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", "naptanIdReference": "490000138F", "stationAtcoCode": "490G00138E", "lineIdentifier": ["n8", "388", "78", "n26", "26", "135", "205", "35", "n205", "8"]}, {"$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": ["hammersmith-city", "metropolitan", "circle"]}, {"$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": "490000138L", "stationAtcoCode": "490G00138G", "lineIdentifier": ["205", "135", "8", "26", "42", "n8", "n242", "n205", "n26", "78"]}, {"$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": "940GZZLULVT", "lineIdentifier": ["central"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490000138E", "stationAtcoCode": "490G00138E", "lineIdentifier": ["42", "149", "n242"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490000138K", "stationAtcoCode": "490G00138G", "lineIdentifier": ["149", "35", "388"]}, {"$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": "490000138N", "stationAtcoCode": "490G00138W", "lineIdentifier": ["344", "153", "n133"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "bus", "lineIdentifier": ["n8", "388", "78", "n26", "26", "135", "205", "35", "n205", "8", "344", "42", "n242", "149", "153", "n133"]}, {"$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": "tube", "lineIdentifier": ["hammersmith-city", "metropolitan", "circle", "central"]}, {"$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"]}], "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": "910GLIVST", "modes": ["overground", "elizabeth-line", "national-rail"], "icsCode": "1000138", "stopType": "NaptanRailStation", "stationNaptan": "910GLIVST", "hubNaptanCode": "HUBLST", "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": "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"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "910GLIVST", "lineIdentifier": ["greater-anglia", "london-overground", "c2c", "elizabeth"]}], "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": "overground", "lineIdentifier": ["london-overground"]}, {"$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": ["overground", "national-rail", "elizabeth-line"], "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": "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": "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"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "910GLIVST", "lineIdentifier": ["london-overground", "elizabeth", "greater-anglia", "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": "elizabeth-line", "lineIdentifier": ["elizabeth"]}, {"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "national-rail", "lineIdentifier": ["greater-anglia", "c2c"]}], "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": "940GZZLULVT", "modes": ["tube"], "icsCode": "1000138", "stopType": "NaptanMetroStation", "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"}, {"$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": ["central"]}, {"$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": ["central", "metropolitan", "circle", "hammersmith-city"]}], "status": true, "id": "940GZZLULVT", "commonName": "Liverpool Street 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": "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": "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)"}, {"$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_140"}, {"$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_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"}, {"$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": "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": "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": "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": "Car park", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$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": "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": "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": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "5"}], "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": [{"$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": "BlueBadgeCarParkSpaces", "sourceSystemKey": "LRAD", "value": "0"}, {"$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": "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": "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": "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": "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": "5"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.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": "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, 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": "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": "VisitorCentre", "key": "Location", "sourceSystemKey": "StaticObjects", "value": "Underground Station"}], "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": "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": "940GZZLULVT", "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": "9400ZZLULVT3", "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": "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": "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"}], "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": "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": "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": "940GZZLULVT", "lineIdentifier": ["hammersmith-city", "metropolitan", "circle"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["hammersmith-city", "metropolitan", "circle"]}], "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}], "lat": 51.517372, "lon": -0.083182}], "lat": 51.51794, "lon": -0.083162}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "HUBMYB", "modes": ["tube", "bus", "national-rail"], "icsCode": "1000145", "stopType": "TransportInterchange", "hubNaptanCode": "HUBMYB", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "chiltern-railways", "name": "Chiltern Railways", "uri": "/Line/chiltern-railways", "type": "Line", "crowding": {"$type": "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", "stationAtcoCode": "910GMARYLBN", "lineIdentifier": ["chiltern-railways"]}, {"$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": "national-rail", "lineIdentifier": ["chiltern-railways"]}, {"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["bakerloo"]}], "status": true, "id": "HUBMYB", "commonName": "Marylebone", "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": "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": "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": "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": "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": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_45"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_114"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_182"}, {"$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": "Car park", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_43"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.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": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_201"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_208"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_367"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_396"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_605"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_759"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5742"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_4404"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5823"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5894"}], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "910GMARYLBN", "modes": ["national-rail"], "icsCode": "1000145", "stopType": "NaptanRailStation", "stationNaptan": "910GMARYLBN", "hubNaptanCode": "HUBMYB", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "910GMARYLBN", "commonName": "London Marylebone Rail Station", "placeType": "StopPoint", "additionalProperties": [], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490G00145L", "modes": ["bus"], "icsCode": "1000145", "stopType": "NaptanOnstreetBusCoachStopCluster", "stationNaptan": "910GMARYLBN", "hubNaptanCode": "HUBMYB", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490G00145L", "commonName": "Marylebone", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.522524, "lon": -0.162911}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490G15502N", "modes": ["bus"], "icsCode": "1000145", "stopType": "NaptanOnstreetBusCoachStopCluster", "stationNaptan": "910GMARYLBN", "hubNaptanCode": "HUBMYB", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490G15502N", "commonName": "Marylebone", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.522524, "lon": -0.162911}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "4900MARYLBN", "indicator": "Entrance 1", "stopLetter": "1", "modes": [], "icsCode": "1000145", "stopType": "NaptanRailEntrance", "stationNaptan": "910GMARYLBN", "hubNaptanCode": "HUBMYB", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "4900MARYLBN", "commonName": "London Marylebone Rail Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.522319, "lon": -0.163164}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9100MARYLBN0", "modes": [], "icsCode": "1000145", "stopType": "NaptanRailAccessArea", "stationNaptan": "910GMARYLBN", "hubNaptanCode": "HUBMYB", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "9100MARYLBN0", "commonName": "Marylebone", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 0.0, "lon": 0.0}], "lat": 51.522524, "lon": -0.162911}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "940GZZLUMYB", "modes": ["tube"], "icsCode": "1000145", "stopType": "NaptanMetroStation", "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": "940GZZLUMYB", "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": "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": "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": "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."}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_43"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_45"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_114"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_182"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_201"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_208"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_396"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_605"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_759"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5742"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_4404"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5823"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5894"}], "children": [{"$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}], "lat": 51.522322, "lon": -0.163207}], "lat": 51.521602, "lon": -0.163013}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "HUBNGW", "modes": ["bus", "cable-car", "tube"], "icsCode": "1000160", "stopType": "TransportInterchange", "hubNaptanCode": "HUBNGW", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "129", "name": "129", "uri": "/Line/129", "type": "Line", "crowding": {"$type": "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": "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": "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": "london-cable-car", "name": "London Cable Car", "uri": "/Line/london-cable-car", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "161", "name": "161", "uri": "/Line/161", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "472", "name": "472", "uri": "/Line/472", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "180", "name": "180", "uri": "/Line/180", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "132", "name": "132", "uri": "/Line/132", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "486", "name": "486", "uri": "/Line/486", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "422", "name": "422", "uri": "/Line/422", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "335", "name": "335", "uri": "/Line/335", "type": "Line", "crowding": {"$type": "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": "490010374C", "stationAtcoCode": "490G000682", "lineIdentifier": ["129", "108", "188"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "940GZZLUNGW", "lineIdentifier": ["jubilee"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "940GZZALGWP", "lineIdentifier": ["london-cable-car"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490010374A", "stationAtcoCode": "490G000682", "lineIdentifier": ["161", "472", "180"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490010374D", "stationAtcoCode": "490G000682", "lineIdentifier": ["132"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490010374E", "stationAtcoCode": "490G000682", "lineIdentifier": ["486", "180", "472", "132", "188", "161", "422", "335", "129"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490010374B", "stationAtcoCode": "490G000682", "lineIdentifier": ["108", "486", "422", "335"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "bus", "lineIdentifier": ["129", "108", "188", "161", "472", "180", "132", "486", "422", "335"]}, {"$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": "cable-car", "lineIdentifier": ["london-cable-car"]}], "status": true, "id": "HUBNGW", "commonName": "North Greenwich", "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": "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": "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": "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": "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": "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": "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_5930"}], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490G000682", "modes": ["bus"], "icsCode": "1010374", "stopType": "NaptanOnstreetBusCoachStopCluster", "stationNaptan": "490G000682", "hubNaptanCode": "HUBNGW", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490G000682", "commonName": "North Greenwich Station", "placeType": "StopPoint", "additionalProperties": [], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490010374A", "indicator": "Stop A", "stopLetter": "A", "modes": ["bus"], "icsCode": "1010374", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G000682", "hubNaptanCode": "HUBNGW", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490010374A", "commonName": "North Greenwich Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.499716, "lon": 0.004643}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490010374B", "indicator": "Stop B", "stopLetter": "B", "modes": ["bus"], "icsCode": "1010374", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G000682", "hubNaptanCode": "HUBNGW", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490010374B", "commonName": "North Greenwich Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.499666, "lon": 0.004367}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490010374C", "indicator": "Stop C", "stopLetter": "C", "modes": ["bus"], "icsCode": "1010374", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G000682", "hubNaptanCode": "HUBNGW", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490010374C", "commonName": "North Greenwich Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.499654, "lon": 0.00405}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490010374D", "indicator": "Stop D", "stopLetter": "D", "modes": ["bus"], "icsCode": "1010374", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G000682", "hubNaptanCode": "HUBNGW", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490010374D", "commonName": "North Greenwich Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.500267, "lon": 0.00291}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490010374E", "indicator": "Stop E", "stopLetter": "E", "modes": ["bus"], "icsCode": "1010374", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G000682", "hubNaptanCode": "HUBNGW", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490010374E", "commonName": "North Greenwich Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.500609, "lon": 0.002867}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490010374F", "indicator": "Stop F", "stopLetter": "F", "modes": ["bus"], "icsCode": "1010374", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G000682", "hubNaptanCode": "HUBNGW", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490010374F", "commonName": "North Greenwich Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.49978, "lon": 0.002456}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490010374G", "indicator": "Stop G", "stopLetter": "G", "modes": ["bus"], "icsCode": "1010374", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G000682", "hubNaptanCode": "HUBNGW", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490010374G", "commonName": "North Greenwich Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.499528, "lon": 0.002445}], "lat": 51.499528, "lon": 0.002445}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "940GZZALGWP", "modes": ["cable-car"], "icsCode": "1020079", "stopType": "NaptanMetroStation", "stationNaptan": "940GZZALGWP", "hubNaptanCode": "HUBNGW", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "940GZZALGWP", "commonName": "IFS Cloud Greenwich Peninsula", "placeType": "StopPoint", "additionalProperties": [], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "4900ZZALGWP0", "indicator": "Entrance 1", "stopLetter": "1", "modes": ["cable-car"], "icsCode": "1020079", "stopType": "NaptanMetroEntrance", "stationNaptan": "940GZZALGWP", "hubNaptanCode": "HUBNGW", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "4900ZZALGWP0", "commonName": "IFS Cloud Greenwich Peninsula", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.499838, "lon": 0.007977}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZALGWP1", "modes": [], "icsCode": "1020079", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZALGWP", "hubNaptanCode": "HUBNGW", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "9400ZZALGWP1", "commonName": "IFS Cloud Greenwich Peninsula", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 0.0, "lon": 0.0}], "lat": 51.499573, "lon": 0.00834}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "940GZZLUNGW", "modes": ["tube"], "icsCode": "1000160", "stopType": "NaptanMetroStation", "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": "940GZZLUNGW", "commonName": "North Greenwich 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": "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": "ServiceInfo", "key": "Night", "sourceSystemKey": "TransXchangeETL", "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": "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": "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": "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": "Toilets", "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": "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": "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": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5930"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "ToiletNote", "sourceSystemKey": "LRAD", "value": "(Bus station)"}, {"$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": "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": "6 on platforms, 4 in ticket halls, 0 elsewhere"}, {"$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": "TaxiRankOutsideStation", "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": "LimitedCapacityLift", "sourceSystemKey": "LRAD", "value": "No"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "BlueBadgeCarParkSpaces", "sourceSystemKey": "LRAD", "value": "19"}], "children": [{"$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": "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": "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": "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": "Toilet", "sourceSystemKey": "LRAD", "value": "Yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "ToiletNote", "sourceSystemKey": "LRAD", "value": "(Bus station)"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "TaxiRankOutsideStation", "sourceSystemKey": "LRAD", "value": "No"}], "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": "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": "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"}, {"$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"}], "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 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": "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": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "3"}, {"$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": "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": "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": "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": "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": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "2/3"}], "children": [], "lat": 51.500382, "lon": 0.005191}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUNGW2", "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": "9400ZZLUNGW2", "commonName": "North Greenwich 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": "Toilets", "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, 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": "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": "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": "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": "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": "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"}], "children": [], "lat": 51.500425, "lon": 0.005308}], "lat": 51.50047, "lon": 0.004287}], "lat": 51.500474, "lon": 0.004295}, {"$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": "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": "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": "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": "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"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490000163A", "stationAtcoCode": "490G00163B", "lineIdentifier": ["483", "245"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "bus", "lineIdentifier": ["245", "483"]}, {"$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": "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": "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": "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": "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"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.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": "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"}], "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": "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"}, {"$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"}], "children": [], "lat": 51.562521, "lon": -0.30377}], "lat": 51.562596, "lon": -0.303984}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "940GZZLUNWY", "modes": ["tube"], "icsCode": "1000163", "stopType": "NaptanMetroStation", "stationNaptan": "940GZZLUNWY", "hubNaptanCode": "HUBNWB", "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": "940GZZLUNWY", "lineIdentifier": ["bakerloo"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["bakerloo"]}], "status": true, "id": "940GZZLUNWY", "commonName": "North Wembley 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": "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": "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": "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": "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": "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": "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": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 601 4867"}], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUNWY", "modes": ["tube"], "icsCode": "1000163", "stopType": "NaptanMetroAccessArea", "stationNaptan": "940GZZLUNWY", "hubNaptanCode": "HUBNWB", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "9400ZZLUNWY", "commonName": "North Wembley 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": "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": "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": "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": "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": "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": "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": "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": "Toilets", "sourceSystemKey": "StaticObjects", "value": "no"}], "children": [], "lat": 51.562551, "lon": -0.304}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUNWY1", "modes": ["tube"], "icsCode": "1000163", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUNWY", "hubNaptanCode": "HUBNWB", "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": "940GZZLUNWY", "lineIdentifier": ["bakerloo"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["bakerloo"]}], "status": true, "id": "9400ZZLUNWY1", "commonName": "North Wembley 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": "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": "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": "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": "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"}], "children": [], "lat": 51.562322, "lon": -0.303691}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUNWY2", "indicator": "southbound", "modes": ["tube"], "icsCode": "1000163", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUNWY", "hubNaptanCode": "HUBNWB", "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": "940GZZLUNWY", "lineIdentifier": ["bakerloo"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["bakerloo"]}], "status": true, "id": "9400ZZLUNWY2", "commonName": "North Wembley 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": "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": "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": "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": "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": "no"}], "children": [], "lat": 51.5628, "lon": -0.303774}], "lat": 51.562551, "lon": -0.304}], "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": "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": "london-overground", "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": "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"}, {"$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"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "910GNORWDJ", "lineIdentifier": ["southeastern", "southern", "thameslink"]}, {"$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", "naptanIdReference": "490001216E", "stationAtcoCode": "490G01216E", "lineIdentifier": ["196", "130"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490001216T", "stationAtcoCode": "490G10448S", "lineIdentifier": ["197"]}, {"$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", "naptanIdReference": "490010448S", "stationAtcoCode": "490G10448S", "lineIdentifier": ["312"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "national-rail", "lineIdentifier": ["southeastern", "southern", "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": ["196", "130", "197", "312"]}], "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": ["national-rail", "overground"], "icsCode": "1001216", "stopType": "NaptanRailStation", "stationNaptan": "910GNORWDJ", "hubNaptanCode": "HUBNWD", "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": "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": ["thameslink", "southern", "southeastern"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "910GNORWDJ", "lineIdentifier": ["southern", "london-overground", "southeastern"]}, {"$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": ["southern", "thameslink", "london-overground"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "national-rail", "lineIdentifier": ["thameslink", "southern", "southeastern"]}, {"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "overground", "lineIdentifier": ["london-overground"]}], "status": true, "id": "910GNORWDJ", "commonName": "Norwood Junction Rail Station", "placeType": "StopPoint", "additionalProperties": [{"$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"}, {"$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": "Opening Time", "key": "SunTo", "sourceSystemKey": "NreStationData", "value": "19: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: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": "Facility", "key": "Car Park", "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": "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": "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": "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"}], "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": ["overground", "national-rail"], "icsCode": "1001216", "stopType": "NaptanRailAccessArea", "stationNaptan": "910GNORWDJ", "hubNaptanCode": "HUBNWD", "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": "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": "910GNORWDJ", "lineIdentifier": ["thameslink", "southern", "london-overground"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "national-rail", "lineIdentifier": ["thameslink", "southern"]}, {"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "overground", "lineIdentifier": ["london-overground"]}], "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": "london-overground", "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": "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", "southern", "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": ["southern", "southeastern"]}], "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": "london-overground", "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": "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": "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": "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": "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": "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": "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": "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": "910GNWCRELL", "lineIdentifier": ["london-overground"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490000155V", "stationAtcoCode": "490G00155V", "lineIdentifier": ["n53", "453", "225", "53", "177", "n89"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "910GNWCRELL", "lineIdentifier": ["southeastern"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490000155W", "stationAtcoCode": "490G00155V", "lineIdentifier": ["53", "n89", "453", "n53", "177", "225"]}], "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": ["n53", "453", "225", "53", "177", "n89"]}, {"$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": ["overground", "national-rail"], "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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"}, {"$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": "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": "490000156M", "stationAtcoCode": "490G00156M", "lineIdentifier": ["321", "n21", "436", "136", "n136", "21"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490000156O", "stationAtcoCode": "490G00156M", "lineIdentifier": ["21", "n136", "136", "n53", "436", "53", "453", "171", "177", "172", "n21", "n171", "321", "n89"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "910GNEWXGTE", "lineIdentifier": ["southern"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "910GNEWXGTE", "lineIdentifier": ["southern", "london-overground"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490000156R", "stationAtcoCode": "490G00156M", "lineIdentifier": ["n171", "171", "177", "53", "n89", "172", "n53", "453"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "bus", "lineIdentifier": ["321", "n21", "436", "136", "n136", "21", "n53", "53", "453", "171", "177", "172", "n171", "n89"]}, {"$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": "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": ["national-rail", "overground"], "icsCode": "1000156", "stopType": "NaptanRailStation", "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"]}, {"$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": "national-rail", "lineIdentifier": ["southern"]}, {"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "overground", "lineIdentifier": ["london-overground"]}], "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": "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": "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": ["overground", "national-rail"], "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": "HUBOLD", "modes": ["national-rail", "bus", "tube"], "icsCode": "1000169", "stopType": "TransportInterchange", "hubNaptanCode": "HUBOLD", "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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", "naptanIdReference": "490015194F", "stationAtcoCode": "490G15194G", "lineIdentifier": ["243", "55", "n55"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "910GOLDST", "lineIdentifier": ["great-northern"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490015193S", "stationAtcoCode": "490G15194G", "lineIdentifier": ["135"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490000169ZA", "stationAtcoCode": "490G15194G", "lineIdentifier": ["43", "141", "214", "21", "n271"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490010108C", "stationAtcoCode": "490G15194G", "lineIdentifier": ["43", "214", "205", "n205"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "940GZZLUODS", "lineIdentifier": ["northern"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490000169L", "stationAtcoCode": "490G15194G", "lineIdentifier": ["243", "55", "n205", "205", "135", "n55"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "bus", "lineIdentifier": ["243", "55", "n55", "135", "43", "141", "214", "21", "n271", "205", "n205"]}, {"$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": "tube", "lineIdentifier": ["northern"]}], "status": true, "id": "HUBOLD", "commonName": "Old Street", "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": "Toilets", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Old Street Station,London Underground Ltd.,Old St,London,EC1Y 1BE"}, {"$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": "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": "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": "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": "Help 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": "BikePoints_30"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_32"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_73"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_119"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_319"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_323"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5116"}], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "910GOLDST", "modes": ["national-rail"], "icsCode": "1000169", "stopType": "NaptanRailStation", "stationNaptan": "910GOLDST", "hubNaptanCode": "HUBOLD", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "910GOLDST", "commonName": "Old Street Rail Station", "placeType": "StopPoint", "additionalProperties": [], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490G15194G", "modes": ["bus"], "icsCode": "1000169", "stopType": "NaptanOnstreetBusCoachStopCluster", "stationNaptan": "490G15194G", "hubNaptanCode": "HUBOLD", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490G15194G", "commonName": "Old Street Station", "placeType": "StopPoint", "additionalProperties": [], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000169L", "indicator": "Stop L", "stopLetter": "L", "modes": ["bus"], "icsCode": "1000169", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G15194G", "hubNaptanCode": "HUBOLD", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000169L", "commonName": "Old Street Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.526085, "lon": -0.085396}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000169ZA", "indicator": "Stop N", "stopLetter": "N", "modes": ["bus"], "icsCode": "1000169", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G15194G", "hubNaptanCode": "HUBOLD", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000169ZA", "commonName": "Old Street Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.523764, "lon": -0.087569}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490010108C", "indicator": "Stop C", "stopLetter": "C", "modes": ["bus"], "icsCode": "1000169", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G15194G", "hubNaptanCode": "HUBOLD", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490010108C", "commonName": "Old Street Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.527338, "lon": -0.088357}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490015193S", "indicator": "Stand B", "stopLetter": "B", "modes": ["bus"], "icsCode": "1000169", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G15194G", "hubNaptanCode": "HUBOLD", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490015193S", "commonName": "Old Street Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.527186, "lon": -0.087887}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490015194F", "indicator": "Stop F", "stopLetter": "F", "modes": ["bus"], "icsCode": "1000169", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G15194G", "hubNaptanCode": "HUBOLD", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490015194F", "commonName": "Old Street Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.525566, "lon": -0.088863}], "lat": 51.527338, "lon": -0.088357}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "4900OLDST3", "indicator": "Entrance 1", "stopLetter": "1", "modes": [], "icsCode": "1000169", "stopType": "NaptanRailEntrance", "stationNaptan": "910GOLDST", "hubNaptanCode": "HUBOLD", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "4900OLDST3", "commonName": "Old Street Rail Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.525579, "lon": -0.086917}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "4900OLDST5", "indicator": "Entrance 2", "stopLetter": "2", "modes": [], "icsCode": "1000169", "stopType": "NaptanRailEntrance", "stationNaptan": "910GOLDST", "hubNaptanCode": "HUBOLD", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "4900OLDST5", "commonName": "Old Street Rail Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.525278, "lon": -0.087765}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "4900OLDST6", "indicator": "Entrance 3", "stopLetter": "3", "modes": [], "icsCode": "1000169", "stopType": "NaptanRailEntrance", "stationNaptan": "910GOLDST", "hubNaptanCode": "HUBOLD", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "4900OLDST6", "commonName": "Old Street Rail Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.525463, "lon": -0.088075}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "4900OLDST8", "indicator": "Entrance 4", "stopLetter": "4", "modes": [], "icsCode": "1000169", "stopType": "NaptanRailEntrance", "stationNaptan": "910GOLDST", "hubNaptanCode": "HUBOLD", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "4900OLDST8", "commonName": "Old Street Rail Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.525885, "lon": -0.088028}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9100OLDST0", "modes": [], "icsCode": "1000169", "stopType": "NaptanRailAccessArea", "stationNaptan": "910GOLDST", "hubNaptanCode": "HUBOLD", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "9100OLDST0", "commonName": "Old Street", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 0.0, "lon": 0.0}], "lat": 51.525832, "lon": -0.088535}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "940GZZLUODS", "modes": ["tube"], "icsCode": "1000169", "stopType": "NaptanMetroStation", "stationNaptan": "940GZZLUODS", "hubNaptanCode": "HUBOLD", "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": "940GZZLUODS", "lineIdentifier": ["northern"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["northern"]}], "status": true, "id": "940GZZLUODS", "commonName": "Old 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": "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": "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": "Toilets", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Old Street Station,London Underground Ltd.,Old St,London,EC1Y 1BE"}, {"$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": "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": "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": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_32"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_73"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_119"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_319"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_323"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5116"}], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUODS", "modes": ["tube"], "icsCode": "1000169", "stopType": "NaptanMetroAccessArea", "stationNaptan": "940GZZLUODS", "hubNaptanCode": "HUBOLD", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "9400ZZLUODS", "commonName": "Old Street 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": "Help Points", "sourceSystemKey": "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": "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": "Address", "sourceSystemKey": "StaticObjects", "value": "Old Street Station,London Underground Ltd.,Old St,London,EC1Y 1BE"}, {"$type": "Tfl.Api.Presentation.Entities.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": "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.525864, "lon": -0.08777}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUODS1", "modes": ["tube"], "icsCode": "1000169", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUODS", "hubNaptanCode": "HUBOLD", "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": "940GZZLUODS", "lineIdentifier": ["northern"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["northern"]}], "status": true, "id": "9400ZZLUODS1", "commonName": "Old 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": "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": "Address", "sourceSystemKey": "StaticObjects", "value": "Old Street Station,London Underground Ltd.,Old St,London,EC1Y 1BE"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.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": "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": "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": "Geo", "key": "Zone", "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": "Lifts", "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.524988, "lon": -0.087547}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUODS2", "modes": ["tube"], "icsCode": "1000169", "stopType": "NaptanRailAccessArea", "stationNaptan": "940GZZLUODS", "hubNaptanCode": "HUBOLD", "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": "940GZZLUODS", "lineIdentifier": ["northern"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["northern"]}], "status": true, "id": "9400ZZLUODS2", "commonName": "Old Street 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": "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": "Help Points", "sourceSystemKey": "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": "Old Street Station,London Underground Ltd.,Old St,London,EC1Y 1BE"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.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": "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": "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": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "1"}], "children": [], "lat": 51.524979, "lon": -0.087547}], "lat": 51.525864, "lon": -0.08777}], "lat": 51.526065, "lon": -0.088193}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "HUBPAD", "modes": ["tube", "bus", "elizabeth-line", "national-rail"], "icsCode": "1000174", "stopType": "TransportInterchange", "hubNaptanCode": "HUBPAD", "lines": [{"$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": "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": "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": "7", "name": "7", "uri": "/Line/7", "type": "Line", "crowding": {"$type": "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": "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": "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": "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": "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": "heathrow-express", "name": "Heathrow Express", "uri": "/Line/heathrow-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": "great-western-railway", "name": "Great Western Railway", "uri": "/Line/great-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": "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": "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"}, {"$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": "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": "490006321D", "stationAtcoCode": "490G000450", "lineIdentifier": ["36", "27", "n7", "7", "23", "n27", "46"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490005166Z", "stationAtcoCode": "490G000450", "lineIdentifier": ["23", "16", "205", "36", "7", "n7", "n205"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "910GPADTON", "lineIdentifier": ["heathrow-express", "great-western-railway", "elizabeth"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "940GZZLUPAC", "lineIdentifier": ["district", "circle"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "940GZZLUPAH", "lineIdentifier": ["hammersmith-city"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "910GPADTLL", "lineIdentifier": ["elizabeth"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490001221F", "stationAtcoCode": "490G01221H", "lineIdentifier": ["n27", "7", "n205", "n7", "27", "23", "205", "36"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "940GZZLUPAC", "lineIdentifier": ["bakerloo"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490001221H", "stationAtcoCode": "490G01221H", "lineIdentifier": ["n27", "16", "205", "27", "23", "36", "n7", "7", "n205"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "940GZZLUPAH", "lineIdentifier": ["circle", "hammersmith-city"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "bus", "lineIdentifier": ["36", "27", "n7", "7", "23", "n27", "46", "16", "205", "n205"]}, {"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "national-rail", "lineIdentifier": ["heathrow-express", "great-western-railway"]}, {"$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": "tube", "lineIdentifier": ["district", "circle", "hammersmith-city", "bakerloo"]}], "status": true, "id": "HUBPAD", "commonName": "Paddington", "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, 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": "4"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.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": "Gates", "sourceSystemKey": "StaticObjects", "value": "24"}, {"$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": "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": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "3"}, {"$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": "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": "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": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_186"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_265"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_279"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_290"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_330"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_370"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_397"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_752"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5967"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5487"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5711"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5434"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5499"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5488"}], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490G000450", "modes": ["bus"], "icsCode": "1005166", "stopType": "NaptanOnstreetBusCoachStopPair", "stationNaptan": "490G000450", "hubNaptanCode": "HUBPAD", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490G000450", "commonName": "Paddington Stn / Eastbourne Terrace", "placeType": "StopPoint", "additionalProperties": [], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490005166Z", "indicator": "Stop E", "stopLetter": "E", "modes": ["bus"], "icsCode": "1005166", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G000450", "hubNaptanCode": "HUBPAD", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490005166Z", "commonName": "Paddington Stn / Eastbourne Terrace", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.516475, "lon": -0.178216}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490006321D", "indicator": "Stop D", "stopLetter": "D", "modes": ["bus"], "icsCode": "1005166", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G000450", "hubNaptanCode": "HUBPAD", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490006321D", "commonName": "Paddington Stn / Eastbourne Terrace", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.516947, "lon": -0.179033}], "lat": 51.516947, "lon": -0.179033}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "910GPADTLL", "modes": ["elizabeth-line"], "icsCode": "1001221", "stopType": "NaptanRailStation", "stationNaptan": "910GPADTLL", "hubNaptanCode": "HUBPAD", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "910GPADTLL", "commonName": "Paddington", "placeType": "StopPoint", "additionalProperties": [], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9100PADTLL1", "modes": [], "icsCode": "1001221", "stopType": "NaptanRailAccessArea", "stationNaptan": "910GPADTLL", "hubNaptanCode": "HUBPAD", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "9100PADTLL1", "commonName": "Paddington Rail Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 0.0, "lon": 0.0}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9100PADTLL0", "modes": [], "icsCode": "1001221", "stopType": "NaptanRailAccessArea", "stationNaptan": "910GPADTLL", "hubNaptanCode": "HUBPAD", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "9100PADTLL0", "commonName": "Paddington Rail Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 0.0, "lon": 0.0}], "lat": 51.516449, "lon": -0.177107}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "910GPADTON", "modes": ["national-rail", "elizabeth-line"], "icsCode": "1001221", "stopType": "NaptanRailStation", "stationNaptan": "910GPADTON", "hubNaptanCode": "HUBPAD", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "910GPADTON", "commonName": "London Paddington Rail Station", "placeType": "StopPoint", "additionalProperties": [], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490G01221H", "modes": ["bus"], "icsCode": "1001221", "stopType": "NaptanOnstreetBusCoachStopCluster", "stationNaptan": "490G01221H", "hubNaptanCode": "HUBPAD", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490G01221H", "commonName": "Paddington Station", "placeType": "StopPoint", "additionalProperties": [], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490001221F", "indicator": "Stop F", "stopLetter": "F", "modes": ["bus"], "icsCode": "1001221", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G01221H", "hubNaptanCode": "HUBPAD", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490001221F", "commonName": "Paddington Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.515492, "lon": -0.175704}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490001221H", "indicator": "Stop H", "stopLetter": "H", "modes": ["bus"], "icsCode": "1001221", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G01221H", "hubNaptanCode": "HUBPAD", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490001221H", "commonName": "Paddington Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.516737, "lon": -0.173665}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490001221S2", "indicator": "Stop", "modes": ["bus"], "icsCode": "1001221", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G01221H", "hubNaptanCode": "HUBPAD", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490001221S2", "commonName": "Paddington", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.515616, "lon": -0.174445}], "lat": 51.515492, "lon": -0.175704}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "4900PADTLL0", "indicator": "Entrance 2", "stopLetter": "2", "modes": [], "icsCode": "1001221", "stopType": "NaptanRailEntrance", "stationNaptan": "910GPADTON", "hubNaptanCode": "HUBPAD", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "4900PADTLL0", "commonName": "London Paddington Rail Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.516247, "lon": -0.177389}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "4900PADTON1", "indicator": "Entrance 1", "stopLetter": "1", "modes": [], "icsCode": "1001221", "stopType": "NaptanRailEntrance", "stationNaptan": "910GPADTON", "hubNaptanCode": "HUBPAD", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "4900PADTON1", "commonName": "London Paddington Rail Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.516419, "lon": -0.175782}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9100PADTON0", "modes": [], "icsCode": "1001221", "stopType": "NaptanRailAccessArea", "stationNaptan": "910GPADTON", "hubNaptanCode": "HUBPAD", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "9100PADTON0", "commonName": "Paddington Rail Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 0.0, "lon": 0.0}], "lat": 51.515996, "lon": -0.176174}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "940GZZLUPAC", "modes": ["tube"], "icsCode": "1000174", "stopType": "NaptanMetroStation", "stationNaptan": "940GZZLUPAC", "hubNaptanCode": "HUBPAD", "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"}, {"$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": "940GZZLUPAC", "lineIdentifier": ["district", "circle"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "940GZZLUPAC", "lineIdentifier": ["bakerloo"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["district", "circle", "bakerloo"]}], "status": true, "id": "940GZZLUPAC", "commonName": "Paddington Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_752"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5711"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_4479"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_330"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_370"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_397"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5967"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5487"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_290"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5434"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5499"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5488"}, {"$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": "Payphones", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$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": "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": "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": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Accessibility", "key": "TaxiRankOutsideStation", "sourceSystemKey": "LRAD", "value": "No"}, {"$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": "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": "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": "24"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, 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": "Paddington Underground Stations,London Underground Ltd.,Praed St,London,W2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_279"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_265"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.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": "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": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_186"}], "children": [{"$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": "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": "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": "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": "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": "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": "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": "Gates", "sourceSystemKey": "StaticObjects", "value": "24"}, {"$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": "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.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": "9400ZZLUPAC", "modes": ["tube"], "icsCode": "1000174", "stopType": "NaptanMetroAccessArea", "stationNaptan": "940GZZLUPAC", "hubNaptanCode": "HUBPAD", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "9400ZZLUPAC", "commonName": "Paddington 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": "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": "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": "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": "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": "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": "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": "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": "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": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}], "children": [], "lat": 51.516581, "lon": -0.175689}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUPAC1", "modes": ["tube"], "icsCode": "1000174", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUPAC", "hubNaptanCode": "HUBPAD", "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": "940GZZLUPAC", "lineIdentifier": ["bakerloo"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["bakerloo"]}], "status": true, "id": "9400ZZLUPAC1", "commonName": "Paddington Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$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": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$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": "Payphones", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$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": "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": "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": "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": "Gates", "sourceSystemKey": "StaticObjects", "value": "24"}, {"$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": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "0"}], "children": [], "lat": 51.516299, "lon": -0.17547}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUPAC2", "modes": ["tube"], "icsCode": "1000174", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUPAC", "hubNaptanCode": "HUBPAD", "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": "940GZZLUPAC", "lineIdentifier": ["bakerloo"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["bakerloo"]}], "status": true, "id": "9400ZZLUPAC2", "commonName": "Paddington Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$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": "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": "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": "4"}, {"$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": "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": "Ticket Halls", "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": "VisitorCentre", "key": "Location", "sourceSystemKey": "StaticObjects", "value": "Opposite Platform 1 Paddington Rail 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": "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"}], "children": [], "lat": 51.516345, "lon": -0.175526}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUPAC3", "modes": ["tube"], "icsCode": "1000174", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUPAC", "hubNaptanCode": "HUBPAD", "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": "940GZZLUPAC", "lineIdentifier": ["district", "circle"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["district", "circle"]}], "status": true, "id": "9400ZZLUPAC3", "commonName": "Paddington 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": "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": "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": "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": "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": "Gates", "sourceSystemKey": "StaticObjects", "value": "24"}, {"$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": "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": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$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": "Payphones", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "3"}], "children": [], "lat": 51.515383, "lon": -0.175521}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUPAC4", "modes": ["tube"], "icsCode": "1000174", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUPAC", "hubNaptanCode": "HUBPAD", "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": "940GZZLUPAC", "lineIdentifier": ["circle", "district"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["circle", "district"]}], "status": true, "id": "9400ZZLUPAC4", "commonName": "Paddington Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$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": "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": "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": "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": "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": "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": "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": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$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": "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": "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.515436, "lon": -0.175447}], "lat": 51.516581, "lon": -0.175689}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "940GZZLUPAH", "modes": ["tube"], "icsCode": "1000175", "stopType": "NaptanMetroStation", "stationNaptan": "940GZZLUPAH", "hubNaptanCode": "HUBPAD", "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": "940GZZLUPAH", "lineIdentifier": ["hammersmith-city"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "940GZZLUPAH", "lineIdentifier": ["circle", "hammersmith-city"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["hammersmith-city", "circle"]}], "status": true, "id": "940GZZLUPAH", "commonName": "Paddington (H&C Line)-Underground", "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": "LimitedCapacityLift", "sourceSystemKey": "LRAD", "value": "No"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_186"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_279"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_290"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_330"}, {"$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": "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_164"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_165"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5487"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5711"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5434"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5488"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_752"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_370"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_592"}, {"$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"}], "children": [{"$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": "9400ZZLUPAH", "modes": ["tube"], "icsCode": "1000175", "stopType": "NaptanMetroAccessArea", "stationNaptan": "940GZZLUPAH", "hubNaptanCode": "HUBPAD", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "9400ZZLUPAH", "commonName": "Paddington (H&C Line)-Underground", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.518187, "lon": -0.178306}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUPAH1", "modes": ["tube"], "icsCode": "1000175", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUPAH", "hubNaptanCode": "HUBPAD", "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": "940GZZLUPAH", "lineIdentifier": ["hammersmith-city", "circle"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["hammersmith-city", "circle"]}], "status": true, "id": "9400ZZLUPAH1", "commonName": "Paddington (H&C Line)-Underground", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.518201, "lon": -0.178623}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUPAH2", "modes": ["tube"], "icsCode": "1000175", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUPAH", "hubNaptanCode": "HUBPAD", "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": "940GZZLUPAH", "lineIdentifier": ["hammersmith-city"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["hammersmith-city"]}], "status": true, "id": "9400ZZLUPAH2", "commonName": "Paddington (H&C Line)-Underground", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.518163, "lon": -0.178523}], "lat": 51.518187, "lon": -0.178306}], "lat": 51.516981, "lon": -0.17616}, {"$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": "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": "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": "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": "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": "london-overground", "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": "490004442N", "stationAtcoCode": "490G000429", "lineIdentifier": ["206"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "940GZZLUQPS", "lineIdentifier": ["bakerloo"]}, {"$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": ["316", "36", "187", "6"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "910GQPRK", "lineIdentifier": ["london-overground", "west-midlands-trains"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490000186A", "stationAtcoCode": "490G00186A", "lineIdentifier": ["316", "187", "36", "6"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "bus", "lineIdentifier": ["206", "316", "36", "187", "6"]}, {"$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": "HUBQPW", "commonName": "Queen's Park", "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": "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"}, {"$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": "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": "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"}], "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": "910GQPRK", "modes": ["national-rail", "overground"], "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": ["national-rail", "overground"], "icsCode": "1000186", "stopType": "NaptanRailAccessArea", "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": "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": "940GZZLUQPS", "modes": ["tube"], "icsCode": "1000186", "stopType": "NaptanMetroStation", "stationNaptan": "940GZZLUQPS", "hubNaptanCode": "HUBQPW", "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": "940GZZLUQPS", "lineIdentifier": ["bakerloo"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["bakerloo"]}], "status": true, "id": "940GZZLUQPS", "commonName": "Queen's 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": "Lifts", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$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": "Ticket Halls", "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": "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": "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": "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": "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": "8"}, {"$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": "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"}], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUQPS", "modes": ["tube"], "icsCode": "1000186", "stopType": "NaptanMetroAccessArea", "stationNaptan": "940GZZLUQPS", "hubNaptanCode": "HUBQPW", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "9400ZZLUQPS", "commonName": "Queen'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": "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": "Photo 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": "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": "Gates", "sourceSystemKey": "StaticObjects", "value": "8"}, {"$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": "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": "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": "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": "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": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}], "children": [], "lat": 51.534158, "lon": -0.204574}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUQPS1", "modes": ["tube"], "icsCode": "1000186", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUQPS", "hubNaptanCode": "HUBQPW", "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": "940GZZLUQPS", "lineIdentifier": ["bakerloo"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["bakerloo"]}], "status": true, "id": "9400ZZLUQPS1", "commonName": "Queen's Park Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$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": "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": "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": "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": "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": "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": "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": "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": "Toilets", "sourceSystemKey": "StaticObjects", "value": "no"}], "children": [], "lat": 51.53416, "lon": -0.205309}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUQPS2", "modes": ["tube"], "icsCode": "1000186", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUQPS", "hubNaptanCode": "HUBQPW", "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": "940GZZLUQPS", "lineIdentifier": ["bakerloo"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["bakerloo"]}], "status": true, "id": "9400ZZLUQPS2", "commonName": "Queen's Park 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": "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": "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"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.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": "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": "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": "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": "Facility", "key": "Toilets", "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.534177, "lon": -0.205222}], "lat": 51.534158, "lon": -0.204574}], "lat": 51.534443, "lon": -0.204882}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "HUBRIC", "modes": ["tube", "national-rail", "bus"], "icsCode": "1000193", "stopType": "TransportInterchange", "hubNaptanCode": "HUBRIC", "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": "chiltern-railways", "name": "Chiltern Railways", "uri": "/Line/chiltern-railways", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "940GZZLURKW", "lineIdentifier": ["metropolitan"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "910GRCKMNSW", "lineIdentifier": ["chiltern-railways"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["metropolitan"]}, {"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "national-rail", "lineIdentifier": ["chiltern-railways"]}], "status": true, "id": "HUBRIC", "commonName": "Rickmansworth", "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": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}, {"$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": "Facility", "key": "Help Points", "sourceSystemKey": "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": "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": "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": "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": "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": "yes"}], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "910GRCKMNSW", "modes": ["national-rail"], "icsCode": "1000193", "stopType": "NaptanRailStation", "stationNaptan": "910GRCKMNSW", "hubNaptanCode": "HUBRIC", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "910GRCKMNSW", "commonName": "Rickmansworth Rail Station", "placeType": "StopPoint", "additionalProperties": [], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "940GZZLURKW", "modes": ["tube"], "icsCode": "1000193", "stopType": "NaptanMetroStation", "stationNaptan": "940GZZLURKW", "hubNaptanCode": "HUBRIC", "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": "940GZZLURKW", "lineIdentifier": ["metropolitan"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["metropolitan"]}], "status": true, "id": "940GZZLURKW", "commonName": "Rickmansworth 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": "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": "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": "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": "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": "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": "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": "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": [{"$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": "9400ZZLURKW", "modes": ["tube"], "icsCode": "1000193", "stopType": "NaptanMetroAccessArea", "stationNaptan": "940GZZLURKW", "hubNaptanCode": "HUBRIC", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "9400ZZLURKW", "commonName": "Rickmansworth 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": "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": "Help Points", "sourceSystemKey": "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": "Rickmansworth Station,London Underground Ltd.,Station Approach,Rickmansworth,Herts,WD3 1QY"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.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": "Payphones", "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": "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": "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"}], "children": [], "lat": 51.640207, "lon": -0.473703}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLURKW1", "modes": ["tube"], "icsCode": "1000193", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLURKW", "hubNaptanCode": "HUBRIC", "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": "940GZZLURKW", "lineIdentifier": ["metropolitan"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["metropolitan"]}], "status": true, "id": "9400ZZLURKW1", "commonName": "Rickmansworth 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": "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": "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": "Toilets", "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": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "7"}, {"$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": "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": "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.640198, "lon": -0.47366}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLURKW2", "modes": ["tube"], "icsCode": "1000193", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLURKW", "hubNaptanCode": "HUBRIC", "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": "940GZZLURKW", "lineIdentifier": ["metropolitan"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["metropolitan"]}], "status": true, "id": "9400ZZLURKW2", "commonName": "Rickmansworth 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": "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": "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": "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": "Geo", "key": "Zone", "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": "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": "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": "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.640179, "lon": -0.473574}], "lat": 51.640207, "lon": -0.473703}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "2100RCKMNSW0", "indicator": "entrance", "modes": [], "icsCode": "1000193", "stopType": "NaptanRailEntrance", "stationNaptan": "910GRCKMNSW", "hubNaptanCode": "HUBRIC", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "2100RCKMNSW0", "commonName": "Rickmansworth Rail Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.640376, "lon": -0.473639}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9100RCKMNSW1", "modes": [], "icsCode": "1000193", "stopType": "NaptanRailAccessArea", "stationNaptan": "910GRCKMNSW", "hubNaptanCode": "HUBRIC", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "9100RCKMNSW1", "commonName": "Rickmansworth Rail Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 0.0, "lon": 0.0}], "lat": 51.640247, "lon": -0.473282}], "lat": 51.640247, "lon": -0.473273}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "HUBRMD", "modes": ["tube", "national-rail", "bus", "overground"], "icsCode": "1000192", "stopType": "TransportInterchange", "hubNaptanCode": "HUBRMD", "lines": [{"$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": "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": "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": "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": "r68", "name": "R68", "uri": "/Line/r68", "type": "Line", "crowding": {"$type": "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": "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": "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": "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": "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": "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": "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": "490013511C", "stationAtcoCode": "490G00192M", "lineIdentifier": ["h37", "110", "419", "371", "65", "r68", "n22", "190", "490", "r70", "n65"]}, {"$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", "naptanIdReference": "49000192S1", "stationAtcoCode": "490G00192M", "lineIdentifier": ["419", "190"]}, {"$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": ["london-overground"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490000192D", "stationAtcoCode": "490G00192M", "lineIdentifier": ["n65", "65", "371"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490000192S", "stationAtcoCode": "490G00192M", "lineIdentifier": ["r70", "n22", "r68", "110", "490", "h37"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "bus", "lineIdentifier": ["h37", "110", "419", "371", "65", "r68", "n22", "190", "490", "r70", "n65"]}, {"$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": "tube", "lineIdentifier": ["district"]}, {"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "overground", "lineIdentifier": ["london-overground"]}], "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": "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": "Opening Time", "key": "MonFriFrom", "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": "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": "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": "Cash Machines", "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": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.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"}, {"$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": "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": "Help Points", "sourceSystemKey": "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": "940GZZLURMD", "modes": ["tube"], "icsCode": "1000192", "stopType": "NaptanMetroStation", "stationNaptan": "940GZZLURMD", "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"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "940GZZLURMD", "lineIdentifier": ["district"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["district"]}], "status": true, "id": "940GZZLURMD", "commonName": "Richmond 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": "Opening Time", "key": "MonFriFrom", "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": "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": "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": "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": "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": "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": "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": "Payphones", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$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": "Other Facilities", "sourceSystemKey": "StaticObjects", "value": "none"}, {"$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": "Photo 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": "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": "9400ZZLURMD", "modes": ["tube"], "icsCode": "1000192", "stopType": "NaptanMetroAccessArea", "stationNaptan": "940GZZLURMD", "hubNaptanCode": "HUBRMD", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "9400ZZLURMD", "commonName": "Richmond 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": "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": "Opening Time", "key": "SunTo", "sourceSystemKey": "StaticObjects", "value": "21: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": "Facility", "key": "Gates", "sourceSystemKey": "StaticObjects", "value": "6"}, {"$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": "SatFrom", "sourceSystemKey": "StaticObjects", "value": "06: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": "Help Points", "sourceSystemKey": "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": "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": "Escalators", "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": "Opening Time", "key": "MonFriTo", "sourceSystemKey": "StaticObjects", "value": "21: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": "Opening Time", "key": "SatTo", "sourceSystemKey": "StaticObjects", "value": "21:45"}, {"$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": "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": "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.463237, "lon": -0.301336}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLURMD1", "modes": ["tube"], "icsCode": "1000192", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLURMD", "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"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "940GZZLURMD", "lineIdentifier": ["district"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["district"]}], "status": true, "id": "9400ZZLURMD1", "commonName": "Richmond Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$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": "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": "Opening Time", "key": "SunTo", "sourceSystemKey": "StaticObjects", "value": "21: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": "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": "Opening Time", "key": "SatTo", "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": "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": "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": "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": "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": "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": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "no"}], "children": [], "lat": 51.463254, "lon": -0.301249}], "lat": 51.463237, "lon": -0.301336}], "lat": 51.463152, "lon": -0.301448}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "HUBSBP", "modes": ["overground", "bus", "tube"], "icsCode": "1000224", "stopType": "TransportInterchange", "hubNaptanCode": "HUBSBP", "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": "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": "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": "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"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "940GZZLUSGP", "lineIdentifier": ["bakerloo"]}, {"$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", "naptanIdReference": "490000224A", "stationAtcoCode": "490G00224L", "lineIdentifier": ["79", "440", "112"]}], "lineModeGroups": [{"$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": ["440", "112", "79"]}, {"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "overground", "lineIdentifier": ["london-overground"]}], "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": "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": "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": "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": "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": "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": "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": "Bridge", "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"}], "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": "940GZZLUSGP", "modes": ["tube"], "icsCode": "1000224", "stopType": "NaptanMetroStation", "stationNaptan": "940GZZLUSGP", "hubNaptanCode": "HUBSBP", "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": "940GZZLUSGP", "lineIdentifier": ["bakerloo"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["bakerloo"]}], "status": true, "id": "940GZZLUSGP", "commonName": "Stonebridge 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": "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": "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": "Help Points", "sourceSystemKey": "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": "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": "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"}], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUSGP", "modes": ["tube"], "icsCode": "1000224", "stopType": "NaptanMetroAccessArea", "stationNaptan": "940GZZLUSGP", "hubNaptanCode": "HUBSBP", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "9400ZZLUSGP", "commonName": "Stonebridge Park 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": "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": "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": "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": "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": "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"}], "children": [], "lat": 51.543959, "lon": -0.275892}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUSGP1", "modes": ["tube"], "icsCode": "1000224", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUSGP", "hubNaptanCode": "HUBSBP", "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": "940GZZLUSGP", "lineIdentifier": ["bakerloo"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["bakerloo"]}], "status": true, "id": "9400ZZLUSGP1", "commonName": "Stonebridge 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": "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": "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 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": "Stonebridge Park,London Overground Ltd.,North Circular Road,London,NW10 0RL"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "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": "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"}], "children": [], "lat": 51.543976, "lon": -0.275848}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUSGP2", "indicator": "northbound", "modes": ["tube"], "icsCode": "1000224", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUSGP", "hubNaptanCode": "HUBSBP", "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": "940GZZLUSGP", "lineIdentifier": ["bakerloo"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["bakerloo"]}], "status": true, "id": "9400ZZLUSGP2", "commonName": "Stonebridge Park Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$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": "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": "Help Points", "sourceSystemKey": "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 601 4867"}, {"$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": "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": "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": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "0"}], "children": [], "lat": 51.543913, "lon": -0.275807}], "lat": 51.543959, "lon": -0.275892}], "lat": 51.544041, "lon": -0.275859}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "HUBSDE", "modes": ["overground", "bus", "dlr"], "icsCode": "1000202", "stopType": "TransportInterchange", "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"}, {"$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": "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": "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": "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": "910GSHADWEL", "lineIdentifier": ["london-overground"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490000202A", "stationAtcoCode": "490G00202A", "lineIdentifier": ["d3", "100"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "940GZZDLSHA", "lineIdentifier": ["dlr"]}, {"$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": "overground", "lineIdentifier": ["london-overground"]}, {"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "bus", "lineIdentifier": ["d3", "100", "339"]}, {"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "dlr", "lineIdentifier": ["dlr"]}], "status": true, "id": "HUBSDE", "commonName": "Shadwell", "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": "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": "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": "Escalators", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$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": "Opening Time", "key": "MonFriTo", "sourceSystemKey": "StaticObjects", "value": "10: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": "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": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_552"}, {"$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_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_443"}, {"$type": "Tfl.Api.Presentation.Entities.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"}], "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", "stopType": "NaptanMetroPlatform", "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": ["tube", "bus", "overground"], "icsCode": "1000213", "stopType": "TransportInterchange", "hubNaptanCode": "HUBSOK", "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": "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"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "940GZZLUSKT", "lineIdentifier": ["bakerloo"]}, {"$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"]}], "lineModeGroups": [{"$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": ["223"]}, {"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "overground", "lineIdentifier": ["london-overground"]}], "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": "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": "940GZZLUSKT", "modes": ["tube"], "icsCode": "1000213", "stopType": "NaptanMetroStation", "stationNaptan": "940GZZLUSKT", "hubNaptanCode": "HUBSOK", "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": "940GZZLUSKT", "lineIdentifier": ["bakerloo"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["bakerloo"]}], "status": true, "id": "940GZZLUSKT", "commonName": "South Kenton 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": "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": "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 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": "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": "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": "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": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUSKT", "modes": ["tube"], "icsCode": "1000213", "stopType": "NaptanMetroAccessArea", "stationNaptan": "940GZZLUSKT", "hubNaptanCode": "HUBSOK", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "9400ZZLUSKT", "commonName": "South Kenton 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": "Escalators", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$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": "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": "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": "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": "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": "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"}], "children": [], "lat": 51.570232, "lon": -0.308433}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUSKT1", "modes": ["tube"], "icsCode": "1000213", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUSKT", "hubNaptanCode": "HUBSOK", "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": "940GZZLUSKT", "lineIdentifier": ["bakerloo"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["bakerloo"]}], "status": true, "id": "9400ZZLUSKT1", "commonName": "South Kenton Underground 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": "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": "Photo 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": "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": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 601 4867"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.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": "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": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}], "children": [], "lat": 51.570341, "lon": -0.308559}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUSKT2", "modes": ["tube"], "icsCode": "1000213", "stopType": "NaptanRailAccessArea", "stationNaptan": "940GZZLUSKT", "hubNaptanCode": "HUBSOK", "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": "940GZZLUSKT", "lineIdentifier": ["bakerloo"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["bakerloo"]}], "status": true, "id": "9400ZZLUSKT2", "commonName": "South Kenton 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": "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": "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": "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": "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": "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": "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": "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.570359, "lon": -0.308572}], "lat": 51.570232, "lon": -0.308433}], "lat": 51.570229, "lon": -0.308448}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "HUBSPB", "modes": ["national-rail", "bus", "tube", "overground"], "icsCode": "1000203", "stopType": "TransportInterchange", "hubNaptanCode": "HUBSPB", "lines": [{"$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"}, {"$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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "london-overground", "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": "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": "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": "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": "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": "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", "naptanIdReference": "490015036L", "stationAtcoCode": "490G00203A", "lineIdentifier": ["94", "148", "n207"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490000203D", "stationAtcoCode": "490G00203A", "lineIdentifier": ["31", "49", "228", "c1", "316"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490015036K", "stationAtcoCode": "490G00203A", "lineIdentifier": ["295", "283", "220", "95", "272", "n72", "72"]}, {"$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": "490000203B", "stationAtcoCode": "490G00203A", "lineIdentifier": ["31", "237", "207", "49", "c1", "260", "316", "sl8"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "940GZZLUSBC", "lineIdentifier": ["central"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490015059H", "stationAtcoCode": "490G00203A", "lineIdentifier": ["295"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490000203C", "stationAtcoCode": "490G00203A", "lineIdentifier": ["237", "sl8", "260", "207"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490015059G", "stationAtcoCode": "490G00203A", "lineIdentifier": ["148", "n207", "94"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490000203A", "stationAtcoCode": "490G00203A", "lineIdentifier": ["228"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "bus", "lineIdentifier": ["94", "148", "n207", "31", "49", "228", "c1", "316", "295", "283", "220", "95", "272", "n72", "72", "237", "207", "260", "sl8"]}, {"$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"]}], "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": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5931"}, {"$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": "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": "BikePoints_667"}, {"$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_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": "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"}], "children": [{"$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": "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"}, {"$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"}], "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": "940GZZLUSBC", "modes": ["tube"], "icsCode": "1000203", "stopType": "NaptanMetroStation", "stationNaptan": "940GZZLUSBC", "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"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "940GZZLUSBC", "lineIdentifier": ["central"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["central"]}], "status": true, "id": "940GZZLUSBC", "commonName": "Shepherd's Bush (Central) 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": "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": "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": "Escalators", "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": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$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": "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": "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": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$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_647"}, {"$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": "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": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.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": "9400ZZLUSBC", "modes": ["tube"], "icsCode": "1000203", "stopType": "NaptanMetroAccessArea", "stationNaptan": "940GZZLUSBC", "hubNaptanCode": "HUBSPB", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "9400ZZLUSBC", "commonName": "Shepherd's Bush (Central) 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": "Toilets", "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": "Facility", "key": "Help Points", "sourceSystemKey": "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": "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": "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": "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": "Other Facilities", "sourceSystemKey": "StaticObjects", "value": "none"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}], "children": [], "lat": 51.504376, "lon": -0.218813}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUSBC1", "modes": ["tube"], "icsCode": "1000203", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUSBC", "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"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "940GZZLUSBC", "lineIdentifier": ["central"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["central"]}], "status": true, "id": "9400ZZLUSBC1", "commonName": "Shepherd's Bush (Central) Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$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": "Photo 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"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.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": "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": "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": "Help Points", "sourceSystemKey": "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": "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.504564, "lon": -0.218129}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUSBC2", "modes": ["tube"], "icsCode": "1000203", "stopType": "NaptanRailAccessArea", "stationNaptan": "940GZZLUSBC", "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"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "940GZZLUSBC", "lineIdentifier": ["central"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["central"]}], "status": true, "id": "9400ZZLUSBC2", "commonName": "Shepherd's Bush (Central Line)", "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": "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": "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": "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"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.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": "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": "Photo 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.504572, "lon": -0.2181}], "lat": 51.504376, "lon": -0.218813}], "lat": 51.504791, "lon": -0.219213}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "HUBSRA", "modes": ["overground", "bus", "national-rail", "international-rail", "elizabeth-line", "tube", "dlr"], "icsCode": "1000226", "stopType": "TransportInterchange", "hubNaptanCode": "HUBSRA", "lines": [{"$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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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", "naptanIdReference": "490012904N", "stationAtcoCode": "490G000773", "lineIdentifier": ["262", "n86", "104", "257", "d8", "86", "238", "25", "473", "158", "678"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490019793S", "stationAtcoCode": "490G00019793", "lineIdentifier": ["339", "n205", "388", "108", "97"]}, {"$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", "naptanIdReference": "490019793W", "stationAtcoCode": "490G00019793", "lineIdentifier": ["308", "388", "97", "241", "n205"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "910GSTFD", "lineIdentifier": ["c2c", "greater-anglia"]}, {"$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", "naptanIdReference": "490012904C", "stationAtcoCode": "490G000773", "lineIdentifier": ["241", "308", "n8"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490012904Q", "stationAtcoCode": "490G000773", "lineIdentifier": ["241", "n8"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490012904A", "stationAtcoCode": "490G000773", "lineIdentifier": ["257", "69", "158"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490012904D", "stationAtcoCode": "490G000773", "lineIdentifier": ["238", "276", "473", "104", "262"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "940GZZDLSTD", "lineIdentifier": ["dlr"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "940GZZLUSTD", "lineIdentifier": ["central"]}, {"$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": "490012904B", "stationAtcoCode": "490G000773", "lineIdentifier": ["n86", "425", "86", "25", "n25"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490012904T", "stationAtcoCode": "490G000773", "lineIdentifier": ["n25", "25", "276", "d8", "425", "n8"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490019793X", "stationAtcoCode": "490G00019793", "lineIdentifier": ["339", "388", "108"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "940GZZLUSTD", "lineIdentifier": ["jubilee"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "bus", "lineIdentifier": ["262", "n86", "104", "257", "d8", "86", "238", "25", "473", "158", "678", "339", "n205", "388", "108", "97", "308", "241", "n8", "69", "276", "425", "n25"]}, {"$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": ["greater-anglia", "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": "dlr", "lineIdentifier": ["dlr"]}, {"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["central", "jubilee"]}], "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": "9400ZZDLSTD3", "indicator": "Platform 16", "stopLetter": "16", "modes": [], "icsCode": "1000226", "stopType": "NaptanMetroPlatform", "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": "9400ZZDLSTD1", "indicator": "Platform 4B", "stopLetter": "4B", "modes": [], "icsCode": "1000226", "stopType": "NaptanMetroPlatform", "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": "9400ZZDLSTD4", "indicator": "Platform 17", "stopLetter": "17", "modes": [], "icsCode": "1000226", "stopType": "NaptanMetroPlatform", "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": "910GSTFD", "modes": ["elizabeth-line", "overground", "national-rail"], "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": "london-overground", "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": "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": "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"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "910GSTFD", "lineIdentifier": ["greater-anglia", "c2c"]}], "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": "overground", "lineIdentifier": ["london-overground"]}, {"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "elizabeth-line", "lineIdentifier": ["elizabeth"]}], "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": "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": "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": "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": "WiFi", "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": "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": "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": "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": "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}, {"$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": "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}], "lat": 51.541895, "lon": -0.003397}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "940GZZLUSTD", "modes": ["tube"], "icsCode": "1000226", "stopType": "NaptanMetroStation", "stationNaptan": "940GZZLUSTD", "hubNaptanCode": "HUBSRA", "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": "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": "940GZZLUSTD", "lineIdentifier": ["central"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "940GZZLUSTD", "lineIdentifier": ["jubilee"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["central", "jubilee"]}], "status": true, "id": "940GZZLUSTD", "commonName": "Stratford 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": "Cash Machines", "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": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$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": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$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": "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": "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": "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": "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": "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": "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": "9400ZZLUSTD", "modes": ["tube"], "icsCode": "1000226", "stopType": "NaptanMetroAccessArea", "stationNaptan": "940GZZLUSTD", "hubNaptanCode": "HUBSRA", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "9400ZZLUSTD", "commonName": "Stratford Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$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": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$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": "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": "Lifts", "sourceSystemKey": "StaticObjects", "value": "5"}, {"$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": "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": "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": "Photo 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"}], "children": [], "lat": 51.541806, "lon": -0.003458}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUSTD1", "indicator": "Platform 3A", "stopLetter": "3A", "modes": ["tube"], "icsCode": "1000226", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUSTD", "hubNaptanCode": "HUBSRA", "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": "940GZZLUSTD", "lineIdentifier": ["central"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["central"]}], "status": true, "id": "9400ZZLUSTD1", "commonName": "Stratford 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"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.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": "Lifts", "sourceSystemKey": "StaticObjects", "value": "5"}, {"$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": "Cash Machines", "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": "Euro Cash Machines", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$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": "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"}, {"$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": "Help 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.542326, "lon": -0.002311}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUSTD2", "indicator": "Platform 3", "stopLetter": "3", "modes": ["tube"], "icsCode": "1000226", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUSTD", "hubNaptanCode": "HUBSRA", "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": "940GZZLUSTD", "lineIdentifier": ["central"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["central"]}], "status": true, "id": "9400ZZLUSTD2", "commonName": "Stratford 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": "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": "Payphones", "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": "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": "Stratford Station BR Station St,London,E15 1DE"}, {"$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": "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": "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"}], "children": [], "lat": 51.542328, "lon": -0.002426}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUSTD3", "indicator": "Platform 6", "stopLetter": "6", "modes": ["tube"], "icsCode": "1000226", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUSTD", "hubNaptanCode": "HUBSRA", "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": "940GZZLUSTD", "lineIdentifier": ["jubilee"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["jubilee"]}], "status": true, "id": "9400ZZLUSTD3", "commonName": "Stratford 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": "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": "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": "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": "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": "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": "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": "Cash Machines", "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": "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": "Escalators", "sourceSystemKey": "StaticObjects", "value": "2"}], "children": [], "lat": 51.54233, "lon": -0.002541}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUSTD4", "indicator": "Platform 13", "stopLetter": "13", "modes": ["tube"], "icsCode": "1000226", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUSTD", "hubNaptanCode": "HUBSRA", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "9400ZZLUSTD4", "commonName": "Stratford Underground 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": "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": "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": "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": "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": "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": "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": "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"}, {"$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"}], "children": [], "lat": 51.540512, "lon": -0.0035}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUSTD5", "indicator": "Platform 14", "stopLetter": "14", "modes": ["tube"], "icsCode": "1000226", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUSTD", "hubNaptanCode": "HUBSRA", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "9400ZZLUSTD5", "commonName": "Stratford Underground 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": "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": "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": "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": "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": "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": "Help Points", "sourceSystemKey": "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": "Ticket Halls", "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": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "4"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "5"}], "children": [], "lat": 51.54051, "lon": -0.003356}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUSTD6", "indicator": "Platform 15", "stopLetter": "15", "modes": ["tube"], "icsCode": "1000226", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUSTD", "hubNaptanCode": "HUBSRA", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "9400ZZLUSTD6", "commonName": "Stratford Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$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": "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": "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": "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": "23"}, {"$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": "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": "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": "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.540507, "lon": -0.003212}], "lat": 51.541806, "lon": -0.003458}], "lat": 51.541508, "lon": -0.00241}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "HUBSRU", "modes": ["national-rail", "bus", "tube"], "icsCode": "1000214", "stopType": "TransportInterchange", "hubNaptanCode": "HUBSRU", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "chiltern-railways", "name": "Chiltern Railways", "uri": "/Line/chiltern-railways", "type": "Line", "crowding": {"$type": "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": "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": "910GSRUISLP", "lineIdentifier": ["chiltern-railways"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490000214A", "stationAtcoCode": "490G00241F", "lineIdentifier": ["114"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "940GZZLUSRP", "lineIdentifier": ["central"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490000214B", "stationAtcoCode": "490G00241F", "lineIdentifier": ["114"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "national-rail", "lineIdentifier": ["chiltern-railways"]}, {"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "bus", "lineIdentifier": ["114"]}, {"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["central"]}], "status": true, "id": "HUBSRU", "commonName": "South Ruislip", "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": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "South Ruislip Station,London Underground Ltd.,Station Approach,Ruislip,Middx,HA4 6TP"}, {"$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": "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": "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": "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": "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": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_3569"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "CarParks_800462"}], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "910GSRUISLP", "modes": ["national-rail"], "icsCode": "1000214", "stopType": "NaptanRailStation", "stationNaptan": "910GSRUISLP", "hubNaptanCode": "HUBSRU", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "910GSRUISLP", "commonName": "South Ruislip Rail Station", "placeType": "StopPoint", "additionalProperties": [], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490G00241F", "modes": ["bus"], "icsCode": "1000214", "stopType": "NaptanOnstreetBusCoachStopCluster", "stationNaptan": "490G00241F", "hubNaptanCode": "HUBSRU", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490G00241F", "commonName": "South Ruislip Station", "placeType": "StopPoint", "additionalProperties": [], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000214A", "indicator": "Stop A", "stopLetter": "A", "modes": ["bus"], "icsCode": "1000214", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00241F", "hubNaptanCode": "HUBSRU", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000214A", "commonName": "South Ruislip Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.558337, "lon": -0.397074}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000214B", "indicator": "Stop B", "stopLetter": "B", "modes": ["bus"], "icsCode": "1000214", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00241F", "hubNaptanCode": "HUBSRU", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000214B", "commonName": "South Ruislip Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.557297, "lon": -0.395365}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000214E", "indicator": "Stop EB", "stopLetter": "EB", "modes": ["bus"], "icsCode": "1000214", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00241F", "hubNaptanCode": "HUBSRU", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000214E", "commonName": "South Ruislip Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.556253, "lon": -0.399268}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000241F", "indicator": "Stop WB", "stopLetter": "WB", "modes": ["bus"], "icsCode": "1000214", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00241F", "hubNaptanCode": "HUBSRU", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000241F", "commonName": "South Ruislip Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.555947, "lon": -0.399221}], "lat": 51.558337, "lon": -0.397074}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "4900SRUISLP1", "indicator": "Entrance 1", "stopLetter": "1", "modes": [], "icsCode": "1000214", "stopType": "NaptanRailEntrance", "stationNaptan": "910GSRUISLP", "hubNaptanCode": "HUBSRU", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "4900SRUISLP1", "commonName": "South Ruislip Rail Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.556453, "lon": -0.398727}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "4900SRUISLP2", "indicator": "Entrance 2", "stopLetter": "2", "modes": [], "icsCode": "1000214", "stopType": "NaptanRailEntrance", "stationNaptan": "910GSRUISLP", "hubNaptanCode": "HUBSRU", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "4900SRUISLP2", "commonName": "South Ruislip Rail Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.556549, "lon": -0.398536}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9100SRUISLP0", "modes": [], "icsCode": "1000214", "stopType": "NaptanRailAccessArea", "stationNaptan": "910GSRUISLP", "hubNaptanCode": "HUBSRU", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "9100SRUISLP0", "commonName": "South Ruislip Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 0.0, "lon": 0.0}], "lat": 51.55692, "lon": -0.399259}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "940GZZLUSRP", "modes": ["tube"], "icsCode": "1000214", "stopType": "NaptanMetroStation", "stationNaptan": "940GZZLUSRP", "hubNaptanCode": "HUBSRU", "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": "940GZZLUSRP", "lineIdentifier": ["central"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["central"]}], "status": true, "id": "940GZZLUSRP", "commonName": "South Ruislip 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": "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": "South Ruislip Station,London Underground Ltd.,Station Approach,Ruislip,Middx,HA4 6TP"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, 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": "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, 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": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_3569"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "CarParks_800462"}], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUSRP", "modes": ["tube"], "icsCode": "1000214", "stopType": "NaptanMetroAccessArea", "stationNaptan": "940GZZLUSRP", "hubNaptanCode": "HUBSRU", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "9400ZZLUSRP", "commonName": "South Ruislip 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": "South Ruislip Station,London Underground Ltd.,Station Approach,Ruislip,Middx,HA4 6TP"}, {"$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": "Help Points", "sourceSystemKey": "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": "Toilets", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$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": "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": "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.556853, "lon": -0.398915}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUSRP1", "modes": ["tube"], "icsCode": "1000214", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUSRP", "hubNaptanCode": "HUBSRU", "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": "940GZZLUSRP", "lineIdentifier": ["central"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["central"]}], "status": true, "id": "9400ZZLUSRP1", "commonName": "South Ruislip 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": "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": "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": "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": "South Ruislip Station,London Underground Ltd.,Station Approach,Ruislip,Middx,HA4 6TP"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo 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": "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"}], "children": [], "lat": 51.556967, "lon": -0.399373}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUSRP2", "modes": ["tube"], "icsCode": "1000214", "stopType": "NaptanRailAccessArea", "stationNaptan": "940GZZLUSRP", "hubNaptanCode": "HUBSRU", "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": "940GZZLUSRP", "lineIdentifier": ["central"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["central"]}], "status": true, "id": "9400ZZLUSRP2", "commonName": "South Ruislip 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": "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": "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": "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": "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": "South Ruislip Station,London Underground Ltd.,Station Approach,Ruislip,Middx,HA4 6TP"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.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": "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.556958, "lon": -0.399373}], "lat": 51.556853, "lon": -0.398915}], "lat": 51.556893, "lon": -0.399076}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "HUBSVS", "modes": ["tube", "bus", "national-rail", "overground"], "icsCode": "1000201", "stopType": "TransportInterchange", "hubNaptanCode": "HUBSVS", "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": "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": "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": "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": "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": "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"}, {"$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": "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": "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": "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": "910GSEVNSIS", "lineIdentifier": ["greater-anglia", "london-overground"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490000201J", "stationAtcoCode": "490G00201I", "lineIdentifier": ["476", "259", "318", "349", "149", "279", "n279", "n73", "243"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490015081Q", "stationAtcoCode": "490G00201I", "lineIdentifier": ["n73", "243", "149", "318", "349", "476"]}, {"$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", "stationAtcoCode": "940GZZLUSVS", "lineIdentifier": ["victoria"]}, {"$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": "490015081O", "stationAtcoCode": "490G000859", "lineIdentifier": ["349", "476", "318", "149", "243", "n73"]}], "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": ["476", "259", "318", "349", "149", "279", "n279", "n73", "243", "41", "n41"]}, {"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["victoria"]}], "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": "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": "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": "910GSEVNSIS", "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": "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": "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": "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": "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": "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": "910GSEVNSIS", "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": "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": "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": "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."}], "children": [], "lat": 51.5826, "lon": -0.075227}], "lat": 51.582268, "lon": -0.07527}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "940GZZLUSVS", "modes": ["tube"], "icsCode": "1000201", "stopType": "NaptanMetroStation", "stationNaptan": "940GZZLUSVS", "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"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "940GZZLUSVS", "lineIdentifier": ["victoria"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["victoria"]}], "status": true, "id": "940GZZLUSVS", "commonName": "Seven Sisters 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": "Bridge", "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": "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": "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": "ServiceInfo", "key": "Night", "sourceSystemKey": "TransXchangeETL", "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": "Photo 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": "Toilets", "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": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "3"}], "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": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.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": "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": "Gates", "sourceSystemKey": "StaticObjects", "value": "13"}, {"$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": "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": "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": "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": "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"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.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": "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"}], "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": "9400ZZLUSVS", "modes": ["tube"], "icsCode": "1000201", "stopType": "NaptanMetroAccessArea", "stationNaptan": "940GZZLUSVS", "hubNaptanCode": "HUBSVS", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "9400ZZLUSVS", "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": "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": "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": "Photo 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": "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": "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": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "2"}], "children": [], "lat": 51.58333, "lon": -0.072584}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUSVS1", "modes": ["tube"], "icsCode": "1000201", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUSVS", "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"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "940GZZLUSVS", "lineIdentifier": ["victoria"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["victoria"]}], "status": true, "id": "9400ZZLUSVS1", "commonName": "Seven Sisters 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": "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": "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"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.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": "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": "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": "Help 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"}], "children": [], "lat": 51.582433, "lon": -0.073863}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUSVS2", "modes": ["tube"], "icsCode": "1000201", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUSVS", "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"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "940GZZLUSVS", "lineIdentifier": ["victoria"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["victoria"]}], "status": true, "id": "9400ZZLUSVS2", "commonName": "Seven Sisters 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": "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": "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": "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": "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": "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": "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": "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": "13"}], "children": [], "lat": 51.58239, "lon": -0.07398}], "lat": 51.58333, "lon": -0.072584}], "lat": 51.582931, "lon": -0.073306}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "HUBSYD", "modes": ["overground", "national-rail", "bus"], "icsCode": "1001289", "stopType": "TransportInterchange", "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"}, {"$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": "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": "122", "name": "122", "uri": "/Line/122", "type": "Line", "crowding": {"$type": "Tfl.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"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490005453E", "stationAtcoCode": "490G000630", "lineIdentifier": ["197", "176", "202", "122"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490005453F", "stationAtcoCode": "490G000630", "lineIdentifier": ["176", "202", "197", "122"]}], "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": ["197", "176", "202", "122"]}], "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": "Geo", "key": "Zone", "sourceSystemKey": "SingleFareFinder", "value": "3"}, {"$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": "SpecificEntranceRequired", "sourceSystemKey": "LRAD", "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. Use the Peak Hill Gardens entrance for platform 1. Use the Station Approach entrance for platform 2"}], "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": "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": "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": "london-overground", "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": "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": "HUBTCR", "modes": ["elizabeth-line", "bus", "tube"], "icsCode": "1000235", "stopType": "TransportInterchange", "hubNaptanCode": "HUBTCR", "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "14", "name": "14", "uri": "/Line/14", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "940GZZLUTCR", "lineIdentifier": ["northern"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "910GTOTCTRD", "lineIdentifier": ["elizabeth"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490000235X", "stationAtcoCode": "490G00235Z", "lineIdentifier": ["19", "n98", "n55", "n38", "n207", "n19", "n25", "55", "98", "n8", "38", "n41"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490000235N", "stationAtcoCode": "490G00235Z", "lineIdentifier": ["188", "n1", "n171"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490000235C", "stationAtcoCode": "490G00235C", "lineIdentifier": ["73", "29", "n253", "n29", "24", "n5", "390", "n279", "n73", "n20"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490000235YB", "stationAtcoCode": "490G00235DS", "lineIdentifier": ["n73", "n8", "390", "55", "98", "n207", "n55", "n25", "73", "n98"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "940GZZLUTCR", "lineIdentifier": ["central"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490000235W1", "stationAtcoCode": "490G00235E", "lineIdentifier": ["176", "14"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490000235V", "stationAtcoCode": "490G00235V", "lineIdentifier": ["n73", "n8", "73", "390", "98", "55", "n25", "n207", "n55", "n98"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["northern", "central"]}, {"$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": ["19", "n98", "n55", "n38", "n207", "n19", "n25", "55", "98", "n8", "38", "n41", "188", "n1", "n171", "73", "29", "n253", "n29", "24", "n5", "390", "n279", "n73", "n20", "176", "14"]}], "status": true, "id": "HUBTCR", "commonName": "Tottenham Court Road", "placeType": "StopPoint", "additionalProperties": [{"$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"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.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": "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": "Ticket Halls", "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": "Help Points", "sourceSystemKey": "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": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_15"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_88"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_109"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_192"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_244"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_260"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_306"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_358"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_364"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_383"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_386"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5358"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5043"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5468"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5379"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5516"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5655"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5580"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5074"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5090"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5481"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5233"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5017"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5141"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5816"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_4139"}], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "910GTOTCTRD", "modes": ["elizabeth-line"], "icsCode": "1000235", "stopType": "NaptanRailStation", "stationNaptan": "910GTOTCTRD", "hubNaptanCode": "HUBTCR", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "910GTOTCTRD", "commonName": "Tottenham Court Road", "placeType": "StopPoint", "additionalProperties": [], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9100TOTCTRD1", "modes": [], "icsCode": "1000235", "stopType": "NaptanRailAccessArea", "stationNaptan": "910GTOTCTRD", "hubNaptanCode": "HUBTCR", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "9100TOTCTRD1", "commonName": "Tottenham Court Road Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.515542, "lon": -0.129682}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9100TOTCTRD0", "modes": [], "icsCode": "1000235", "stopType": "NaptanRailAccessArea", "stationNaptan": "910GTOTCTRD", "hubNaptanCode": "HUBTCR", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "9100TOTCTRD0", "commonName": "Tottenham Court Road Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 0.0, "lon": 0.0}], "lat": 51.515542, "lon": -0.129682}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "940GZZLUTCR", "modes": ["tube"], "icsCode": "1000235", "stopType": "NaptanMetroStation", "stationNaptan": "940GZZLUTCR", "hubNaptanCode": "HUBTCR", "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"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "940GZZLUTCR", "lineIdentifier": ["central"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "940GZZLUTCR", "lineIdentifier": ["northern"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["central", "northern"]}], "status": true, "id": "940GZZLUTCR", "commonName": "Tottenham Court Road Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5580"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5074"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5090"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5481"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5233"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5141"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5816"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_4139"}, {"$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": "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": "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": "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": "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": "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": "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": "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": "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": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_15"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_24"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_88"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_109"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_192"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_244"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_260"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_306"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_358"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_364"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_383"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_386"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5358"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5043"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5468"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5379"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5516"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5655"}], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490G00235C", "modes": ["bus"], "icsCode": "1000235", "stopType": "NaptanOnstreetBusCoachStopCluster", "stationNaptan": "490G00235C", "hubNaptanCode": "HUBTCR", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490G00235C", "commonName": "Tottenham Court Road Station", "placeType": "StopPoint", "additionalProperties": [], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000235C", "indicator": "Stop C", "stopLetter": "C", "modes": ["bus"], "icsCode": "1000235", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00235C", "hubNaptanCode": "HUBTCR", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000235C", "commonName": "Tottenham Court Road Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.517674, "lon": -0.131541}], "lat": 51.517674, "lon": -0.131541}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490G00235DS", "modes": ["bus"], "icsCode": "1000235", "stopType": "NaptanOnstreetBusCoachStopCluster", "stationNaptan": "490G00235DS", "hubNaptanCode": "HUBTCR", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490G00235DS", "commonName": "Tottenham Court Road Station", "placeType": "StopPoint", "additionalProperties": [], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000235YB", "indicator": "Stop YB", "stopLetter": "YB", "modes": ["bus"], "icsCode": "1000235", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00235DS", "hubNaptanCode": "HUBTCR", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000235YB", "commonName": "Tottenham Court Road Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.516096, "lon": -0.13407}], "lat": 51.516096, "lon": -0.13407}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490G00235E", "modes": ["bus"], "icsCode": "1000235", "stopType": "NaptanOnstreetBusCoachStopCluster", "stationNaptan": "490G00235E", "hubNaptanCode": "HUBTCR", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490G00235E", "commonName": "Tottenham Court Road Station", "placeType": "StopPoint", "additionalProperties": [], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000235W1", "indicator": "Stop S", "stopLetter": "S", "modes": ["bus"], "icsCode": "1000235", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00235E", "hubNaptanCode": "HUBTCR", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000235W1", "commonName": "Tottenham Court Road Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.515556, "lon": -0.128428}], "lat": 51.515556, "lon": -0.128428}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490G00235V", "modes": ["bus"], "icsCode": "1000235", "stopType": "NaptanOnstreetBusCoachStopCluster", "stationNaptan": "490G00235V", "hubNaptanCode": "HUBTCR", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490G00235V", "commonName": "Tottenham Court Road Station", "placeType": "StopPoint", "additionalProperties": [], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000235V", "indicator": "Stop V", "stopLetter": "V", "modes": ["bus"], "icsCode": "1000235", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00235V", "hubNaptanCode": "HUBTCR", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000235V", "commonName": "Tottenham Court Road Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.516377, "lon": -0.131954}], "lat": 51.516377, "lon": -0.131954}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490G00235Z", "modes": ["bus"], "icsCode": "1000235", "stopType": "NaptanOnstreetBusCoachStopCluster", "stationNaptan": "490G00235Z", "hubNaptanCode": "HUBTCR", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490G00235Z", "commonName": "Tottenham Court Road Station", "placeType": "StopPoint", "additionalProperties": [], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000235N", "indicator": "Stop T", "stopLetter": "T", "modes": ["bus"], "icsCode": "1000235", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00235Z", "hubNaptanCode": "HUBTCR", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000235N", "commonName": "Tottenham Court Road", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.51602, "lon": -0.12874}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000235X", "indicator": "Stop X", "stopLetter": "X", "modes": ["bus"], "icsCode": "1000235", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00235Z", "hubNaptanCode": "HUBTCR", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000235X", "commonName": "Tottenham Court Road Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.516685, "lon": -0.128122}], "lat": 51.51602, "lon": -0.12874}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "4900TOTCTRD0", "indicator": "Entrance 5", "stopLetter": "5", "modes": [], "icsCode": "1000235", "stopType": "NaptanRailEntrance", "stationNaptan": "940GZZLUTCR", "hubNaptanCode": "HUBTCR", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "4900TOTCTRD0", "commonName": "Tottenham Court Road Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.515846, "lon": -0.134166}, {"$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": "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": "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": "Tottenham Court Road Station,London Underground Ltd.,Oxford St,London,W1"}, {"$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": "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": "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": "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"}], "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": "9400ZZLUTCR", "modes": ["tube"], "icsCode": "1000235", "stopType": "NaptanMetroAccessArea", "stationNaptan": "940GZZLUTCR", "hubNaptanCode": "HUBTCR", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "9400ZZLUTCR", "commonName": "Tottenham Court Road Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$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": "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": "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": "Payphones", "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": "Ticket Halls", "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": "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": "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": "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.516426, "lon": -0.13041}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUTCR1", "modes": ["tube"], "icsCode": "1000235", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUTCR", "hubNaptanCode": "HUBTCR", "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": "940GZZLUTCR", "lineIdentifier": ["central"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["central"]}], "status": true, "id": "9400ZZLUTCR1", "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": "Lifts", "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": "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": "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": "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": "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": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}], "children": [], "lat": 51.516408, "lon": -0.131549}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUTCR2", "modes": ["tube"], "icsCode": "1000235", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUTCR", "hubNaptanCode": "HUBTCR", "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": "940GZZLUTCR", "lineIdentifier": ["northern"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["northern"]}], "status": true, "id": "9400ZZLUTCR2", "commonName": "Tottenham Court Road 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": "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": "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": "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": "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": "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": "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": "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": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "no"}], "children": [], "lat": 51.515941, "lon": -0.13043}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUTCR3", "modes": ["tube"], "icsCode": "1000235", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUTCR", "hubNaptanCode": "HUBTCR", "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": "940GZZLUTCR", "lineIdentifier": ["northern"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["northern"]}], "status": true, "id": "9400ZZLUTCR3", "commonName": "Tottenham Court 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": "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": "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": "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": "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": "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": "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": "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"}], "children": [], "lat": 51.515904, "lon": -0.130402}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUTCR4", "modes": ["tube"], "icsCode": "1000235", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUTCR", "hubNaptanCode": "HUBTCR", "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": "940GZZLUTCR", "lineIdentifier": ["central"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["central"]}], "status": true, "id": "9400ZZLUTCR4", "commonName": "Tottenham Court Road 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": "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": "13"}, {"$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": "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": "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": "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": "Photo 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.51594, "lon": -0.130401}], "lat": 51.516426, "lon": -0.13041}], "lat": 51.516018, "lon": -0.130888}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "HUBTOM", "modes": ["bus", "national-rail", "tube"], "icsCode": "1000236", "stopType": "TransportInterchange", "hubNaptanCode": "HUBTOM", "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": "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": "w4", "name": "W4", "uri": "/Line/w4", "type": "Line", "crowding": {"$type": "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": "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": "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": "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": "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", "naptanIdReference": "490009917B", "stationAtcoCode": "490G000667", "lineIdentifier": ["123", "230", "w4", "n73"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "910GTTNHMHL", "lineIdentifier": ["greater-anglia"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "49009917SW", "stationAtcoCode": "490G000667", "lineIdentifier": ["230", "123", "n73"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490009917T", "stationAtcoCode": "490G000667", "lineIdentifier": ["41", "n41"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "49009917N", "stationAtcoCode": "490G000667", "lineIdentifier": ["192"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490009917Y", "stationAtcoCode": "490G000667", "lineIdentifier": ["192", "w4"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490009917D", "stationAtcoCode": "490G000667", "lineIdentifier": ["n41", "41"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "940GZZLUTMH", "lineIdentifier": ["victoria"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "bus", "lineIdentifier": ["123", "230", "w4", "n73", "41", "n41", "192"]}, {"$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": "tube", "lineIdentifier": ["victoria"]}], "status": true, "id": "HUBTOM", "commonName": "Tottenham Hale", "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": "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": "Tottenham Hale Underground Station,London Underground Ltd.,Station Rd,London,N17 9LR"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.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": "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": "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": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.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": "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, 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": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "CarParks_800494"}], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490G000667", "modes": ["bus"], "icsCode": "1009917", "stopType": "NaptanBusCoachStation", "stationNaptan": "490G000667", "hubNaptanCode": "HUBTOM", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490G000667", "commonName": "Tottenham Hale Bus Station", "placeType": "StopPoint", "additionalProperties": [], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490009917A", "indicator": "->S3", "modes": ["bus"], "icsCode": "1009917", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G000667", "hubNaptanCode": "HUBTOM", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490009917A", "commonName": "Tottenham Hale Bus Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.588857, "lon": -0.061046}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490009917B", "indicator": "Stop A", "stopLetter": "A", "modes": ["bus"], "icsCode": "1009917", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G000667", "hubNaptanCode": "HUBTOM", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490009917B", "commonName": "Tottenham Hale Bus Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.58834, "lon": -0.060765}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490009917D", "indicator": "Stop D", "stopLetter": "D", "modes": ["bus"], "icsCode": "1009917", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G000667", "hubNaptanCode": "HUBTOM", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490009917D", "commonName": "Tottenham Hale Bus Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.588334, "lon": -0.060924}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490009917T", "indicator": "Stop E", "stopLetter": "E", "modes": ["bus"], "icsCode": "1009917", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G000667", "hubNaptanCode": "HUBTOM", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490009917T", "commonName": "Tottenham Hale Bus Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.588337, "lon": -0.061155}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490009917Y", "indicator": "Stop C", "stopLetter": "C", "modes": ["bus"], "icsCode": "1009917", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G000667", "hubNaptanCode": "HUBTOM", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490009917Y", "commonName": "Tottenham Hale Bus Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.588574, "lon": -0.061304}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "49009917N", "indicator": "Stop F", "stopLetter": "F", "modes": ["bus"], "icsCode": "1009917", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G000667", "hubNaptanCode": "HUBTOM", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "49009917N", "commonName": "Tottenham Hale Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.589472, "lon": -0.060183}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "49009917SW", "indicator": "->N", "stopLetter": "->N", "modes": ["bus"], "icsCode": "1009917", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G000667", "hubNaptanCode": "HUBTOM", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "49009917SW", "commonName": "Tottenham Hale Bus Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.588248, "lon": -0.061159}], "lat": 51.588337, "lon": -0.061155}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "910GTTNHMHL", "modes": ["national-rail"], "icsCode": "1000236", "stopType": "NaptanRailStation", "stationNaptan": "910GTTNHMHL", "hubNaptanCode": "HUBTOM", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "910GTTNHMHL", "commonName": "Tottenham Hale Rail Station", "placeType": "StopPoint", "additionalProperties": [], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490G00236U", "modes": ["bus"], "icsCode": "1000236", "stopType": "NaptanOnstreetBusCoachStopCluster", "stationNaptan": "910GTTNHMHL", "hubNaptanCode": "HUBTOM", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490G00236U", "commonName": "Tottenham Hale Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.58831, "lon": -0.059929}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "4900TTNHMHL1", "indicator": "Entrance 1", "stopLetter": "1", "modes": [], "icsCode": "1000236", "stopType": "NaptanRailEntrance", "stationNaptan": "910GTTNHMHL", "hubNaptanCode": "HUBTOM", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "4900TTNHMHL1", "commonName": "Tottenham Hale Rail Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.588121, "lon": -0.060587}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "4900TTNHMHL2", "indicator": "Entrance 2", "stopLetter": "2", "modes": [], "icsCode": "1000236", "stopType": "NaptanRailEntrance", "stationNaptan": "910GTTNHMHL", "hubNaptanCode": "HUBTOM", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "4900TTNHMHL2", "commonName": "Tottenham Hale Rail Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.587963, "lon": -0.060261}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "4900TTNHMHL3", "indicator": "Entrance 3", "stopLetter": "3", "modes": [], "icsCode": "1000236", "stopType": "NaptanRailEntrance", "stationNaptan": "910GTTNHMHL", "hubNaptanCode": "HUBTOM", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "4900TTNHMHL3", "commonName": "Tottenham Hale Rail Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.588505, "lon": -0.06044}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9100TTNHML1", "modes": [], "icsCode": "1000236", "stopType": "NaptanRailAccessArea", "stationNaptan": "910GTTNHMHL", "hubNaptanCode": "HUBTOM", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "9100TTNHML1", "commonName": "Tottenham Hale", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 0.0, "lon": 0.0}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9100TTNHMHL0", "modes": [], "icsCode": "1000236", "stopType": "NaptanRailAccessArea", "stationNaptan": "910GTTNHMHL", "hubNaptanCode": "HUBTOM", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "9100TTNHMHL0", "commonName": "Tottenham Hale", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 0.0, "lon": 0.0}], "lat": 51.58831, "lon": -0.059929}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "940GZZLUTMH", "modes": ["tube"], "icsCode": "1000236", "stopType": "NaptanMetroStation", "stationNaptan": "940GZZLUTMH", "hubNaptanCode": "HUBTOM", "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": "940GZZLUTMH", "lineIdentifier": ["victoria"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["victoria"]}], "status": true, "id": "940GZZLUTMH", "commonName": "Tottenham Hale 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": "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": "Tottenham Hale Underground Station,London Underground Ltd.,Station Rd,London,N17 9LR"}, {"$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": "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": "6 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": "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": "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": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "CarParks_800494"}], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUTMH", "modes": ["tube"], "icsCode": "1000236", "stopType": "NaptanMetroAccessArea", "stationNaptan": "940GZZLUTMH", "hubNaptanCode": "HUBTOM", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "9400ZZLUTMH", "commonName": "Tottenham Hale 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": "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": "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": "Payphones", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Tottenham Hale Underground Station,London Underground Ltd.,Station Rd,London,N17 9LR"}, {"$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": "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": "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"}], "children": [], "lat": 51.588108, "lon": -0.060241}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUTMH1", "modes": ["tube"], "icsCode": "1000236", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUTMH", "hubNaptanCode": "HUBTOM", "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": "940GZZLUTMH", "lineIdentifier": ["victoria"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["victoria"]}], "status": true, "id": "9400ZZLUTMH1", "commonName": "Tottenham Hale 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": "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": "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": "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": "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": "Address", "sourceSystemKey": "StaticObjects", "value": "Tottenham Hale Underground Station,London Underground Ltd.,Station Rd,London,N17 9LR"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.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": "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": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}], "children": [], "lat": 51.588309, "lon": -0.061532}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUTMH2", "modes": ["tube"], "icsCode": "1000236", "stopType": "NaptanRailAccessArea", "stationNaptan": "940GZZLUTMH", "hubNaptanCode": "HUBTOM", "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": "940GZZLUTMH", "lineIdentifier": ["victoria"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["victoria"]}], "status": true, "id": "9400ZZLUTMH2", "commonName": "Tottenham Hale", "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": "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": "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": "Tottenham Hale Underground Station,London Underground Ltd.,Station Rd,London,N17 9LR"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.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": "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": "Car park", "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, 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": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "3"}], "children": [], "lat": 51.588318, "lon": -0.061502}], "lat": 51.588108, "lon": -0.060241}], "lat": 51.588315, "lon": -0.06024}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "HUBUPM", "modes": ["overground", "national-rail", "tube", "bus"], "icsCode": "1000242", "stopType": "TransportInterchange", "hubNaptanCode": "HUBUPM", "lines": [{"$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": "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": "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": "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": "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": "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": "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"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490015474C", "stationAtcoCode": "490G000935", "lineIdentifier": ["347", "370", "646", "652", "346", "248"]}, {"$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": "490015474B", "stationAtcoCode": "490G000935", "lineIdentifier": ["370"]}, {"$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", "347", "346"]}, {"$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": "940GZZLUUPM", "lineIdentifier": ["district"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490000242A", "stationAtcoCode": "910GUPMNSTR", "lineIdentifier": ["346", "370", "248", "652", "646", "347"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "bus", "lineIdentifier": ["347", "370", "646", "652", "346", "248"]}, {"$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"]}], "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": "910GUPMNSTR", "modes": ["national-rail", "bus", "overground"], "icsCode": "1000242", "stopType": "NaptanRailStation", "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"}, {"$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": "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": "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": "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": "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": "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", "naptanIdReference": "490000242U", "stationAtcoCode": "910GUPMNSTR", "lineIdentifier": ["248", "347", "346"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490000242A", "stationAtcoCode": "910GUPMNSTR", "lineIdentifier": ["347", "346", "646", "652", "248", "370"]}], "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": "bus", "lineIdentifier": ["248", "347", "346", "646", "652", "370"]}], "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": ["overground", "bus"], "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": ["overground", "bus"], "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": "940GZZLUUPM", "modes": ["tube"], "icsCode": "1000242", "stopType": "NaptanMetroStation", "stationNaptan": "940GZZLUUPM", "hubNaptanCode": "HUBUPM", "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": "940GZZLUUPM", "lineIdentifier": ["district"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["district"]}], "status": true, "id": "940GZZLUUPM", "commonName": "Upminster 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 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": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "6"}, {"$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": "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": "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": "MonFriTo", "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": "Opening Time", "key": "SunFrom", "sourceSystemKey": "StaticObjects", "value": "06: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": "Opening Time", "key": "SunTo", "sourceSystemKey": "StaticObjects", "value": "22:00"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_4865"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.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": "Other Facilities", "sourceSystemKey": "StaticObjects", "value": "Refreshment 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": "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": "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": "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": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUUPM", "modes": ["tube"], "icsCode": "1000242", "stopType": "NaptanMetroAccessArea", "stationNaptan": "940GZZLUUPM", "hubNaptanCode": "HUBUPM", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "9400ZZLUUPM", "commonName": "Upminster 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": "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": "Facility", "key": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$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": "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": "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": "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": "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": "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"}], "children": [], "lat": 51.559063, "lon": 0.250882}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUUPM1", "modes": ["tube"], "icsCode": "1000242", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUUPM", "hubNaptanCode": "HUBUPM", "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": "940GZZLUUPM", "lineIdentifier": ["district"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["district"]}], "status": true, "id": "9400ZZLUUPM1", "commonName": "Upminster 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": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$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": "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": "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": "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": "Opening Time", "key": "MonFriTo", "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": "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": "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": "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": "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": "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": "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"}], "children": [], "lat": 51.559335, "lon": 0.25127}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUUPM2", "modes": ["tube"], "icsCode": "1000242", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUUPM", "hubNaptanCode": "HUBUPM", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "9400ZZLUUPM2", "commonName": "Upminster Underground 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": "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": "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": "Opening Time", "key": "MonFriTo", "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": "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": "Gates", "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": "Refreshment facilities"}, {"$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": "Facility", "key": "Help 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": "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": "22:00"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Opening Time", "key": "SunFrom", "sourceSystemKey": "StaticObjects", "value": "06:45"}], "children": [], "lat": 51.559333, "lon": 0.251357}], "lat": 51.559063, "lon": 0.250882}], "lat": 51.558659, "lon": 0.250855}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "HUBVIC", "modes": ["bus", "national-rail", "tube"], "icsCode": "1000248", "stopType": "TransportInterchange", "hubNaptanCode": "HUBVIC", "lines": [{"$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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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"}, {"$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": "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": "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": "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": "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": "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": "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": "390", "name": "390", "uri": "/Line/390", "type": "Line", "crowding": {"$type": "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": "490014050D", "stationAtcoCode": "490G000812", "lineIdentifier": ["n38", "38"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "940GZZLUVIC", "lineIdentifier": ["victoria"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490000248H", "stationAtcoCode": "490G00248G", "lineIdentifier": ["185", "24", "n26", "26"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490000248N2", "stationAtcoCode": "490G00248G", "lineIdentifier": ["44", "c1"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490014050A", "stationAtcoCode": "490G000812", "lineIdentifier": ["52"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490014050B", "stationAtcoCode": "490G000812", "lineIdentifier": ["3"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490000248ZZ", "stationAtcoCode": "490G00248G", "lineIdentifier": ["n136", "n2", "6", "n32", "13", "2", "36"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "910GVICTRIC", "lineIdentifier": ["southern"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "910GVICTRIC", "lineIdentifier": ["thameslink", "southern", "southeastern", "gatwick-express"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490000248G", "stationAtcoCode": "490G00248G", "lineIdentifier": ["c10", "44", "n44", "170"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "940GZZLUVIC", "lineIdentifier": ["circle", "district"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490014050R", "stationAtcoCode": "490G00248G", "lineIdentifier": ["n11", "c1", "11"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "4900000248S", "stationAtcoCode": "490G00248G", "lineIdentifier": ["6"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490000248S", "stationAtcoCode": "490G00248G", "lineIdentifier": ["24"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490000248YZ", "stationAtcoCode": "490G00248G", "lineIdentifier": ["185", "2", "36", "n2", "n136"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490002139ZZ", "stationAtcoCode": "490G00248G", "lineIdentifier": ["170", "n11", "n32", "6", "n44", "11", "c10", "13"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490014050C", "stationAtcoCode": "490G000812", "lineIdentifier": ["390"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "bus", "lineIdentifier": ["n38", "38", "185", "24", "n26", "26", "44", "c1", "52", "3", "n136", "n2", "6", "n32", "13", "2", "36", "c10", "n44", "170", "n11", "11", "390"]}, {"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["victoria", "circle", "district"]}, {"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "national-rail", "lineIdentifier": ["southern", "thameslink", "southeastern", "gatwick-express"]}], "status": true, "id": "HUBVIC", "commonName": "Victoria", "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": "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, 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": "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": "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": "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": "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": "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"}, {"$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": "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": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_161"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_167"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_177"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_268"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_288"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_316"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_320"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_360"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_799"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_826"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5970"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5744"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5654"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5773"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5743"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5788"}], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490G000812", "modes": ["bus"], "icsCode": "1014050", "stopType": "NaptanBusCoachStation", "stationNaptan": "490G000812", "hubNaptanCode": "HUBVIC", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490G000812", "commonName": "Victoria Bus Station", "placeType": "StopPoint", "additionalProperties": [], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490014050A", "indicator": "Stop A", "stopLetter": "A", "modes": ["bus"], "icsCode": "1014050", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G000812", "hubNaptanCode": "HUBVIC", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490014050A", "commonName": "Victoria Bus Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.495958, "lon": -0.144012}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490014050B", "indicator": "Stop B", "stopLetter": "B", "modes": ["bus"], "icsCode": "1014050", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G000812", "hubNaptanCode": "HUBVIC", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490014050B", "commonName": "Victoria Bus Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.496009, "lon": -0.143822}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490014050C", "indicator": "Stop C", "stopLetter": "C", "modes": ["bus"], "icsCode": "1014050", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G000812", "hubNaptanCode": "HUBVIC", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490014050C", "commonName": "Victoria Bus Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.496071, "lon": -0.143762}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490014050D", "indicator": "Stop D", "stopLetter": "D", "modes": ["bus"], "icsCode": "1014050", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G000812", "hubNaptanCode": "HUBVIC", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490014050D", "commonName": "Victoria Bus Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.496122, "lon": -0.143602}], "lat": 51.496071, "lon": -0.143762}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "910GVICTRIC", "modes": ["national-rail"], "icsCode": "1000248", "stopType": "NaptanRailStation", "stationNaptan": "910GVICTRIC", "hubNaptanCode": "HUBVIC", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "910GVICTRIC", "commonName": "London Victoria Rail Station", "placeType": "StopPoint", "additionalProperties": [], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "910GVICTRIE", "modes": [], "stopType": "NaptanRailStation", "stationNaptan": "910GVICTRIE", "hubNaptanCode": "HUBVIC", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "910GVICTRIE", "commonName": "London Victoria Rail Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.495257, "lon": -0.144559}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9100VICTRIC0", "modes": [], "icsCode": "1000248", "stopType": "NaptanRailAccessArea", "stationNaptan": "910GVICTRIC", "hubNaptanCode": "HUBVIC", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "9100VICTRIC0", "commonName": "Victoria Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 0.0, "lon": 0.0}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9100VICTRIE0", "modes": [], "icsCode": "1000248", "stopType": "NaptanRailAccessArea", "stationNaptan": "910GVICTRIC", "hubNaptanCode": "HUBVIC", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "9100VICTRIE0", "commonName": "Victoria Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 0.0, "lon": 0.0}], "lat": 51.495257, "lon": -0.144559}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "940GZZLUVIC", "modes": ["tube"], "icsCode": "1000248", "stopType": "NaptanMetroStation", "stationNaptan": "940GZZLUVIC", "hubNaptanCode": "HUBVIC", "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": "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": "940GZZLUVIC", "lineIdentifier": ["victoria"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "940GZZLUVIC", "lineIdentifier": ["circle", "district"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["victoria", "circle", "district"]}], "status": true, "id": "940GZZLUVIC", "commonName": "Victoria Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5743"}, {"$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": "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": "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": "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": "Boarding Ramps", "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": "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": "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": "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": "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": "Lifts", "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": "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_161"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_167"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_177"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_268"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_316"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_320"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_360"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_646"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_799"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_826"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5970"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5744"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5654"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5773"}], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490G00248G", "modes": ["bus"], "icsCode": "1000248", "stopType": "NaptanOnstreetBusCoachStopCluster", "stationNaptan": "490G00248G", "hubNaptanCode": "HUBVIC", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490G00248G", "commonName": "Victoria Station", "placeType": "StopPoint", "additionalProperties": [], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "4900000248S", "indicator": "AP", "stopLetter": "AP", "modes": ["bus"], "icsCode": "1000248", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00248G", "hubNaptanCode": "HUBVIC", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "4900000248S", "commonName": "Victoria Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.496253, "lon": -0.143942}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000248G", "indicator": "Stop G", "stopLetter": "G", "modes": ["bus"], "icsCode": "1000248", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00248G", "hubNaptanCode": "HUBVIC", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000248G", "commonName": "Victoria Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.496534, "lon": -0.143498}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000248H", "indicator": "Stop J", "stopLetter": "J", "modes": ["bus"], "icsCode": "1000248", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00248G", "hubNaptanCode": "HUBVIC", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000248H", "commonName": "Victoria Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.495663, "lon": -0.14303}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000248N2", "indicator": "Stop S", "stopLetter": "S", "modes": ["bus"], "icsCode": "1000248", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00248G", "hubNaptanCode": "HUBVIC", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000248N2", "commonName": "Victoria Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.496488, "lon": -0.145114}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000248S", "indicator": "Stop U", "stopLetter": "U", "modes": ["bus"], "icsCode": "1000248", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00248G", "hubNaptanCode": "HUBVIC", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000248S", "commonName": "Victoria Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.496002, "lon": -0.142267}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000248S1", "indicator": "Stop Z5", "stopLetter": "Z5", "modes": ["bus"], "icsCode": "1000248", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00248G", "hubNaptanCode": "HUBVIC", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000248S1", "commonName": "Victoria", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.495364, "lon": -0.145692}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000248S2", "indicator": "Stop Z12", "stopLetter": "Z12", "modes": ["bus"], "icsCode": "1000248", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00248G", "hubNaptanCode": "HUBVIC", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000248S2", "commonName": "Victoria", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.494776, "lon": -0.146091}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000248UA", "indicator": "Stop 11", "stopLetter": "11", "modes": ["bus"], "icsCode": "1000248", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00248G", "hubNaptanCode": "HUBVIC", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000248UA", "commonName": "Victoria Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.49527, "lon": -0.145999}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000248Y", "indicator": "Z14", "stopLetter": "Z14", "modes": ["bus"], "icsCode": "1000248", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00248G", "hubNaptanCode": "HUBVIC", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000248Y", "commonName": "Victoria", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.497886, "lon": -0.14255}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000248YZ", "indicator": "Stop F", "stopLetter": "F", "modes": ["bus"], "icsCode": "1000248", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00248G", "hubNaptanCode": "HUBVIC", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000248YZ", "commonName": "Victoria Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.49622, "lon": -0.143526}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000248Z", "indicator": "16", "stopLetter": "16", "modes": ["bus"], "icsCode": "1000248", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00248G", "hubNaptanCode": "HUBVIC", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000248Z", "commonName": "Victoria", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.496084, "lon": -0.144612}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000248Z7", "indicator": "Stop Z7", "stopLetter": "Z7", "modes": ["bus"], "icsCode": "1000248", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00248G", "hubNaptanCode": "HUBVIC", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000248Z7", "commonName": "Victoria", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.496474, "lon": -0.145979}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000248ZY", "indicator": "Stop JA", "stopLetter": "JA", "modes": ["bus"], "icsCode": "1000248", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00248G", "hubNaptanCode": "HUBVIC", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000248ZY", "commonName": "Victoria Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.496563, "lon": -0.144203}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000248ZZ", "indicator": "Stop H", "stopLetter": "H", "modes": ["bus"], "icsCode": "1000248", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00248G", "hubNaptanCode": "HUBVIC", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000248ZZ", "commonName": "Victoria Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.495846, "lon": -0.143238}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490002139ZZ", "indicator": "Stop E", "stopLetter": "E", "modes": ["bus"], "icsCode": "1000248", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00248G", "hubNaptanCode": "HUBVIC", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490002139ZZ", "commonName": "Victoria Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.496283, "lon": -0.144128}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490007544N2", "indicator": "Stop Z6", "stopLetter": "Z6", "modes": ["bus"], "icsCode": "1000248", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00248G", "hubNaptanCode": "HUBVIC", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490007544N2", "commonName": "Victoria Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.496283, "lon": -0.145842}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490014050R", "indicator": "Stop R", "stopLetter": "R", "modes": ["bus"], "icsCode": "1000248", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00248G", "hubNaptanCode": "HUBVIC", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490014050R", "commonName": "Victoria Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.495773, "lon": -0.145388}], "lat": 51.495773, "lon": -0.145388}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490G00248J", "modes": ["bus"], "icsCode": "1000248", "stopType": "NaptanOnstreetBusCoachStopCluster", "stationNaptan": "490G00248J", "hubNaptanCode": "HUBVIC", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490G00248J", "commonName": "Victoria Station", "placeType": "StopPoint", "additionalProperties": [], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000248J", "indicator": "Stop Z1", "stopLetter": "Z1", "modes": ["bus"], "icsCode": "1000248", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00248J", "hubNaptanCode": "HUBVIC", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000248J", "commonName": "Victoria Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.494767, "lon": -0.142619}], "lat": 51.494767, "lon": -0.142619}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "4900VICTRIC0", "indicator": "Entrance 4", "stopLetter": "4", "modes": [], "icsCode": "1000248", "stopType": "NaptanRailEntrance", "stationNaptan": "940GZZLUVIC", "hubNaptanCode": "HUBVIC", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "4900VICTRIC0", "commonName": "London Victoria Rail Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.495971, "lon": -0.143723}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "4900VICTRIC4", "indicator": "Entrance 3", "stopLetter": "3", "modes": [], "icsCode": "1000248", "stopType": "NaptanRailEntrance", "stationNaptan": "940GZZLUVIC", "hubNaptanCode": "HUBVIC", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "4900VICTRIC4", "commonName": "London Victoria Rail Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.496004, "lon": -0.14352}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "4900VICTRIC1", "indicator": "Entrance 1", "stopLetter": "1", "modes": [], "icsCode": "1000248", "stopType": "NaptanMetroEntrance", "stationNaptan": "940GZZLUVIC", "hubNaptanCode": "HUBVIC", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "4900VICTRIC1", "commonName": "Victoria Underground Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.496596, "lon": -0.143986}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "4900VICTRIC2", "indicator": "Entrance 2", "stopLetter": "2", "modes": [], "icsCode": "1000248", "stopType": "NaptanMetroEntrance", "stationNaptan": "940GZZLUVIC", "hubNaptanCode": "HUBVIC", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "4900VICTRIC2", "commonName": "Victoria Underground Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.496318, "lon": -0.144026}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "4900VICTRIC5", "indicator": "Entrance 7", "stopLetter": "7", "modes": [], "icsCode": "1000248", "stopType": "NaptanMetroEntrance", "stationNaptan": "940GZZLUVIC", "hubNaptanCode": "HUBVIC", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "4900VICTRIC5", "commonName": "Victoria Underground Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.494064, "lon": -0.146538}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "4900VICTRIC7", "indicator": "Entrance 6", "stopLetter": "6", "modes": [], "icsCode": "1000248", "stopType": "NaptanMetroEntrance", "stationNaptan": "940GZZLUVIC", "hubNaptanCode": "HUBVIC", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "4900VICTRIC7", "commonName": "Victoria Underground Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.494308, "lon": -0.143171}, {"$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": "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"}, {"$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": "Toilets", "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": "9400ZZLUVIC", "modes": ["tube"], "icsCode": "1000248", "stopType": "NaptanMetroAccessArea", "stationNaptan": "940GZZLUVIC", "hubNaptanCode": "HUBVIC", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "9400ZZLUVIC", "commonName": "Victoria 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": "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": "Boarding Ramps", "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": "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": "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": "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": "Help Points", "sourceSystemKey": "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, taxi ranks outside station, 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": "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"}], "children": [], "lat": 51.496359, "lon": -0.143102}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUVIC1", "modes": ["tube"], "icsCode": "1000248", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUVIC", "hubNaptanCode": "HUBVIC", "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": "940GZZLUVIC", "lineIdentifier": ["district", "circle"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["district", "circle"]}], "status": true, "id": "9400ZZLUVIC1", "commonName": "Victoria 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": "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": "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": "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"}, {"$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": "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": "Help 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": "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": "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": "Payphones", "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"}], "children": [], "lat": 51.49645, "lon": -0.144899}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUVIC2", "modes": ["tube"], "icsCode": "1000248", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUVIC", "hubNaptanCode": "HUBVIC", "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": "940GZZLUVIC", "lineIdentifier": ["victoria"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["victoria"]}], "status": true, "id": "9400ZZLUVIC2", "commonName": "Victoria 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": "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": "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": "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": "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": "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": "Toilets", "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": "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"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}], "children": [], "lat": 51.49712, "lon": -0.14346}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUVIC3", "modes": ["tube"], "icsCode": "1000248", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUVIC", "hubNaptanCode": "HUBVIC", "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": "940GZZLUVIC", "lineIdentifier": ["victoria"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["victoria"]}], "status": true, "id": "9400ZZLUVIC3", "commonName": "Victoria 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": "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": "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": "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": "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": "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": "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": "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": "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": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Victoria Underground Station,London Underground Ltd.,Victoria St,London,SW1E 5ND"}], "children": [], "lat": 51.497031, "lon": -0.143536}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUVIC4", "modes": ["tube"], "icsCode": "1000248", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUVIC", "hubNaptanCode": "HUBVIC", "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": "940GZZLUVIC", "lineIdentifier": ["district", "circle"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["district", "circle"]}], "status": true, "id": "9400ZZLUVIC4", "commonName": "Victoria 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": "Facility", "key": "Help Points", "sourceSystemKey": "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": "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"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.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": "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": "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": "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": "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, 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": "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": "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.496969, "lon": -0.143596}], "lat": 51.496359, "lon": -0.143102}], "lat": 51.495812, "lon": -0.143826}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "HUBVXH", "modes": ["tube", "national-rail", "bus"], "icsCode": "1000247", "stopType": "TransportInterchange", "hubNaptanCode": "HUBVXH", "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "77", "name": "77", "uri": "/Line/77", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "940GZZLUVXL", "lineIdentifier": ["victoria"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490000247B", "stationAtcoCode": "490G00020252", "lineIdentifier": ["88", "n87", "87", "360"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490000247C", "stationAtcoCode": "490G00020252", "lineIdentifier": ["436", "185", "n136", "36"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "910GVAUXHLM", "lineIdentifier": ["south-western-railway"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490000247F", "stationAtcoCode": "490G00020252", "lineIdentifier": ["196"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490000247H", "stationAtcoCode": "490G00020252", "lineIdentifier": ["156", "452"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490000247A", "stationAtcoCode": "490G00020252", "lineIdentifier": ["185", "36", "2", "n136", "n2"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490000247E", "stationAtcoCode": "490G00020252", "lineIdentifier": ["344", "156", "436"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490000247J", "stationAtcoCode": "490G00020252", "lineIdentifier": ["360", "77", "344"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490000247D", "stationAtcoCode": "490G00020252", "lineIdentifier": ["88", "2", "n2"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490000247G1", "stationAtcoCode": "490G00020252", "lineIdentifier": ["452", "196", "77", "87", "n87"]}], "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": "bus", "lineIdentifier": ["88", "n87", "87", "360", "436", "185", "n136", "36", "196", "156", "452", "2", "n2", "344", "77"]}, {"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "national-rail", "lineIdentifier": ["south-western-railway"]}], "status": true, "id": "HUBVXH", "commonName": "Vauxhall", "placeType": "StopPoint", "additionalProperties": [{"$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": "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": "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": "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": "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": "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": "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": "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": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_74"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_270"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_352"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_437"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_600"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_813"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5533"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5490"}], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490G00020252", "modes": ["bus"], "icsCode": "1020252", "stopType": "NaptanBusCoachStation", "stationNaptan": "490G00020252", "hubNaptanCode": "HUBVXH", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490G00020252", "commonName": "Vauxhall Bus Station", "placeType": "StopPoint", "additionalProperties": [], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000247A", "indicator": "Stop A", "stopLetter": "A", "modes": ["bus"], "icsCode": "1020252", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00020252", "hubNaptanCode": "HUBVXH", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000247A", "commonName": "Vauxhall Bus Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.486213, "lon": -0.123868}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000247B", "indicator": "Stop B", "stopLetter": "B", "modes": ["bus"], "icsCode": "1020252", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00020252", "hubNaptanCode": "HUBVXH", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000247B", "commonName": "Vauxhall Bus Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.485749, "lon": -0.124089}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000247C", "indicator": "Stop C", "stopLetter": "C", "modes": ["bus"], "icsCode": "1020252", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00020252", "hubNaptanCode": "HUBVXH", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000247C", "commonName": "Vauxhall Bus Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.485545, "lon": -0.124284}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000247D", "indicator": "Stop D", "stopLetter": "D", "modes": ["bus"], "icsCode": "1020252", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00020252", "hubNaptanCode": "HUBVXH", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000247D", "commonName": "Vauxhall Bus Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.485499, "lon": -0.124214}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000247E", "indicator": "Stop E", "stopLetter": "E", "modes": ["bus"], "icsCode": "1020252", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00020252", "hubNaptanCode": "HUBVXH", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000247E", "commonName": "Vauxhall Bus Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.485305, "lon": -0.124453}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000247F", "indicator": "Stop F", "stopLetter": "F", "modes": ["bus"], "icsCode": "1020252", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00020252", "hubNaptanCode": "HUBVXH", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000247F", "commonName": "Vauxhall Bus Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.485107, "lon": -0.124446}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000247G1", "indicator": "Stop G", "stopLetter": "G", "modes": ["bus"], "icsCode": "1020252", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00020252", "hubNaptanCode": "HUBVXH", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000247G1", "commonName": "Vauxhall Bus Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.484949, "lon": -0.124683}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000247H", "indicator": "Stop H", "stopLetter": "H", "modes": ["bus"], "icsCode": "1020252", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00020252", "hubNaptanCode": "HUBVXH", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000247H", "commonName": "Vauxhall Bus Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.484859, "lon": -0.124658}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000247J", "indicator": "Stop J", "stopLetter": "J", "modes": ["bus"], "icsCode": "1020252", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00020252", "hubNaptanCode": "HUBVXH", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000247J", "commonName": "Vauxhall Bus Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.484682, "lon": -0.124853}], "lat": 51.484949, "lon": -0.124683}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "910GVAUXHLM", "modes": ["national-rail"], "icsCode": "1000344", "stopType": "NaptanRailStation", "stationNaptan": "910GVAUXHLM", "hubNaptanCode": "HUBVXH", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "910GVAUXHLM", "commonName": "Vauxhall Rail Station", "placeType": "StopPoint", "additionalProperties": [], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "910GVAUXHLW", "modes": [], "stopType": "NaptanRailStation", "stationNaptan": "910GVAUXHLW", "hubNaptanCode": "HUBVXH", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "910GVAUXHLW", "commonName": "Vauxhall Rail Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.48619, "lon": -0.122889}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "4900VAUXHLM", "indicator": "Entrance 2", "stopLetter": "2", "modes": [], "icsCode": "1000344", "stopType": "NaptanRailEntrance", "stationNaptan": "910GVAUXHLM", "hubNaptanCode": "HUBVXH", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "4900VAUXHLM", "commonName": "Vauxhall Rail Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.486094, "lon": -0.123196}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "4900VAUXHLM1", "indicator": "Entrance 1", "stopLetter": "1", "modes": [], "icsCode": "1000344", "stopType": "NaptanRailEntrance", "stationNaptan": "910GVAUXHLM", "hubNaptanCode": "HUBVXH", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "4900VAUXHLM1", "commonName": "Vauxhall Rail Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.485379, "lon": -0.122318}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9100VAUXHLM2", "modes": [], "icsCode": "1000344", "stopType": "NaptanRailAccessArea", "stationNaptan": "910GVAUXHLM", "hubNaptanCode": "HUBVXH", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "9100VAUXHLM2", "commonName": "Vauxhall Rail Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 0.0, "lon": 0.0}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9100VAUXHLM4", "modes": [], "icsCode": "1000344", "stopType": "NaptanRailAccessArea", "stationNaptan": "910GVAUXHLM", "hubNaptanCode": "HUBVXH", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "9100VAUXHLM4", "commonName": "Vauxhall Rail Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 0.0, "lon": 0.0}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9100VAUXHLM1", "modes": [], "icsCode": "1000344", "stopType": "NaptanRailAccessArea", "stationNaptan": "910GVAUXHLM", "hubNaptanCode": "HUBVXH", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "9100VAUXHLM1", "commonName": "Vauxhall Rail Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 0.0, "lon": 0.0}], "lat": 51.48619, "lon": -0.122889}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "940GZZLUVXL", "modes": ["tube"], "icsCode": "1000247", "stopType": "NaptanMetroStation", "stationNaptan": "940GZZLUVXL", "hubNaptanCode": "HUBVXH", "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": "940GZZLUVXL", "lineIdentifier": ["victoria"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["victoria"]}], "status": true, "id": "940GZZLUVXL", "commonName": "Vauxhall 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": "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": "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": "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": "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": "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": "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": "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": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_74"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_146"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_270"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_437"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_600"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_813"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5533"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5490"}], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490G00247N", "modes": ["bus"], "icsCode": "1000247", "stopType": "NaptanOnstreetBusCoachStopCluster", "stationNaptan": "940GZZLUVXL", "hubNaptanCode": "HUBVXH", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490G00247N", "commonName": "Vauxhall", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.485743, "lon": -0.124204}, {"$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": "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": "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": "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": "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": "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": "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": "1"}], "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": "9400ZZLUVXL", "modes": ["tube"], "icsCode": "1000247", "stopType": "NaptanMetroAccessArea", "stationNaptan": "940GZZLUVXL", "hubNaptanCode": "HUBVXH", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "9400ZZLUVXL", "commonName": "Vauxhall 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": "Escalators", "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": "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": "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": "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": "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": "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": "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": "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"}], "children": [], "lat": 51.485743, "lon": -0.124204}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUVXL1", "modes": ["tube"], "icsCode": "1000247", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUVXL", "hubNaptanCode": "HUBVXH", "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": "940GZZLUVXL", "lineIdentifier": ["victoria"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["victoria"]}], "status": true, "id": "9400ZZLUVXL1", "commonName": "Vauxhall Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$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": "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": "1+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": "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"}, {"$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": "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": "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": "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": "Waiting Room", "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.486216, "lon": -0.12453}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUVXL2", "modes": ["tube"], "icsCode": "1000247", "stopType": "NaptanRailAccessArea", "stationNaptan": "940GZZLUVXL", "hubNaptanCode": "HUBVXH", "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": "940GZZLUVXL", "lineIdentifier": ["victoria"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["victoria"]}], "status": true, "id": "9400ZZLUVXL2", "commonName": "Vauxhall", "placeType": "StopPoint", "additionalProperties": [{"$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": "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": "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, 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": "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": "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": "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": "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": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}], "children": [], "lat": 51.486216, "lon": -0.124516}], "lat": 51.485743, "lon": -0.124204}], "lat": 51.485739, "lon": -0.123303}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "HUBWAT", "modes": ["bus", "national-rail", "tube"], "icsCode": "1000254", "stopType": "TransportInterchange", "hubNaptanCode": "HUBWAT", "lines": [{"$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": "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": "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": "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": "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": "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": "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": "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": "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": "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"}, {"$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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "381", "name": "381", "uri": "/Line/381", "type": "Line", "crowding": {"$type": "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": "490000254C", "stationAtcoCode": "490G000404", "lineIdentifier": ["77", "11"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490000254K", "stationAtcoCode": "490G000402", "lineIdentifier": ["68", "1", "188", "n1", "sl6", "n171", "n68"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "940GZZLUWLO", "lineIdentifier": ["waterloo-city"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "910GWATRLMN", "lineIdentifier": ["south-western-railway"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "940GZZLUWLO", "lineIdentifier": ["bakerloo"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490000254D", "stationAtcoCode": "490G000401", "lineIdentifier": ["172", "59", "68", "n171", "n68", "176", "sl6"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490000254EB", "stationAtcoCode": "490G000405", "lineIdentifier": ["243"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "940GZZLUWLO", "lineIdentifier": ["jubilee"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "940GZZLUWLO", "lineIdentifier": ["northern"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490000254A", "stationAtcoCode": "490G000404", "lineIdentifier": ["11", "77"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490000254E", "stationAtcoCode": "490G000401", "lineIdentifier": ["188", "c10", "341", "1", "n1", "139"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490000254W", "stationAtcoCode": "490G000275", "lineIdentifier": ["n381", "c10", "77", "11", "381"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490000254Z", "stationAtcoCode": "490G00254J", "lineIdentifier": ["381", "c10", "n381"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490000254F", "stationAtcoCode": "490G000401", "lineIdentifier": ["341", "172", "c10"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490000254H", "stationAtcoCode": "490G000402", "lineIdentifier": ["176", "139"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490000254J", "stationAtcoCode": "490G000402", "lineIdentifier": ["59", "243"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "bus", "lineIdentifier": ["77", "11", "68", "1", "188", "n1", "sl6", "n171", "n68", "172", "59", "176", "243", "c10", "341", "139", "n381", "381"]}, {"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["waterloo-city", "bakerloo", "jubilee", "northern"]}, {"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "national-rail", "lineIdentifier": ["south-western-railway"]}], "status": true, "id": "HUBWAT", "commonName": "Waterloo", "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": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "3"}, {"$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": "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": "Help 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": "Escalators", "sourceSystemKey": "StaticObjects", "value": "23"}, {"$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": "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": "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": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_154"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_173"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_197"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_272"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_273"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_334"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_336"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_347"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_361"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_374"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_377"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_672"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_819"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5940"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5974"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5279"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5973"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5563"}], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490G000401", "modes": ["bus"], "icsCode": "1003705", "stopType": "NaptanOnstreetBusCoachStopCluster", "stationNaptan": "490G000401", "hubNaptanCode": "HUBWAT", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490G000401", "commonName": "Waterloo Station / Waterloo Road", "placeType": "StopPoint", "additionalProperties": [], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000254D", "indicator": "Stop D", "stopLetter": "D", "modes": ["bus"], "icsCode": "1003705", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G000401", "hubNaptanCode": "HUBWAT", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000254D", "commonName": "Waterloo Station / Waterloo Road", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.502732, "lon": -0.110438}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000254E", "indicator": "Stop E", "stopLetter": "E", "modes": ["bus"], "icsCode": "1003705", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G000401", "hubNaptanCode": "HUBWAT", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000254E", "commonName": "Waterloo Station / Waterloo Road", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.503512, "lon": -0.111414}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000254F", "indicator": "Stop F", "stopLetter": "F", "modes": ["bus"], "icsCode": "1003705", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G000401", "hubNaptanCode": "HUBWAT", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000254F", "commonName": "Waterloo Station / Waterloo Road", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.503635, "lon": -0.111755}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000254QA", "indicator": "Stop C", "stopLetter": "C", "modes": ["bus"], "icsCode": "1003705", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G000401", "hubNaptanCode": "HUBWAT", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000254QA", "commonName": "Waterloo Station / Waterloo Road", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.503011, "lon": -0.111003}], "lat": 51.502732, "lon": -0.110438}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490G000402", "modes": ["bus"], "icsCode": "1003713", "stopType": "NaptanOnstreetBusCoachStopCluster", "stationNaptan": "490G000402", "hubNaptanCode": "HUBWAT", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490G000402", "commonName": "Waterloo Station / Tenison Way", "placeType": "StopPoint", "additionalProperties": [], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000254H", "indicator": "Stop H", "stopLetter": "H", "modes": ["bus"], "icsCode": "1003713", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G000402", "hubNaptanCode": "HUBWAT", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000254H", "commonName": "Waterloo Station / Tenison Way", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.50405, "lon": -0.112401}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000254J", "indicator": "Stop J", "stopLetter": "J", "modes": ["bus"], "icsCode": "1003713", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G000402", "hubNaptanCode": "HUBWAT", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000254J", "commonName": "Waterloo Station / Tenison Way", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.504265, "lon": -0.113458}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000254K", "indicator": "Stop K", "stopLetter": "K", "modes": ["bus"], "icsCode": "1003713", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G000402", "hubNaptanCode": "HUBWAT", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000254K", "commonName": "Waterloo Station / Tenison Way", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.504359, "lon": -0.113742}], "lat": 51.504359, "lon": -0.113742}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490G000404", "modes": ["bus"], "icsCode": "1003722", "stopType": "NaptanOnstreetBusCoachStopCluster", "stationNaptan": "490G000404", "hubNaptanCode": "HUBWAT", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490G000404", "commonName": "Waterloo Station / Upper Taxi Road", "placeType": "StopPoint", "additionalProperties": [], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000254A", "indicator": "Stop A", "stopLetter": "A", "modes": ["bus"], "icsCode": "1003722", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G000404", "hubNaptanCode": "HUBWAT", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000254A", "commonName": "Waterloo Station / Upper Taxi Road", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.503807, "lon": -0.113506}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000254B", "indicator": "Stop B", "stopLetter": "B", "modes": ["bus"], "icsCode": "1003722", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G000404", "hubNaptanCode": "HUBWAT", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000254B", "commonName": "Waterloo Station / Upper Taxi Road", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.503719, "lon": -0.113063}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000254C", "indicator": "->W", "stopLetter": "->W", "modes": ["bus"], "icsCode": "1003722", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G000404", "hubNaptanCode": "HUBWAT", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000254C", "commonName": "Waterloo Station / Upper Taxi Road", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.503597, "lon": -0.112174}], "lat": 51.503719, "lon": -0.113063}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490G000275", "modes": ["bus"], "icsCode": "1001551", "stopType": "NaptanOnstreetBusCoachStopPair", "stationNaptan": "490G000275", "hubNaptanCode": "HUBWAT", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490G000275", "commonName": "Waterloo Station / York Road", "placeType": "StopPoint", "additionalProperties": [], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000254W", "indicator": "Stop W", "stopLetter": "W", "modes": ["bus"], "icsCode": "1001551", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G000275", "hubNaptanCode": "HUBWAT", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000254W", "commonName": "Waterloo Station / York Road", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.503529, "lon": -0.115261}], "lat": 51.503529, "lon": -0.115261}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490G000405", "modes": ["bus"], "icsCode": "1003727", "stopType": "NaptanOnstreetBusCoachStopPair", "stationNaptan": "490G000405", "hubNaptanCode": "HUBWAT", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490G000405", "commonName": "Waterloo Station / Mepham Street", "placeType": "StopPoint", "additionalProperties": [], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000254EB", "indicator": "Stop", "modes": ["bus"], "icsCode": "1003727", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G000405", "hubNaptanCode": "HUBWAT", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000254EB", "commonName": "Waterloo Station / Mepham Street", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.503919, "lon": -0.113198}], "lat": 51.503919, "lon": -0.113198}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490G000736", "modes": ["bus"], "icsCode": "1011890", "stopType": "NaptanOnstreetBusCoachStopPair", "stationNaptan": "490G000736", "hubNaptanCode": "HUBWAT", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490G000736", "commonName": "Sandell Street / Waterloo Station", "placeType": "StopPoint", "additionalProperties": [], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490011890E", "indicator": "Stop", "modes": ["bus"], "icsCode": "1011890", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G000736", "hubNaptanCode": "HUBWAT", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490011890E", "commonName": "Sandell Street / Waterloo Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.503735, "lon": -0.110728}], "lat": 51.503735, "lon": -0.110728}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "910GWATRLMN", "modes": ["national-rail"], "icsCode": "1000254", "stopType": "NaptanRailStation", "stationNaptan": "910GWATRLMN", "hubNaptanCode": "HUBWAT", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "910GWATRLMN", "commonName": "London Waterloo Rail Station", "placeType": "StopPoint", "additionalProperties": [], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490G00254J", "modes": ["bus"], "stopType": "NaptanOnstreetBusCoachStopCluster", "stationNaptan": "490G00254J", "hubNaptanCode": "HUBWAT", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490G00254J", "commonName": "Waterloo Station", "placeType": "StopPoint", "additionalProperties": [], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000254S", "indicator": "Stop", "modes": ["bus"], "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00254J", "hubNaptanCode": "HUBWAT", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000254S", "commonName": "Waterloo Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.502837, "lon": -0.115794}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000254Z", "indicator": "Stop V", "stopLetter": "V", "modes": ["bus"], "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00254J", "hubNaptanCode": "HUBWAT", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000254Z", "commonName": "Waterloo Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.503649, "lon": -0.115429}], "lat": 51.503649, "lon": -0.115429}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490G00254T", "modes": ["bus"], "icsCode": "1000254", "stopType": "NaptanOnstreetBusCoachStopCluster", "stationNaptan": "910GWATRLMN", "hubNaptanCode": "HUBWAT", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490G00254T", "commonName": "Waterloo Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.503299, "lon": -0.113109}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "4900WATRLMN2", "indicator": "Entrance 2", "stopLetter": "2", "modes": [], "icsCode": "1000254", "stopType": "NaptanRailEntrance", "stationNaptan": "910GWATRLMN", "hubNaptanCode": "HUBWAT", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "4900WATRLMN2", "commonName": "London Waterloo Rail Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.503898, "lon": -0.115231}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "4900WATRLMN3", "indicator": "Entrance 3", "stopLetter": "3", "modes": [], "icsCode": "1000254", "stopType": "NaptanRailEntrance", "stationNaptan": "910GWATRLMN", "hubNaptanCode": "HUBWAT", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "4900WATRLMN3", "commonName": "London Waterloo Rail Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.50336, "lon": -0.111464}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9100WATRLMN1", "modes": [], "icsCode": "1000254", "stopType": "NaptanRailAccessArea", "stationNaptan": "910GWATRLMN", "hubNaptanCode": "HUBWAT", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "9100WATRLMN1", "commonName": "Waterloo Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 0.0, "lon": 0.0}], "lat": 51.503299, "lon": -0.113109}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "940GZZLUWLO", "modes": ["tube"], "icsCode": "1000254", "stopType": "NaptanMetroStation", "stationNaptan": "940GZZLUWLO", "hubNaptanCode": "HUBWAT", "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"}, {"$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"}, {"$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": "940GZZLUWLO", "lineIdentifier": ["waterloo-city"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "940GZZLUWLO", "lineIdentifier": ["bakerloo"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "940GZZLUWLO", "lineIdentifier": ["northern"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "940GZZLUWLO", "lineIdentifier": ["jubilee"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["waterloo-city", "bakerloo", "northern", "jubilee"]}], "status": true, "id": "940GZZLUWLO", "commonName": "Waterloo 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": "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": "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": "Ticket Halls", "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": "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": "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": "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, 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": "46"}, {"$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": "Payphones", "sourceSystemKey": "StaticObjects", "value": "6"}, {"$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": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_154"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_173"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_197"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_272"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_273"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_334"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_336"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_347"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_361"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_374"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_377"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_672"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_815"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_819"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5940"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5974"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5279"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5973"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5563"}], "children": [{"$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": "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": "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": "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": "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": "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": "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": "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"}], "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": "Accessibility", "key": "AccessViaLift", "sourceSystemKey": "LRAD", "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": "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": "Help 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": "LimitedCapacityLift", "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": "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": "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": "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": "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": "Accessibility", "key": "SpecificEntranceRequired", "sourceSystemKey": "LRAD", "value": "No"}], "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": "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": "Help Points", "sourceSystemKey": "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": "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": "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.503347, "lon": -0.11119}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUWLO", "modes": ["tube"], "icsCode": "1000254", "stopType": "NaptanMetroAccessArea", "stationNaptan": "940GZZLUWLO", "hubNaptanCode": "HUBWAT", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "9400ZZLUWLO", "commonName": "Waterloo 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": "Escalators", "sourceSystemKey": "StaticObjects", "value": "23"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.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": "46"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo 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": "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": "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": "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": "Help 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": "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": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "3"}], "children": [], "lat": 51.503299, "lon": -0.11478}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUWLO1", "modes": ["tube"], "icsCode": "1000254", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUWLO", "hubNaptanCode": "HUBWAT", "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": "940GZZLUWLO", "lineIdentifier": ["bakerloo"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["bakerloo"]}], "status": true, "id": "9400ZZLUWLO1", "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": "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": "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": "Help Points", "sourceSystemKey": "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": "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": "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": "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": "Ticket Halls", "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": "yes"}], "children": [], "lat": 51.503097, "lon": -0.11512}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUWLO2", "modes": ["tube"], "icsCode": "1000254", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUWLO", "hubNaptanCode": "HUBWAT", "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": "940GZZLUWLO", "lineIdentifier": ["bakerloo"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["bakerloo"]}], "status": true, "id": "9400ZZLUWLO2", "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": "Photo 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": "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": "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": "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": "Help Points", "sourceSystemKey": "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": "Payphones", "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": "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.503052, "lon": -0.115093}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUWLO3", "modes": ["tube"], "icsCode": "1000254", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUWLO", "hubNaptanCode": "HUBWAT", "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": "940GZZLUWLO", "lineIdentifier": ["northern"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["northern"]}], "status": true, "id": "9400ZZLUWLO3", "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": "Facility", "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": "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": "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": "Help 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": "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": "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": "Escalators", "sourceSystemKey": "StaticObjects", "value": "23"}, {"$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": "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": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}], "children": [], "lat": 51.503189, "lon": -0.113574}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUWLO4", "modes": ["tube"], "icsCode": "1000254", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUWLO", "hubNaptanCode": "HUBWAT", "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": "940GZZLUWLO", "lineIdentifier": ["jubilee"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["jubilee"]}], "status": true, "id": "9400ZZLUWLO4", "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": "Photo 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": "Waterloo Underground Station,London Underground Ltd.,York Rd,London,SE1 7ND"}, {"$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": "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, 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": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$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": "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": "0 on platforms, 0 in ticket halls, 0 elsewhere"}], "children": [], "lat": 51.503333, "lon": -0.113021}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUWLO5", "modes": ["tube"], "icsCode": "1000254", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUWLO", "hubNaptanCode": "HUBWAT", "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": "940GZZLUWLO", "lineIdentifier": ["waterloo-city"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["waterloo-city"]}], "status": true, "id": "9400ZZLUWLO5", "commonName": "Waterloo 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": "Payphones", "sourceSystemKey": "StaticObjects", "value": "6"}, {"$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": "Gates", "sourceSystemKey": "StaticObjects", "value": "46"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo 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": "Waterloo Underground Station,London Underground Ltd.,York Rd,London,SE1 7ND"}, {"$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": "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": "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, post office style queuing for tickets, routeways platform to ticket hall."}], "children": [], "lat": 51.502683, "lon": -0.112875}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUWLO6", "modes": ["tube"], "icsCode": "1000254", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUWLO", "hubNaptanCode": "HUBWAT", "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": "940GZZLUWLO", "lineIdentifier": ["waterloo-city"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["waterloo-city"]}], "status": true, "id": "9400ZZLUWLO6", "commonName": "Waterloo Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$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": "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": "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": "Payphones", "sourceSystemKey": "StaticObjects", "value": "6"}, {"$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": "Help Points", "sourceSystemKey": "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": "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": "23"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "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.502738, "lon": -0.11293}], "lat": 51.503299, "lon": -0.11478}], "lat": 51.504269, "lon": -0.113356}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "HUBWBP", "modes": ["overground", "bus", "national-rail", "tube"], "icsCode": "1000260", "stopType": "TransportInterchange", "hubNaptanCode": "HUBWBP", "lines": [{"$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": "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": "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": "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": "london-overground", "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"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490000260P", "stationAtcoCode": "490G00260O", "lineIdentifier": ["430", "n97", "n74", "74"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490000260O", "stationAtcoCode": "490G00260O", "lineIdentifier": ["n97", "430", "n74", "74"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "910GWBRMPTN", "lineIdentifier": ["london-overground"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "940GZZLUWBN", "lineIdentifier": ["district"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "bus", "lineIdentifier": ["430", "n97", "n74", "74"]}, {"$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"]}], "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": "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": "Other Facilities", "sourceSystemKey": "StaticObjects", "value": "canopies over platform (part)."}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.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": "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": "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": "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": "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": "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"}, {"$type": "Tfl.Api.Presentation.Entities.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"}], "children": [], "lat": 51.4868, "lon": -0.194984}], "lat": 51.487061, "lon": -0.195593}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "940GZZLUWBN", "modes": ["tube"], "icsCode": "1000260", "stopType": "NaptanMetroStation", "stationNaptan": "940GZZLUWBN", "hubNaptanCode": "HUBWBP", "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": "940GZZLUWBN", "lineIdentifier": ["district"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["district"]}], "status": true, "id": "940GZZLUWBN", "commonName": "West Brompton Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_782"}, {"$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": "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": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$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": "Facility", "key": "Lifts", "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": "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": "Other Facilities", "sourceSystemKey": "StaticObjects", "value": "canopies over platform (part)."}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.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": "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": "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"}], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUWBN", "modes": ["tube"], "icsCode": "1000260", "stopType": "NaptanMetroAccessArea", "stationNaptan": "940GZZLUWBN", "hubNaptanCode": "HUBWBP", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "9400ZZLUWBN", "commonName": "West Brompton 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": "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"}, {"$type": "Tfl.Api.Presentation.Entities.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)."}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.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": "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": "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": "Gates", "sourceSystemKey": "StaticObjects", "value": "3"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Lifts", "sourceSystemKey": "StaticObjects", "value": "2"}], "children": [], "lat": 51.487268, "lon": -0.195599}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUWBN1", "modes": ["tube"], "icsCode": "1000260", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUWBN", "hubNaptanCode": "HUBWBP", "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": "940GZZLUWBN", "lineIdentifier": ["district"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["district"]}], "status": true, "id": "9400ZZLUWBN1", "commonName": "West Brompton 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": "Help Points", "sourceSystemKey": "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": "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": "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": "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": "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": "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"}], "children": [], "lat": 51.486962, "lon": -0.195006}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUWBN2", "modes": ["tube"], "icsCode": "1000260", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUWBN", "hubNaptanCode": "HUBWBP", "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": "940GZZLUWBN", "lineIdentifier": ["district"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["district"]}], "status": true, "id": "9400ZZLUWBN2", "commonName": "West Brompton 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": "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": "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": "Facility", "key": "Photo 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": "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": "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": "Car park", "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.486916, "lon": -0.194921}], "lat": 51.487268, "lon": -0.195599}], "lat": 51.487168, "lon": -0.195593}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "HUBWCY", "modes": ["overground", "national-rail", "tram", "bus"], "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "64", "name": "64", "uri": "/Line/64", "type": "Line", "crowding": {"$type": "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": "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": "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": "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": "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": "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": "london-overground", "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": "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": "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": "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": "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": "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": "689", "name": "689", "uri": "/Line/689", "type": "Line", "crowding": {"$type": "Tfl.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", "naptanIdReference": "490014420W", "stationAtcoCode": "490G000824", "lineIdentifier": ["403", "166", "645", "407", "264"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490001324W1", "stationAtcoCode": "490G01324W2", "lineIdentifier": ["198", "250", "n250", "289"]}, {"$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": "490014420X", "stationAtcoCode": "490G000824", "lineIdentifier": ["sl7", "410", "154", "407", "645", "157", "264"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490001324W2", "stationAtcoCode": "490G01324W2", "lineIdentifier": ["60", "64", "109", "n109"]}, {"$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", "naptanIdReference": "9400ZZCRWCR1", "stationAtcoCode": "940GZZCRWCR", "lineIdentifier": ["tram"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490014420Z", "stationAtcoCode": "490G000824", "lineIdentifier": ["450", "sl6", "250"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490014420V", "stationAtcoCode": "490G000824", "lineIdentifier": ["157", "450", "367", "194", "410", "sl6", "75", "689"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490014420Y", "stationAtcoCode": "490G000824", "lineIdentifier": ["198", "n109", "250", "60", "289", "64", "n250", "109"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490001324W6", "stationAtcoCode": "490G01324W2", "lineIdentifier": ["250", "n109", "109", "289", "60", "n250"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490014420B8", "stationAtcoCode": "490G000824", "lineIdentifier": ["154", "194", "sl7", "689", "166", "403"]}], "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": "bus", "lineIdentifier": ["403", "166", "645", "407", "264", "198", "250", "n250", "289", "64", "sl7", "410", "154", "157", "60", "109", "n109", "450", "sl6", "367", "194", "75", "689"]}, {"$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"]}], "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", "stopType": "NaptanMetroPlatform", "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": ["national-rail", "overground"], "icsCode": "1001324", "stopType": "NaptanRailStation", "stationNaptan": "910GWCROYDN", "hubNaptanCode": "HUBWCY", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "london-overground", "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": "910GWCROYDN", "lineIdentifier": ["london-overground", "southern"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "910GWCROYDN", "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": "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": "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"}, {"$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": "AccessViaLift", "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": ["national-rail", "overground"], "icsCode": "1001324", "stopType": "NaptanRailAccessArea", "stationNaptan": "910GWCROYDN", "hubNaptanCode": "HUBWCY", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "london-overground", "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": "910GWCROYDN", "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": "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": "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}, {"$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}], "lat": 51.378428, "lon": -0.102585}], "lat": 51.378786, "lon": -0.101939}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "HUBWEH", "modes": ["dlr", "national-rail", "bus", "tube"], "icsCode": "1000262", "stopType": "TransportInterchange", "hubNaptanCode": "HUBWEH", "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": "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": "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"}, {"$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": "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": "940GZZLUWHM", "lineIdentifier": ["jubilee"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "940GZZDLWHM", "lineIdentifier": ["dlr"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "940GZZLUWHM", "lineIdentifier": ["hammersmith-city", "district"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490000262B", "stationAtcoCode": "490G00262A", "lineIdentifier": ["276"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "910GWHAMHL", "lineIdentifier": ["c2c"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490000262A", "stationAtcoCode": "490G00262A", "lineIdentifier": ["276"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["jubilee", "hammersmith-city", "district"]}, {"$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": "bus", "lineIdentifier": ["276"]}, {"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "national-rail", "lineIdentifier": ["c2c"]}], "status": true, "id": "HUBWEH", "commonName": "West Ham", "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": "Escalators", "sourceSystemKey": "StaticObjects", "value": "6"}, {"$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": "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": "West Ham Underground Station,London Underground Ltd.,Manor Rd,London,E15 3BN"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.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": "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": "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": "Photo 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": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5826"}], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "910GWHAMHL", "modes": ["national-rail"], "icsCode": "1000262", "stopType": "NaptanRailStation", "stationNaptan": "910GWHAMHL", "hubNaptanCode": "HUBWEH", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "910GWHAMHL", "commonName": "West Ham Rail Station", "placeType": "StopPoint", "additionalProperties": [], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490G00262A", "modes": ["bus"], "stopType": "NaptanOnstreetBusCoachStopCluster", "stationNaptan": "490G00262A", "hubNaptanCode": "HUBWEH", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490G00262A", "commonName": "West Ham Station", "placeType": "StopPoint", "additionalProperties": [], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000262A", "indicator": "Stop P", "stopLetter": "P", "modes": ["bus"], "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00262A", "hubNaptanCode": "HUBWEH", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000262A", "commonName": "West Ham Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.527951, "lon": 0.00473}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000262B", "indicator": "Stop B", "stopLetter": "B", "modes": ["bus"], "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00262A", "hubNaptanCode": "HUBWEH", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000262B", "commonName": "West Ham Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.527328, "lon": 0.00489}], "lat": 51.527328, "lon": 0.00489}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "4900WHAMHL0", "indicator": "Entrance 1", "stopLetter": "1", "modes": [], "icsCode": "1000262", "stopType": "NaptanRailEntrance", "stationNaptan": "910GWHAMHL", "hubNaptanCode": "HUBWEH", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "4900WHAMHL0", "commonName": "West Ham Rail Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.527766, "lon": 0.005039}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9100WHAMHL0", "modes": [], "icsCode": "1000262", "stopType": "NaptanRailAccessArea", "stationNaptan": "910GWHAMHL", "hubNaptanCode": "HUBWEH", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "9100WHAMHL0", "commonName": "West Ham", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 0.0, "lon": 0.0}], "lat": 51.528489, "lon": 0.005431}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "940GZZDLWHM", "modes": ["dlr"], "stopType": "NaptanMetroStation", "stationNaptan": "940GZZDLWHM", "hubNaptanCode": "HUBWEH", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "940GZZDLWHM", "commonName": "West Ham DLR Station", "placeType": "StopPoint", "additionalProperties": [], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZDLWHM2", "indicator": "Platform 2", "stopLetter": "2", "modes": [], "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZDLWHM", "hubNaptanCode": "HUBWEH", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "9400ZZDLWHM2", "commonName": "West Ham DLR Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 0.0, "lon": 0.0}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZDLWHM1", "indicator": "Platform 1", "stopLetter": "1", "modes": [], "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZDLWHM", "hubNaptanCode": "HUBWEH", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "9400ZZDLWHM1", "commonName": "West Ham DLR Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 0.0, "lon": 0.0}], "lat": 51.527894, "lon": 0.004482}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "940GZZLUWHM", "modes": ["tube"], "icsCode": "1000262", "stopType": "NaptanMetroStation", "stationNaptan": "940GZZLUWHM", "hubNaptanCode": "HUBWEH", "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": "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": "940GZZLUWHM", "lineIdentifier": ["jubilee"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "940GZZLUWHM", "lineIdentifier": ["hammersmith-city", "district"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["jubilee", "hammersmith-city", "district"]}], "status": true, "id": "940GZZLUWHM", "commonName": "West Ham 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": "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": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "West Ham Underground Station,London Underground Ltd.,Manor Rd,London,E15 3BN"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "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": "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": "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": "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": "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": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5826"}], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUWHM", "modes": ["tube"], "icsCode": "1000262", "stopType": "NaptanMetroAccessArea", "stationNaptan": "940GZZLUWHM", "hubNaptanCode": "HUBWEH", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "9400ZZLUWHM", "commonName": "West Ham 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": "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": "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": "2/3"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "West Ham Underground Station,London Underground Ltd.,Manor Rd,London,E15 3BN"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.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": "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": "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": "Photo 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.528136, "lon": 0.005055}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUWHM1", "indicator": "Platform 1", "stopLetter": "1", "modes": ["tube"], "icsCode": "1000262", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUWHM", "hubNaptanCode": "HUBWEH", "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": "940GZZLUWHM", "lineIdentifier": ["district", "hammersmith-city"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["district", "hammersmith-city"]}], "status": true, "id": "9400ZZLUWHM1", "commonName": "West Ham Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "West Ham Underground Station,London Underground Ltd.,Manor Rd,London,E15 3BN"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.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": "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": "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": "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": "Photo 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": "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": "Escalators", "sourceSystemKey": "StaticObjects", "value": "6"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Payphones", "sourceSystemKey": "StaticObjects", "value": "2"}], "children": [], "lat": 51.528558, "lon": 0.005593}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUWHM2", "indicator": "Platform 2", "stopLetter": "2", "modes": ["tube"], "icsCode": "1000262", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUWHM", "hubNaptanCode": "HUBWEH", "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": "940GZZLUWHM", "lineIdentifier": ["jubilee"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["jubilee"]}], "status": true, "id": "9400ZZLUWHM2", "commonName": "West Ham 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": "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": "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": "2"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "West Ham Underground Station,London Underground Ltd.,Manor Rd,London,E15 3BN"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.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": "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": "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": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "0"}], "children": [], "lat": 51.528648, "lon": 0.005597}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUWHM3", "indicator": "Platform 5", "stopLetter": "5", "modes": ["tube"], "icsCode": "1000262", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUWHM", "hubNaptanCode": "HUBWEH", "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": "940GZZLUWHM", "lineIdentifier": ["district", "hammersmith-city"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["district", "hammersmith-city"]}], "status": true, "id": "9400ZZLUWHM3", "commonName": "West Ham 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": "Facility", "key": "Toilets", "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": "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": "Photo 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": "West Ham Underground Station,London Underground Ltd.,Manor Rd,London,E15 3BN"}, {"$type": "Tfl.Api.Presentation.Entities.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/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": "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.527511, "lon": 0.004264}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUWHM4", "indicator": "Platform 6", "stopLetter": "6", "modes": ["tube"], "icsCode": "1000262", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUWHM", "hubNaptanCode": "HUBWEH", "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": "940GZZLUWHM", "lineIdentifier": ["jubilee"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["jubilee"]}], "status": true, "id": "9400ZZLUWHM4", "commonName": "West Ham 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": "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": "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": "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/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": "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": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "West Ham Underground Station,London Underground Ltd.,Manor Rd,London,E15 3BN"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}], "children": [], "lat": 51.527514, "lon": 0.00412}], "lat": 51.528136, "lon": 0.005055}], "lat": 51.528178, "lon": 0.004997}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "HUBWFJ", "modes": ["overground", "national-rail", "bus"], "icsCode": "1001317", "stopType": "TransportInterchange", "hubNaptanCode": "HUBWFJ", "lines": [{"$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"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "london-overground", "name": "London Overground", "uri": "/Line/london-overground", "type": "Line", "crowding": {"$type": "Tfl.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": ["avanti-west-coast", "west-midlands-trains"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "910GWATFDJ", "lineIdentifier": ["west-midlands-trains"]}, {"$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": "national-rail", "lineIdentifier": ["avanti-west-coast", "west-midlands-trains"]}, {"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "overground", "lineIdentifier": ["london-overground"]}], "status": true, "id": "HUBWFJ", "commonName": "Watford Junction", "placeType": "StopPoint", "additionalProperties": [], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "910GWATFDJ", "modes": ["overground", "national-rail"], "icsCode": "1001317", "stopType": "NaptanRailStation", "stationNaptan": "910GWATFDJ", "hubNaptanCode": "HUBWFJ", "lines": [{"$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": "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": "national-rail", "lineIdentifier": ["avanti-west-coast", "west-midlands-trains"]}], "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": ["tube", "bus", "overground"], "icsCode": "1000249", "stopType": "TransportInterchange", "hubNaptanCode": "HUBWHC", "lines": [{"$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": "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": "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": "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": "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": "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": "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": "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": "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"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490000249YY", "stationAtcoCode": "490G00249M", "lineIdentifier": ["w15", "357", "97"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490015259L", "stationAtcoCode": "490G00249M", "lineIdentifier": ["212", "275", "w15", "w19", "w12", "230"]}, {"$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": "490000249XX", "stationAtcoCode": "490G00249M", "lineIdentifier": ["357", "97", "w12", "w15", "w19"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490000249K", "stationAtcoCode": "490G00249K", "lineIdentifier": ["34", "sl2"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "bus", "lineIdentifier": ["w15", "357", "97", "212", "275", "w19", "w12", "230", "34", "sl2"]}, {"$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"]}], "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": "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": "940GZZLUWWL", "modes": ["tube"], "icsCode": "1000249", "stopType": "NaptanMetroStation", "stationNaptan": "940GZZLUWWL", "hubNaptanCode": "HUBWHC", "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": "940GZZLUWWL", "lineIdentifier": ["victoria"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["victoria"]}], "status": true, "id": "940GZZLUWWL", "commonName": "Walthamstow Central 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": "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"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.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": "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": "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": "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": "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": "Help 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": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "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": "9400ZZLUWWL", "modes": ["tube"], "icsCode": "1000249", "stopType": "NaptanMetroAccessArea", "stationNaptan": "940GZZLUWWL", "hubNaptanCode": "HUBWHC", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "9400ZZLUWWL", "commonName": "Walthamstow Central 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": "Toilets", "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": "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": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.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": "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": "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": "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"}], "children": [], "lat": 51.582965, "lon": -0.019885}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUWWL1", "modes": ["tube"], "icsCode": "1000249", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUWWL", "hubNaptanCode": "HUBWHC", "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": "940GZZLUWWL", "lineIdentifier": ["victoria"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["victoria"]}], "status": true, "id": "9400ZZLUWWL1", "commonName": "Walthamstow Central 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": "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 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, 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": "Lifts", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$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": "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": "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": "Help Points", "sourceSystemKey": "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"}], "children": [], "lat": 51.583067, "lon": -0.01952}], "lat": 51.582965, "lon": -0.019885}], "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": "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": "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": "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": "london-overground", "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": "940GZZLUWHP", "lineIdentifier": ["jubilee"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490001330N", "stationAtcoCode": "910GWHMPSTM", "lineIdentifier": ["328", "c11", "139"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "910GWHMDSTD", "lineIdentifier": ["london-overground"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "910GWHMPSTM", "lineIdentifier": ["thameslink"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490000263S", "stationAtcoCode": "490G00263E", "lineIdentifier": ["328", "c11", "139"]}], "lineModeGroups": [{"$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": ["328", "c11", "139"]}, {"$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": ["thameslink"]}], "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": "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": "Car Park", "sourceSystemKey": "NreStationData", "value": "no"}, {"$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": "Left Luggage", "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": "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"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Opening Time", "key": "MonFriFrom", "sourceSystemKey": "NreStationData", "value": "07:00"}], "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": "940GZZLUWHP", "modes": ["tube"], "icsCode": "1000263", "stopType": "NaptanMetroStation", "stationNaptan": "940GZZLUWHP", "hubNaptanCode": "HUBWHD", "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": "940GZZLUWHP", "lineIdentifier": ["jubilee"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["jubilee"]}], "status": true, "id": "940GZZLUWHP", "commonName": "West Hampstead 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": "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": "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": "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": "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": "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": "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": "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."}], "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": [{"$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": "9400ZZLUWHP", "modes": ["tube"], "icsCode": "1000263", "stopType": "NaptanMetroAccessArea", "stationNaptan": "940GZZLUWHP", "hubNaptanCode": "HUBWHD", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "9400ZZLUWHP", "commonName": "West Hampstead 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": "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": "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": "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": "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": "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": "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.546638, "lon": -0.191059}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUWHP1", "modes": ["tube"], "icsCode": "1000263", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUWHP", "hubNaptanCode": "HUBWHD", "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": "940GZZLUWHP", "lineIdentifier": ["jubilee"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["jubilee"]}], "status": true, "id": "9400ZZLUWHP1", "commonName": "West Hampstead 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": "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": "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": "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": "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": "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": "Escalators", "sourceSystemKey": "StaticObjects", "value": "0"}], "children": [], "lat": 51.5468, "lon": -0.190475}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUWHP2", "modes": ["tube"], "icsCode": "1000263", "stopType": "NaptanRailAccessArea", "stationNaptan": "940GZZLUWHP", "hubNaptanCode": "HUBWHD", "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": "940GZZLUWHP", "lineIdentifier": ["jubilee"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["jubilee"]}], "status": true, "id": "9400ZZLUWHP2", "commonName": "West Hampstead 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": "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": "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": "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": "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": "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": "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": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$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"}], "children": [], "lat": 51.546809, "lon": -0.190475}], "lat": 51.546638, "lon": -0.191059}], "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": "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": "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": "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": "london-overground", "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": "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": "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": "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": "487", "name": "487", "uri": "/Line/487", "type": "Line", "crowding": {"$type": "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": "490015057H", "stationAtcoCode": "490G00271H", "lineIdentifier": ["18", "220", "n18"]}, {"$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": "490000271M", "stationAtcoCode": "490G00271L", "lineIdentifier": ["266", "n266", "228"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490014692N", "stationAtcoCode": "490G00271L", "lineIdentifier": ["220", "487"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490000271L", "stationAtcoCode": "490G00271L", "lineIdentifier": ["n266", "266", "228"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490014692E", "stationAtcoCode": "490G00271L", "lineIdentifier": ["487", "220"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "bus", "lineIdentifier": ["18", "220", "n18", "266", "n266", "228", "487"]}, {"$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": "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": "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": "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": "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": "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": "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": "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": "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": "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"}, {"$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"}], "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": "940GZZLUWJN", "modes": ["tube"], "icsCode": "1000271", "stopType": "NaptanMetroStation", "stationNaptan": "940GZZLUWJN", "hubNaptanCode": "HUBWIJ", "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": "940GZZLUWJN", "lineIdentifier": ["bakerloo"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["bakerloo"]}], "status": true, "id": "940GZZLUWJN", "commonName": "Willesden Junction 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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "SunTo", "sourceSystemKey": "StaticObjects", "value": "18:30"}], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUWJN", "modes": ["tube"], "icsCode": "1000271", "stopType": "NaptanMetroAccessArea", "stationNaptan": "940GZZLUWJN", "hubNaptanCode": "HUBWIJ", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "9400ZZLUWJN", "commonName": "Willesden Junction 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": "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": "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": "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": "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": "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": "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": "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": "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"}], "children": [], "lat": 51.532259, "lon": -0.244283}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUWJN1", "modes": ["tube"], "icsCode": "1000271", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUWJN", "hubNaptanCode": "HUBWIJ", "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": "940GZZLUWJN", "lineIdentifier": ["bakerloo"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["bakerloo"]}], "status": true, "id": "9400ZZLUWJN1", "commonName": "Willesden Junction 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": "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": "Willesden Junction,London Overground Ltd.,Station Approach,Harlesden,NW10 4UY"}, {"$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": "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": "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": "Lifts", "sourceSystemKey": "StaticObjects", "value": "2"}, {"$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": "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": "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": "18: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": "Car park", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$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": "Facility", "key": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "no"}], "children": [], "lat": 51.532496, "lon": -0.24449}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUWJN2", "modes": ["tube"], "icsCode": "1000271", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUWJN", "hubNaptanCode": "HUBWIJ", "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": "940GZZLUWJN", "lineIdentifier": ["bakerloo"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["bakerloo"]}], "status": true, "id": "9400ZZLUWJN2", "commonName": "Willesden Junction 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": "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": "Opening Time", "key": "MonFriFrom", "sourceSystemKey": "StaticObjects", "value": "06: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": "Opening Time", "key": "SunFrom", "sourceSystemKey": "StaticObjects", "value": "09:15"}, {"$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": "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": "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": "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": "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": "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": "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": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}], "children": [], "lat": 51.532398, "lon": -0.244537}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUWJN3", "modes": ["tube"], "icsCode": "1000271", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUWJN", "hubNaptanCode": "HUBWIJ", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "9400ZZLUWJN3", "commonName": "Willesden Junction 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": "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": "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": "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": "Help Points", "sourceSystemKey": "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": "09:15"}, {"$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": "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 London Overground only"}, {"$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": "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": "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": "Opening Time", "key": "MonFriFrom", "sourceSystemKey": "StaticObjects", "value": "06:30"}], "children": [], "lat": 51.532325, "lon": -0.244468}], "lat": 51.532259, "lon": -0.244283}], "lat": 51.532556, "lon": -0.243006}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "HUBWIM", "modes": ["national-rail", "tram", "bus", "tube"], "icsCode": "1000272", "stopType": "TransportInterchange", "hubNaptanCode": "HUBWIM", "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "910GWDON", "lineIdentifier": ["south-western-railway"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490014734A", "stationAtcoCode": "490G000930", "lineIdentifier": ["n87", "493", "156"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490014734R", "stationAtcoCode": "490G00014734", "lineIdentifier": ["200", "493", "93"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490014734S", "stationAtcoCode": "490G00014734", "lineIdentifier": ["93", "493", "200"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490015472L", "stationAtcoCode": "490G00272P", "lineIdentifier": ["131", "200", "57", "93", "219", "n87"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490015472D", "stationAtcoCode": "490G00272P", "lineIdentifier": ["93", "131", "57", "219", "n87", "156", "163", "164"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490014738K", "stationAtcoCode": "490G00014738", "lineIdentifier": ["200"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "940GZZLUWIM", "lineIdentifier": ["district"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "9400ZZCRWMB1", "stationAtcoCode": "940GZZCRWMB", "lineIdentifier": ["tram"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490000272P", "stationAtcoCode": "490G00272P", "lineIdentifier": ["n87", "156", "163", "164"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490014734B", "stationAtcoCode": "490G000930", "lineIdentifier": ["n87", "493", "156"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490014738J", "stationAtcoCode": "490G00014738", "lineIdentifier": ["200"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "910GWIMBLDN", "lineIdentifier": ["thameslink"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "national-rail", "lineIdentifier": ["south-western-railway", "thameslink"]}, {"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "bus", "lineIdentifier": ["n87", "493", "156", "200", "93", "131", "57", "219", "163", "164"]}, {"$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": "tram", "lineIdentifier": ["tram"]}], "status": true, "id": "HUBWIM", "commonName": "Wimbledon", "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": "Help Points", "sourceSystemKey": "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": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Wimbledon,London Underground Ltd.,The Broadway,London,SW19 7NL"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.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": "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": "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": "yes (male, female)"}, {"$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": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5382"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5128"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5691"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5679"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5692"}], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490G00014734", "modes": ["bus"], "icsCode": "1014734", "stopType": "NaptanOnstreetBusCoachStopPair", "stationNaptan": "490G00014734", "hubNaptanCode": "HUBWIM", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490G00014734", "commonName": "Wimbledon Hill Road", "placeType": "StopPoint", "additionalProperties": [], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490014734R", "indicator": "Stop R", "stopLetter": "R", "modes": ["bus"], "icsCode": "1014734", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00014734", "hubNaptanCode": "HUBWIM", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490014734R", "commonName": "Wimbledon Hill Road", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.422516, "lon": -0.209369}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490014734S", "indicator": "Stop S", "stopLetter": "S", "modes": ["bus"], "icsCode": "1014734", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00014734", "hubNaptanCode": "HUBWIM", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490014734S", "commonName": "Wimbledon Hill Road", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.422417, "lon": -0.208798}], "lat": 51.422516, "lon": -0.209369}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490G00014738", "modes": ["bus"], "icsCode": "1014738", "stopType": "NaptanOnstreetBusCoachStopPair", "stationNaptan": "490G00014738", "hubNaptanCode": "HUBWIM", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490G00014738", "commonName": "Wimbledon Police Station", "placeType": "StopPoint", "additionalProperties": [], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490014738J", "indicator": "Stop J", "stopLetter": "J", "modes": ["bus"], "icsCode": "1014738", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00014738", "hubNaptanCode": "HUBWIM", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490014738J", "commonName": "Wimbledon Police Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.421008, "lon": -0.204265}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490014738K", "indicator": "Stop K", "stopLetter": "K", "modes": ["bus"], "icsCode": "1014738", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00014738", "hubNaptanCode": "HUBWIM", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490014738K", "commonName": "Wimbledon Police Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.421409, "lon": -0.203415}], "lat": 51.421008, "lon": -0.204265}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490G000930", "modes": ["bus"], "icsCode": "1019043", "stopType": "NaptanOnstreetBusCoachStopPair", "stationNaptan": "490G000930", "hubNaptanCode": "HUBWIM", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490G000930", "commonName": "Alexandra Road / Wimbledon", "placeType": "StopPoint", "additionalProperties": [], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490014734A", "indicator": "Stop A", "stopLetter": "A", "modes": ["bus"], "icsCode": "1019043", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G000930", "hubNaptanCode": "HUBWIM", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490014734A", "commonName": "Alexandra Road / Wimbledon", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.422028, "lon": -0.206886}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490014734B", "indicator": "Stop B", "stopLetter": "B", "modes": ["bus"], "icsCode": "1019043", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G000930", "hubNaptanCode": "HUBWIM", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490014734B", "commonName": "Alexandra Road / Wimbledon", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.421814, "lon": -0.206966}], "lat": 51.422028, "lon": -0.206886}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "910GWDON", "modes": ["national-rail"], "icsCode": "1000272", "stopType": "NaptanRailStation", "stationNaptan": "910GWDON", "hubNaptanCode": "HUBWIM", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "910GWDON", "commonName": "Wimbledon Rail Station", "placeType": "StopPoint", "additionalProperties": [], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "910GWIMBLDN", "modes": ["national-rail"], "icsCode": "1000272", "stopType": "NaptanRailStation", "stationNaptan": "910GWIMBLDN", "hubNaptanCode": "HUBWIM", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "910GWIMBLDN", "commonName": "Wimbledon Rail Station", "placeType": "StopPoint", "additionalProperties": [], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490G00272P", "modes": ["bus"], "icsCode": "1000272", "stopType": "NaptanOnstreetBusCoachStopCluster", "stationNaptan": "490G00272P", "hubNaptanCode": "HUBWIM", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490G00272P", "commonName": "Wimbledon Station", "placeType": "StopPoint", "additionalProperties": [], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000272P", "indicator": "Stop P", "stopLetter": "P", "modes": ["bus"], "icsCode": "1000272", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00272P", "hubNaptanCode": "HUBWIM", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000272P", "commonName": "Wimbledon Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.420893, "lon": -0.206743}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000272Y", "indicator": "->E", "stopLetter": "->E", "modes": ["bus"], "icsCode": "1000272", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00272P", "hubNaptanCode": "HUBWIM", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000272Y", "commonName": "Wimbledon Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.420789, "lon": -0.205798}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000272Z", "indicator": "->NW", "modes": ["bus"], "icsCode": "1000272", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00272P", "hubNaptanCode": "HUBWIM", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000272Z", "commonName": "Wimbledon Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.420342, "lon": -0.206592}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490015472D", "indicator": "Stop D", "stopLetter": "D", "modes": ["bus"], "icsCode": "1000272", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00272P", "hubNaptanCode": "HUBWIM", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490015472D", "commonName": "Wimbledon Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.420657, "lon": -0.205429}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490015472L", "indicator": "Stop L", "stopLetter": "L", "modes": ["bus"], "icsCode": "1000272", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00272P", "hubNaptanCode": "HUBWIM", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490015472L", "commonName": "Wimbledon Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.420288, "lon": -0.206594}], "lat": 51.420893, "lon": -0.206743}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "4900WIMBLDN1", "indicator": "Entrance 1", "stopLetter": "1", "modes": [], "icsCode": "1000272", "stopType": "NaptanRailEntrance", "stationNaptan": "910GWIMBLDN", "hubNaptanCode": "HUBWIM", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "4900WIMBLDN1", "commonName": "Wimbledon Rail Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.421068, "lon": -0.207024}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "4900WIMBLDN2", "indicator": "Entrance 2", "stopLetter": "2", "modes": [], "icsCode": "1000272", "stopType": "NaptanRailEntrance", "stationNaptan": "910GWIMBLDN", "hubNaptanCode": "HUBWIM", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "4900WIMBLDN2", "commonName": "Wimbledon Rail Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.420803, "lon": -0.205567}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9100WIMBLDN1", "modes": [], "icsCode": "1000272", "stopType": "NaptanRailAccessArea", "stationNaptan": "910GWIMBLDN", "hubNaptanCode": "HUBWIM", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "9100WIMBLDN1", "commonName": "Wimbledon", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 0.0, "lon": 0.0}], "lat": 51.421222, "lon": -0.206371}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9100WDON1", "modes": [], "icsCode": "1000272", "stopType": "NaptanRailAccessArea", "stationNaptan": "910GWDON", "hubNaptanCode": "HUBWIM", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "9100WDON1", "commonName": "Wimbledon", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 0.0, "lon": 0.0}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9100WDON2", "modes": [], "icsCode": "1000272", "stopType": "NaptanRailAccessArea", "stationNaptan": "910GWDON", "hubNaptanCode": "HUBWIM", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "9100WDON2", "commonName": "Wimbledon", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 0.0, "lon": 0.0}], "lat": 51.421222, "lon": -0.206385}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "940GZZCRWMB", "modes": ["tram"], "icsCode": "1000272", "stopType": "NaptanMetroStation", "stationNaptan": "940GZZCRWMB", "hubNaptanCode": "HUBWIM", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "940GZZCRWMB", "commonName": "Wimbledon Tram Stop", "placeType": "StopPoint", "additionalProperties": [], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZCRWMB1", "modes": [], "icsCode": "1000272", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZCRWMB", "hubNaptanCode": "HUBWIM", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "9400ZZCRWMB1", "commonName": "Wimbledon", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 0.0, "lon": 0.0}], "lat": 51.421051, "lon": -0.205816}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "940GZZLUWIM", "modes": ["tube"], "icsCode": "1000272", "stopType": "NaptanMetroStation", "stationNaptan": "940GZZLUWIM", "hubNaptanCode": "HUBWIM", "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": "940GZZLUWIM", "lineIdentifier": ["district"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["district"]}], "status": true, "id": "940GZZLUWIM", "commonName": "Wimbledon 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": "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": "Wimbledon,London Underground Ltd.,The Broadway,London,SW19 7NL"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo 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": "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": "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": "Lifts", "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": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5382"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5128"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5691"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5679"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5692"}], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUWIM", "modes": ["tube"], "icsCode": "1000272", "stopType": "NaptanMetroAccessArea", "stationNaptan": "940GZZLUWIM", "hubNaptanCode": "HUBWIM", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "9400ZZLUWIM", "commonName": "Wimbledon 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": "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": "Payphones", "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)"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.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": "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": "Wimbledon,London Underground Ltd.,The Broadway,London,SW19 7NL"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.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"}], "children": [], "lat": 51.421207, "lon": -0.206573}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUWIM1", "modes": ["tube"], "icsCode": "1000272", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUWIM", "hubNaptanCode": "HUBWIM", "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": "940GZZLUWIM", "lineIdentifier": ["district"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["district"]}], "status": true, "id": "9400ZZLUWIM1", "commonName": "Wimbledon Underground Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "Wimbledon,London Underground Ltd.,The Broadway,London,SW19 7NL"}, {"$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": "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": "Toilets", "sourceSystemKey": "StaticObjects", "value": "yes (male, female)"}, {"$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": "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": "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": "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": "Lifts", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Escalators", "sourceSystemKey": "StaticObjects", "value": "0"}], "children": [], "lat": 51.421342, "lon": -0.206625}], "lat": 51.421207, "lon": -0.206573}], "lat": 51.421505, "lon": -0.206444}, {"$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": "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": "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": "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": "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": "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": "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": "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": "london-overground", "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": "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": "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": "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": "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": "490000256", "stationAtcoCode": "490G00256X", "lineIdentifier": ["h17", "223"]}, {"$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", "naptanIdReference": "490000256G", "stationAtcoCode": "490G00256G", "lineIdentifier": ["483", "n83", "83", "92", "182"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "910GWMBY", "lineIdentifier": ["london-overground"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490000256E", "stationAtcoCode": "490G00256G", "lineIdentifier": ["483", "223", "297", "83", "n83", "79"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490000256F", "stationAtcoCode": "490G00256G", "lineIdentifier": ["297", "204", "223", "18", "79", "n18"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490000256H", "stationAtcoCode": "490G00256G", "lineIdentifier": ["18", "92", "182", "n18", "204"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "bus", "lineIdentifier": ["h17", "223", "483", "n83", "83", "92", "182", "297", "79", "204", "18", "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": "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": "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": "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": "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": "Opening Time", "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"}], "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": "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": "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": "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": "Escalators", "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.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": "940GZZLUWYC", "modes": ["tube"], "icsCode": "1000256", "stopType": "NaptanMetroStation", "stationNaptan": "940GZZLUWYC", "hubNaptanCode": "HUBWMB", "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": "940GZZLUWYC", "lineIdentifier": ["bakerloo"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["bakerloo"]}], "status": true, "id": "940GZZLUWYC", "commonName": "Wembley Central 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, 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": "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": "Opening Time", "key": "SatFrom", "sourceSystemKey": "StaticObjects", "value": "09: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": "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": "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": "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": "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": "Wembley Central,London Overground Ltd.,High Road,Wembley,HA9 7AJ"}, {"$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": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUWYC", "modes": ["tube"], "icsCode": "1000256", "stopType": "NaptanMetroAccessArea", "stationNaptan": "940GZZLUWYC", "hubNaptanCode": "HUBWMB", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "9400ZZLUWYC", "commonName": "Wembley Central Underground 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": "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": "12"}, {"$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": "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": "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": "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": "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": "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": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "yes"}], "children": [], "lat": 51.552304, "lon": -0.296852}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUWYC1", "modes": ["tube"], "icsCode": "1000256", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUWYC", "hubNaptanCode": "HUBWMB", "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": "940GZZLUWYC", "lineIdentifier": ["bakerloo"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["bakerloo"]}], "status": true, "id": "9400ZZLUWYC1", "commonName": "Wembley Central 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": "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": "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": "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": "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"}, {"$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": "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": "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": "Car park", "sourceSystemKey": "StaticObjects", "value": "no"}], "children": [], "lat": 51.551739, "lon": -0.29631}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUWYC2", "indicator": "southbound", "modes": ["tube"], "icsCode": "1000256", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUWYC", "hubNaptanCode": "HUBWMB", "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": "940GZZLUWYC", "lineIdentifier": ["bakerloo"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["bakerloo"]}], "status": true, "id": "9400ZZLUWYC2", "commonName": "Wembley Central 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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "yes"}], "children": [], "lat": 51.552312, "lon": -0.296794}], "lat": 51.552304, "lon": -0.296852}], "lat": 51.55232, "lon": -0.296642}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "HUBWRU", "modes": ["tube", "national-rail", "bus"], "icsCode": "1000267", "stopType": "TransportInterchange", "hubNaptanCode": "HUBWRU", "lines": [{"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "u1", "name": "U1", "uri": "/Line/u1", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "u10", "name": "U10", "uri": "/Line/u10", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "278", "name": "278", "uri": "/Line/278", "type": "Line", "crowding": {"$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities"}, "routeType": "Unknown", "status": "Unknown"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "chiltern-railways", "name": "Chiltern Railways", "uri": "/Line/chiltern-railways", "type": "Line", "crowding": {"$type": "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"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490000267B", "stationAtcoCode": "490G00267B", "lineIdentifier": ["u1", "u10", "278"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "910GWRUISLP", "lineIdentifier": ["chiltern-railways"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "940GZZLUWRP", "lineIdentifier": ["central"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490000267A", "stationAtcoCode": "490G00267B", "lineIdentifier": ["u1", "u10", "278"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "bus", "lineIdentifier": ["u1", "u10", "278"]}, {"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "national-rail", "lineIdentifier": ["chiltern-railways"]}, {"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["central"]}], "status": true, "id": "HUBWRU", "commonName": "West Ruislip", "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, 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": "Address", "sourceSystemKey": "StaticObjects", "value": "West Ruislip Station,London Underground Ltd.,Ickenham Rd,West Ruislip,Middlesex"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.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": "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": "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": "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": "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": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "910GWRUISLP", "modes": ["national-rail"], "icsCode": "1000267", "stopType": "NaptanRailStation", "stationNaptan": "910GWRUISLP", "hubNaptanCode": "HUBWRU", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "910GWRUISLP", "commonName": "West Ruislip Rail Station", "placeType": "StopPoint", "additionalProperties": [], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490G00267B", "modes": ["bus"], "icsCode": "1000267", "stopType": "NaptanOnstreetBusCoachStopCluster", "stationNaptan": "490G00267B", "hubNaptanCode": "HUBWRU", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490G00267B", "commonName": "West Ruislip Station", "placeType": "StopPoint", "additionalProperties": [], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000267A", "indicator": "Stop S", "stopLetter": "S", "modes": ["bus"], "icsCode": "1000267", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00267B", "hubNaptanCode": "HUBWRU", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000267A", "commonName": "West Ruislip Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.569626, "lon": -0.438075}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000267B", "indicator": "Stop M", "stopLetter": "M", "modes": ["bus"], "icsCode": "1000267", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00267B", "hubNaptanCode": "HUBWRU", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000267B", "commonName": "West Ruislip Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.570079, "lon": -0.437627}], "lat": 51.569626, "lon": -0.438075}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "4900WRUISLP1", "indicator": "Entrance 1", "stopLetter": "1", "modes": [], "icsCode": "1000267", "stopType": "NaptanRailEntrance", "stationNaptan": "910GWRUISLP", "hubNaptanCode": "HUBWRU", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "4900WRUISLP1", "commonName": "West Ruislip Rail Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.569758, "lon": -0.437869}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "4900WRUISLP2", "indicator": "Entrance 2", "stopLetter": "2", "modes": [], "icsCode": "1000267", "stopType": "NaptanRailEntrance", "stationNaptan": "910GWRUISLP", "hubNaptanCode": "HUBWRU", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "4900WRUISLP2", "commonName": "West Ruislip Rail Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.569781, "lon": -0.436887}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9100WRUISLP0", "modes": [], "icsCode": "1000267", "stopType": "NaptanRailAccessArea", "stationNaptan": "910GWRUISLP", "hubNaptanCode": "HUBWRU", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "9100WRUISLP0", "commonName": "West Ruislip", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 0.0, "lon": 0.0}], "lat": 51.569758, "lon": -0.437768}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "940GZZLUWRP", "modes": ["tube"], "icsCode": "1000267", "stopType": "NaptanMetroStation", "stationNaptan": "940GZZLUWRP", "hubNaptanCode": "HUBWRU", "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": "940GZZLUWRP", "lineIdentifier": ["central"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["central"]}], "status": true, "id": "940GZZLUWRP", "commonName": "West Ruislip 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": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "West Ruislip Station,London Underground Ltd.,Ickenham Rd,West Ruislip,Middlesex"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, 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": "Help Points", "sourceSystemKey": "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": "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": "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": "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": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUWRP", "modes": ["tube"], "icsCode": "1000267", "stopType": "NaptanMetroAccessArea", "stationNaptan": "940GZZLUWRP", "hubNaptanCode": "HUBWRU", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "9400ZZLUWRP", "commonName": "West Ruislip 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": "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": "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": "Toilets", "sourceSystemKey": "StaticObjects", "value": "yes (male, female)"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "West Ruislip Station,London Underground Ltd.,Ickenham Rd,West Ruislip,Middlesex"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.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, 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": "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": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "6"}], "children": [], "lat": 51.569688, "lon": -0.437886}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUWRP1", "modes": ["tube"], "icsCode": "1000267", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUWRP", "hubNaptanCode": "HUBWRU", "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": "940GZZLUWRP", "lineIdentifier": ["central"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["central"]}], "status": true, "id": "9400ZZLUWRP1", "commonName": "West Ruislip 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": "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": "Bridge", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Address", "key": "Address", "sourceSystemKey": "StaticObjects", "value": "West Ruislip Station,London Underground Ltd.,Ickenham Rd,West Ruislip,Middlesex"}, {"$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 (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": "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": "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"}], "children": [], "lat": 51.56951, "lon": -0.437343}], "lat": 51.569688, "lon": -0.437886}], "lat": 51.569721, "lon": -0.437816}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "HUBWSM", "modes": ["tube", "bus"], "icsCode": "1000266", "stopType": "TransportInterchange", "hubNaptanCode": "HUBWSM", "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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", "naptanIdReference": "490015048A", "stationAtcoCode": "490G00020361", "lineIdentifier": ["24", "n53", "159", "12", "n136", "26", "88", "453", "n87", "n26", "n44", "n155", "n381", "n11", "87", "n3", "n109"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "940GZZLUWSM", "lineIdentifier": ["jubilee"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "940GZZLUWSM", "lineIdentifier": ["district", "circle"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490015048T", "stationAtcoCode": "490G00020361", "lineIdentifier": ["n87", "n136", "n11", "87", "n3", "n53", "24", "26", "88", "n44", "n26"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490000266G", "stationAtcoCode": "490G00020361", "lineIdentifier": ["n109", "12", "159", "n53", "453", "n155", "n381"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "bus", "lineIdentifier": ["24", "n53", "159", "12", "n136", "26", "88", "453", "n87", "n26", "n44", "n155", "n381", "n11", "87", "n3", "n109"]}, {"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["jubilee", "district", "circle"]}], "status": true, "id": "HUBWSM", "commonName": "Westminster", "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": "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": "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": "Westminster Station,London Underground Ltd.,Bridge St,London,SW1A 2JR"}, {"$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": "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": "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": "Boarding Ramps", "sourceSystemKey": "StaticObjects", "value": "yes Circle and District lines only"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.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": "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": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_583"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_762"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_818"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_4884"}], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490G00020361", "modes": ["bus"], "icsCode": "1020361", "stopType": "NaptanOnstreetBusCoachStopCluster", "stationNaptan": "490G00020361", "hubNaptanCode": "HUBWSM", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490G00020361", "commonName": "Westminster Stn / Parliament Square", "placeType": "StopPoint", "additionalProperties": [], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000266G", "indicator": "Stop G", "stopLetter": "G", "modes": ["bus"], "icsCode": "1020361", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00020361", "hubNaptanCode": "HUBWSM", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000266G", "commonName": "Westminster Stn / Parliament Square", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.501597, "lon": -0.125988}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490015048A", "indicator": "Stop A", "stopLetter": "A", "modes": ["bus"], "icsCode": "1020361", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00020361", "hubNaptanCode": "HUBWSM", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490015048A", "commonName": "Westminster Stn / Parliament Square", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.501873, "lon": -0.126366}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490015048C", "indicator": "Stop C", "stopLetter": "C", "modes": ["bus"], "icsCode": "1020361", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00020361", "hubNaptanCode": "HUBWSM", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490015048C", "commonName": "Westminster Stn / Parliament Square", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.501568, "lon": -0.126407}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490015048T", "indicator": "Stop F", "stopLetter": "F", "modes": ["bus"], "icsCode": "1020361", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00020361", "hubNaptanCode": "HUBWSM", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490015048T", "commonName": "Westminster Stn / Parliament Square", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.502478, "lon": -0.125995}], "lat": 51.501873, "lon": -0.126366}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490G000852", "modes": ["bus"], "icsCode": "1015048", "stopType": "NaptanOnstreetBusCoachStopCluster", "stationNaptan": "490G000852", "hubNaptanCode": "HUBWSM", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490G000852", "commonName": "Parliament Square", "placeType": "StopPoint", "additionalProperties": [], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490003059D", "indicator": "Stop M", "stopLetter": "M", "modes": ["bus"], "icsCode": "1015048", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G000852", "hubNaptanCode": "HUBWSM", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490003059D", "commonName": "Parliament Square", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.497953, "lon": -0.12585}], "lat": 51.497953, "lon": -0.12585}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "940GZZLUWSM", "modes": ["tube"], "icsCode": "1000266", "stopType": "NaptanMetroStation", "stationNaptan": "940GZZLUWSM", "hubNaptanCode": "HUBWSM", "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"}, {"$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": "940GZZLUWSM", "lineIdentifier": ["district", "circle"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "940GZZLUWSM", "lineIdentifier": ["jubilee"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["district", "circle", "jubilee"]}], "status": true, "id": "940GZZLUWSM", "commonName": "Westminster 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": "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": "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": "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": "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": "BikePoints_583"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_762"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_818"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_4884"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.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": "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": "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": "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": "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": "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": "ServiceInfo", "key": "Night", "sourceSystemKey": "TransXchangeETL", "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"}], "children": [{"$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": "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": "Photo 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 Circle and District lines 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": "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": "Help Points", "sourceSystemKey": "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": "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"}], "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": "9400ZZLUWSM", "modes": ["tube"], "icsCode": "1000266", "stopType": "NaptanMetroAccessArea", "stationNaptan": "940GZZLUWSM", "hubNaptanCode": "HUBWSM", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "9400ZZLUWSM", "commonName": "Westminster 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": "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": "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": "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": "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 Circle and District lines only"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, 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": "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": "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": "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": "4"}], "children": [], "lat": 51.50132, "lon": -0.124861}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUWSM1", "modes": ["tube"], "icsCode": "1000266", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUWSM", "hubNaptanCode": "HUBWSM", "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": "940GZZLUWSM", "lineIdentifier": ["district", "circle"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["district", "circle"]}], "status": true, "id": "9400ZZLUWSM1", "commonName": "Westminster 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": "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": "Cash Machines", "sourceSystemKey": "StaticObjects", "value": "4"}, {"$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": "Facility", "key": "WiFi", "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": "Facility", "key": "Help 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": "Westminster Station,London Underground Ltd.,Bridge St,London,SW1A 2JR"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.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": "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": "15"}], "children": [], "lat": 51.501284, "lon": -0.124877}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUWSM2", "modes": ["tube"], "icsCode": "1000266", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUWSM", "hubNaptanCode": "HUBWSM", "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": "940GZZLUWSM", "lineIdentifier": ["circle", "district"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["circle", "district"]}], "status": true, "id": "9400ZZLUWSM2", "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": "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": "Help 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": "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": "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": "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": "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": "Euro Cash Machines", "sourceSystemKey": "StaticObjects", "value": "yes"}], "children": [], "lat": 51.501185, "lon": -0.124838}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUWSM3", "modes": ["tube"], "icsCode": "1000266", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUWSM", "hubNaptanCode": "HUBWSM", "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": "940GZZLUWSM", "lineIdentifier": ["jubilee"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["jubilee"]}], "status": true, "id": "9400ZZLUWSM3", "commonName": "Westminster 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": "Boarding Ramps", "sourceSystemKey": "StaticObjects", "value": "yes Circle and District lines 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": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$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": "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": "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": "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": "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": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$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": "subway to street, routeways platform to ticket hall."}], "children": [], "lat": 51.501004, "lon": -0.124773}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUWSM4", "modes": ["tube"], "icsCode": "1000266", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUWSM", "hubNaptanCode": "HUBWSM", "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": "940GZZLUWSM", "lineIdentifier": ["jubilee"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["jubilee"]}], "status": true, "id": "9400ZZLUWSM4", "commonName": "Westminster 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": "17"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.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": "4"}, {"$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": "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": "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": "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": "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"}], "children": [], "lat": 51.501006, "lon": -0.124932}], "lat": 51.50132, "lon": -0.124861}], "lat": 51.501603, "lon": -0.125984}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "HUBZCW", "modes": ["tube", "bus", "overground"], "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": "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": "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": "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": "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": "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": "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": "c10", "name": "C10", "uri": "/Line/c10", "type": "Line", "crowding": {"$type": "Tfl.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", "naptanIdReference": "490000037S", "stationAtcoCode": "490G000438", "lineIdentifier": ["199", "188", "n199", "225"]}, {"$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": "490004733C", "stationAtcoCode": "490G000438", "lineIdentifier": ["p12", "381", "1"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490004733D", "stationAtcoCode": "490G000438", "lineIdentifier": ["1", "c10", "225", "p12", "199"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490004733B", "stationAtcoCode": "490G000438", "lineIdentifier": ["381", "n199", "c10", "188"]}], "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": ["199", "188", "n199", "225", "p12", "381", "1", "c10"]}, {"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["jubilee"]}], "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": "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": "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": "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": "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": "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": "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": "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": "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": "Help 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": "Escalators", "sourceSystemKey": "StaticObjects", "value": "8"}, {"$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": "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": "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"}], "children": [], "lat": 51.498021, "lon": -0.049935}], "lat": 51.49799, "lon": -0.04972}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "940GZZLUCWR", "modes": ["tube"], "icsCode": "1000037", "stopType": "NaptanMetroStation", "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": "940GZZLUCWR", "commonName": "Canada Water 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": "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": "Help Points", "sourceSystemKey": "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": "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": "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": "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": "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": "Lifts", "sourceSystemKey": "StaticObjects", "value": "4"}, {"$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": "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": "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": "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": "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"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.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"}], "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}], "lat": 51.497931, "lon": -0.049405}], "lat": 51.498053, "lon": -0.049667}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "HUBZFD", "modes": ["bus", "national-rail", "elizabeth-line", "tube"], "icsCode": "1000080", "stopType": "TransportInterchange", "hubNaptanCode": "HUBZFD", "lines": [{"$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": "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": "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": "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": "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": "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": "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", "naptanIdReference": "490000080A", "stationAtcoCode": "490G00080B", "lineIdentifier": ["63", "40", "341", "n63"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "910GFRNDXR", "lineIdentifier": ["elizabeth"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490000080B", "stationAtcoCode": "490G00080B", "lineIdentifier": ["63", "40", "341", "n63"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "910GFRNDNLT", "lineIdentifier": ["thameslink"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "940GZZLUFCN", "lineIdentifier": ["circle", "hammersmith-city", "metropolitan"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "bus", "lineIdentifier": ["63", "40", "341", "n63"]}, {"$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": ["thameslink"]}, {"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["circle", "hammersmith-city", "metropolitan"]}], "status": true, "id": "HUBZFD", "commonName": "Farringdon", "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": "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": "1"}, {"$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": "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": "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": "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": "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": "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": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_17"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_66"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_67"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_72"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_135"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_203"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_246"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_393"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_546"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_835"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5904"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5791"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5620"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5906"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5908"}], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "910GFRNDNLT", "modes": ["national-rail"], "icsCode": "1000080", "stopType": "NaptanRailStation", "stationNaptan": "910GFRNDNLT", "hubNaptanCode": "HUBZFD", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "910GFRNDNLT", "commonName": "Farringdon Rail Station", "placeType": "StopPoint", "additionalProperties": [], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9100FRNDNLT2", "modes": [], "icsCode": "1000080", "stopType": "NaptanRailAccessArea", "stationNaptan": "910GFRNDNLT", "hubNaptanCode": "HUBZFD", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "9100FRNDNLT2", "commonName": "Farringdon", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 0.0, "lon": 0.0}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9100FRNDNLT1", "modes": [], "icsCode": "1000080", "stopType": "NaptanRailAccessArea", "stationNaptan": "910GFRNDNLT", "hubNaptanCode": "HUBZFD", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "9100FRNDNLT1", "commonName": "Farringdon", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 0.0, "lon": 0.0}], "lat": 51.520167, "lon": -0.105205}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "910GFRNDXR", "modes": ["elizabeth-line"], "icsCode": "1000080", "stopType": "NaptanRailStation", "stationNaptan": "910GFRNDXR", "hubNaptanCode": "HUBZFD", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "910GFRNDXR", "commonName": "Farringdon", "placeType": "StopPoint", "additionalProperties": [], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9100FRNDXR0", "modes": [], "icsCode": "1000080", "stopType": "NaptanRailAccessArea", "stationNaptan": "910GFRNDXR", "hubNaptanCode": "HUBZFD", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "9100FRNDXR0", "commonName": "Farringdon", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 0.0, "lon": 0.0}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9100FRNDXR1", "modes": [], "icsCode": "1000080", "stopType": "NaptanRailAccessArea", "stationNaptan": "910GFRNDXR", "hubNaptanCode": "HUBZFD", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "9100FRNDXR1", "commonName": "Farringdon", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 0.0, "lon": 0.0}], "lat": 51.520188, "lon": -0.104915}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "940GZZLUFCN", "modes": ["tube"], "icsCode": "1000080", "stopType": "NaptanMetroStation", "stationNaptan": "940GZZLUFCN", "hubNaptanCode": "HUBZFD", "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": "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"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "940GZZLUFCN", "lineIdentifier": ["hammersmith-city", "metropolitan", "circle"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["hammersmith-city", "metropolitan", "circle"]}], "status": true, "id": "940GZZLUFCN", "commonName": "Farringdon 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": "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": "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": "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": "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": "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": "WiFi", "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": "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": "4"}, {"$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": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_17"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_66"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_67"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_72"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_135"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_203"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_246"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_393"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_546"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_835"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5904"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5791"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5620"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5906"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5908"}], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490G00080B", "modes": ["bus"], "icsCode": "1000080", "stopType": "NaptanOnstreetBusCoachStopCluster", "stationNaptan": "490G00080B", "hubNaptanCode": "HUBZFD", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490G00080B", "commonName": "Farringdon Station", "placeType": "StopPoint", "additionalProperties": [], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000080A", "indicator": "Stop A", "stopLetter": "A", "modes": ["bus"], "icsCode": "1000080", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00080B", "hubNaptanCode": "HUBZFD", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000080A", "commonName": "Farringdon Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.520422, "lon": -0.106044}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000080B", "indicator": "Stop B", "stopLetter": "B", "modes": ["bus"], "icsCode": "1000080", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00080B", "hubNaptanCode": "HUBZFD", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000080B", "commonName": "Farringdon Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.520238, "lon": -0.105821}], "lat": 51.520238, "lon": -0.105821}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "4900FRNDNLT0", "indicator": "Entrance 2", "stopLetter": "2", "modes": [], "icsCode": "1000080", "stopType": "NaptanRailEntrance", "stationNaptan": "940GZZLUFCN", "hubNaptanCode": "HUBZFD", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "4900FRNDNLT0", "commonName": "Farringdon Rail Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.519996, "lon": -0.104707}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "4900FRNDXR0", "indicator": "Entrance 4", "stopLetter": "4", "modes": [], "icsCode": "1000080", "stopType": "NaptanRailEntrance", "stationNaptan": "940GZZLUFCN", "hubNaptanCode": "HUBZFD", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "4900FRNDXR0", "commonName": "Farringdon Rail Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.519559, "lon": -0.099392}, {"$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": "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": "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": "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.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": "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": "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": "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": ["hammersmith-city", "metropolitan", "circle"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["hammersmith-city", "metropolitan", "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": "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": "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": "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": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$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": "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": "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"}], "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}], "lat": 51.520252, "lon": -0.104913}], "lat": 51.520214, "lon": -0.105054}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "HUBZMG", "modes": ["tube", "bus", "national-rail"], "icsCode": "1000149", "stopType": "TransportInterchange", "hubNaptanCode": "HUBZMG", "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": "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"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "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": "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": "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": "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"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "910GMRGT", "lineIdentifier": ["great-northern"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "940GZZLUMGT", "lineIdentifier": ["metropolitan", "hammersmith-city", "circle"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "940GZZLUMGT", "lineIdentifier": ["northern"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490000149B", "stationAtcoCode": "490G00149L", "lineIdentifier": ["100", "43", "141", "153"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490000149Z", "stationAtcoCode": "490G00149L", "lineIdentifier": ["141"]}], "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": "tube", "lineIdentifier": ["metropolitan", "hammersmith-city", "circle", "northern"]}, {"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "bus", "lineIdentifier": ["100", "43", "141", "153"]}], "status": true, "id": "HUBZMG", "commonName": "Moorgate", "placeType": "StopPoint", "additionalProperties": [{"$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": "Help 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": "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": "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": "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": "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": "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": "6"}, {"$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": "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_120"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_127"}, {"$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_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_275"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_331"}, {"$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": "BikePoints_838"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5907"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5929"}, {"$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_5897"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5477"}, {"$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_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_5923"}, {"$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": "910GMRGT", "modes": ["national-rail"], "icsCode": "1000149", "stopType": "NaptanRailStation", "stationNaptan": "910GMRGT", "hubNaptanCode": "HUBZMG", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "910GMRGT", "commonName": "Moorgate Rail Station", "placeType": "StopPoint", "additionalProperties": [], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490G00149L", "modes": ["bus"], "icsCode": "1000149", "stopType": "NaptanOnstreetBusCoachStopCluster", "stationNaptan": "490G00149L", "hubNaptanCode": "HUBZMG", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490G00149L", "commonName": "Moorgate Station", "placeType": "StopPoint", "additionalProperties": [], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000149B", "indicator": "Stop B", "stopLetter": "B", "modes": ["bus"], "icsCode": "1000149", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00149L", "hubNaptanCode": "HUBZMG", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000149B", "commonName": "Moorgate Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.518621, "lon": -0.088174}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000149Z", "indicator": "Stop L", "stopLetter": "L", "modes": ["bus"], "icsCode": "1000149", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00149L", "hubNaptanCode": "HUBZMG", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000149Z", "commonName": "Moorgate Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.517797, "lon": -0.088396}], "lat": 51.517797, "lon": -0.088396}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490G00149M", "modes": ["bus"], "icsCode": "1000149", "stopType": "NaptanOnstreetBusCoachStopCluster", "stationNaptan": "910GMRGT", "hubNaptanCode": "HUBZMG", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490G00149M", "commonName": "Moorgate Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.518491, "lon": -0.088943}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "4900MRGT1", "indicator": "Entrance 1", "stopLetter": "1", "modes": [], "icsCode": "1000149", "stopType": "NaptanRailEntrance", "stationNaptan": "910GMRGT", "hubNaptanCode": "HUBZMG", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "4900MRGT1", "commonName": "Moorgate Rail Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.518015, "lon": -0.08905}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "4900MRGT2", "indicator": "Entrance 2", "stopLetter": "2", "modes": [], "icsCode": "1000149", "stopType": "NaptanRailEntrance", "stationNaptan": "910GMRGT", "hubNaptanCode": "HUBZMG", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "4900MRGT2", "commonName": "Moorgate Rail Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.518796, "lon": -0.088397}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "4900MRGT3", "indicator": "Entrance 3", "stopLetter": "3", "modes": [], "icsCode": "1000149", "stopType": "NaptanRailEntrance", "stationNaptan": "910GMRGT", "hubNaptanCode": "HUBZMG", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "4900MRGT3", "commonName": "Moorgate Rail Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.518728, "lon": -0.088097}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "4900MRGT4", "indicator": "Entrance 4", "stopLetter": "4", "modes": [], "icsCode": "1000149", "stopType": "NaptanRailEntrance", "stationNaptan": "910GMRGT", "hubNaptanCode": "HUBZMG", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "4900MRGT4", "commonName": "Moorgate Rail Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.518162, "lon": -0.088164}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9100MRGT2", "modes": [], "icsCode": "1000149", "stopType": "NaptanRailAccessArea", "stationNaptan": "910GMRGT", "hubNaptanCode": "HUBZMG", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "9100MRGT2", "commonName": "Moorgate Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 0.0, "lon": 0.0}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9100MRGT1", "modes": [], "icsCode": "1000149", "stopType": "NaptanRailAccessArea", "stationNaptan": "910GMRGT", "hubNaptanCode": "HUBZMG", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "9100MRGT1", "commonName": "Moorgate Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 0.0, "lon": 0.0}], "lat": 51.518491, "lon": -0.088943}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "940GZZLUMGT", "modes": ["tube"], "icsCode": "1000149", "stopType": "NaptanMetroStation", "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"}, {"$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": ["northern"]}, {"$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": ["northern", "metropolitan", "circle", "hammersmith-city"]}], "status": true, "id": "940GZZLUMGT", "commonName": "Moorgate 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": "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": "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": "Payphones", "sourceSystemKey": "StaticObjects", "value": "4"}, {"$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": "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": "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": "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": "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": "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_120"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_127"}, {"$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_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_275"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_331"}, {"$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": "BikePoints_838"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5907"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5929"}, {"$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_5897"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5477"}, {"$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_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_5923"}, {"$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": "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": "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": "940GZZLUMGT", "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": "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": "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": "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": "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": "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": "Ticket Halls", "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": "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"}], "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": "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": "940GZZLUMGT", "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": "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}], "lat": 51.518176, "lon": -0.088322}], "lat": 51.518338, "lon": -0.088627}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "HUBZWL", "modes": ["tube", "overground", "elizabeth-line", "bus"], "icsCode": "1000268", "stopType": "TransportInterchange", "hubNaptanCode": "HUBZWL", "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"}, {"$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", "id": "london-overground", "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": "elizabeth", "name": "Elizabeth line", "uri": "/Line/elizabeth", "type": "Line", "crowding": {"$type": "Tfl.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": ["hammersmith-city", "district"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "910GWCHAPEL", "lineIdentifier": ["london-overground"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "910GWCHAPXR", "lineIdentifier": ["elizabeth"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["hammersmith-city", "district"]}, {"$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": "elizabeth-line", "lineIdentifier": ["elizabeth"]}], "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": "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": "940GZZLUWPL", "modes": ["tube"], "icsCode": "1000268", "stopType": "NaptanMetroStation", "stationNaptan": "940GZZLUWPL", "hubNaptanCode": "HUBZWL", "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": "940GZZLUWPL", "lineIdentifier": ["hammersmith-city", "district"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["hammersmith-city", "district"]}], "status": true, "id": "940GZZLUWPL", "commonName": "Whitechapel 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": "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": "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": "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": "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": "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": "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_500"}, {"$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_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": "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": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUWPL", "modes": ["tube"], "icsCode": "1000268", "stopType": "NaptanMetroAccessArea", "stationNaptan": "940GZZLUWPL", "hubNaptanCode": "HUBZWL", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "9400ZZLUWPL", "commonName": "Whitechapel 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": "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": "Help Points", "sourceSystemKey": "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": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.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": "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": "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": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "value": "2"}], "children": [], "lat": 51.519518, "lon": -0.059971}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUWPL1", "modes": ["tube"], "icsCode": "1000268", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUWPL", "hubNaptanCode": "HUBZWL", "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": "940GZZLUWPL", "lineIdentifier": ["hammersmith-city", "district"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["hammersmith-city", "district"]}], "status": true, "id": "9400ZZLUWPL1", "commonName": "Whitechapel 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, 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": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$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": "Help 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": "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": "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": "0"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}], "children": [], "lat": 51.519398, "lon": -0.060884}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUWPL2", "modes": ["tube"], "icsCode": "1000268", "stopType": "NaptanMetroPlatform", "stationNaptan": "940GZZLUWPL", "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"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "940GZZLUWPL", "lineIdentifier": ["district", "hammersmith-city"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["district", "hammersmith-city"]}], "status": true, "id": "9400ZZLUWPL2", "commonName": "Whitechapel 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": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.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, 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": "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": "Whitechapel Station,London Underground Ltd.,277 Whitechapel Rd,London,E1 1BY"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.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"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.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": "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.519414, "lon": -0.060797}], "lat": 51.519518, "lon": -0.059971}], "lat": 51.519498, "lon": -0.059858}], "pageSize": 2283, "total": 2283, "page": 1}} \ No newline at end of file diff --git a/tests/tfl_responses/stopPointMetaModes_None_None_Mode.json b/tests/tfl_responses/stopPointMetaModes_None_None_Mode.json new file mode 100644 index 0000000..17951da --- /dev/null +++ b/tests/tfl_responses/stopPointMetaModes_None_None_Mode.json @@ -0,0 +1 @@ +{"status_code": 200, "headers": {"Date": "Mon, 15 Jul 2024 13:18:24 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": "155", "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": "1", "X-Cacheable": "Yes. Cacheable", "X-Frame-Options": "deny", "X-Proxy-Connection": "unset", "X-TTL": "86400.000", "X-TTL-RULE": "0", "X-Varnish": "2024982573 2024955127", "X-AspNet-Version": "4.0.30319", "X-Operation": "StopPoint_MetaModes", "X-API": "StopPoint", "CF-Cache-Status": "DYNAMIC", "Strict-Transport-Security": "max-age=31536000", "Set-Cookie": "_cfuvid=gA_kVcGMHCcjzMVv_90y8CE95r3EtBk3Gza2ukO9E_Y-1721049504453-0.0.1.1-604800000; path=/; domain=.tfl.gov.uk; HttpOnly; Secure; SameSite=None", "Server": "cloudflare", "CF-RAY": "8a3a09ca8c266406-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/stopPointsByLineId_14_None_StopPoint.json b/tests/tfl_responses/stopPointsByLineId_14_None_StopPoint.json new file mode 100644 index 0000000..d441c18 --- /dev/null +++ b/tests/tfl_responses/stopPointsByLineId_14_None_StopPoint.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": "49156", "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": "4763", "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": "5", "X-Cacheable": "Yes. Cacheable", "X-Frame-Options": "deny", "X-Proxy-Connection": "unset", "X-TTL": "86400.000", "X-TTL-RULE": "0", "X-Varnish": "2105873189 2105040186", "X-AspNet-Version": "4.0.30319", "X-Operation": "Line_StopPointsByPathIdQueryTflOperatedNationalRailStationsOnly", "X-API": "Line", "CF-Cache-Status": "DYNAMIC", "Strict-Transport-Security": "max-age=31536000", "Set-Cookie": "_cfuvid=PM7TvLq964E2bTlRWpK3NhBsubghDnkp8wfTwO5inDU-1721049476355-0.0.1.1-604800000; path=/; domain=.tfl.gov.uk; HttpOnly; Secure; SameSite=None", "Server": "cloudflare", "CF-RAY": "8a3a091adbd7651f-LHR"}, "data": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000084L", "indicator": "Stop L", "stopLetter": "L", "modes": ["bus"], "icsCode": "1000084", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00084L", "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"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490000084L", "stationAtcoCode": "490G00084L", "lineIdentifier": ["14", "211", "414"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "bus", "lineIdentifier": ["14", "211", "414"]}], "status": true, "id": "490000084L", "commonName": "Fulham Broadway Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Direction", "key": "CompassPoint", "sourceSystemKey": "Naptan490", "value": "E"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Direction", "key": "Towards", "sourceSystemKey": "CountDown", "value": "Chelsea Or South Kensington"}, {"$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": "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": "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": "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": "Geo", "key": "Zone", "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": "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": "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": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_618"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_691"}, {"$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_737"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_782"}], "children": [], "lat": 51.480289, "lon": -0.194477}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000084M", "indicator": "Stop M", "stopLetter": "M", "modes": ["bus"], "icsCode": "1000084", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00084L", "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"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490000084M", "stationAtcoCode": "490G00084L", "lineIdentifier": ["14", "211", "414"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "bus", "lineIdentifier": ["14", "211", "414"]}], "status": true, "id": "490000084M", "commonName": "Fulham Broadway Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Direction", "key": "CompassPoint", "sourceSystemKey": "Naptan490", "value": "W"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Direction", "key": "Towards", "sourceSystemKey": "CountDown", "value": "Hammersmith Or Putney"}, {"$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": "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": "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": "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": "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": "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": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_618"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_691"}, {"$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_737"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_782"}], "children": [], "lat": 51.480023, "lon": -0.194704}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000093PB", "indicator": "Stop J", "stopLetter": "J", "modes": ["bus"], "icsCode": "1000093", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00093PE", "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"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490000093PB", "stationAtcoCode": "490G00093PE", "lineIdentifier": ["14", "19", "23", "38", "9", "n19", "n38", "n9", "n97"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "bus", "lineIdentifier": ["14", "19", "23", "38", "9", "n19", "n38", "n9", "n97"]}], "status": true, "id": "490000093PB", "commonName": "Green Park Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Direction", "key": "CompassPoint", "sourceSystemKey": "Naptan490", "value": "E"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Direction", "key": "Towards", "sourceSystemKey": "CountDown", "value": "Trafalgar Square Or Tottenham Court Road"}, {"$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": "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": "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": "Lifts", "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": "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": "Euro Cash Machines", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_44"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_49"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_53"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_318"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_382"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_391"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_528"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_541"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5252"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5510"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5821"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5868"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5191"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_3451"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5014"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5862"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5778"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_4706"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5594"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_4182"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_4623"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5714"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5647"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5811"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5863"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5351"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_4875"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_4150"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5317"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_4863"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5713"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5651"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5363"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5323"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5099"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5715"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_4475"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5267"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5687"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5861"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5600"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5800"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_4949"}], "children": [], "lat": 51.507013, "lon": -0.142554}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000093PE", "indicator": "Stop H", "stopLetter": "H", "modes": ["bus"], "icsCode": "1000093", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00093PE", "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"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490000093PE", "stationAtcoCode": "490G00093PE", "lineIdentifier": ["14", "19", "22", "23", "38", "9", "n19", "n22", "n38", "n9", "n97"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "bus", "lineIdentifier": ["14", "19", "22", "23", "38", "9", "n19", "n22", "n38", "n9", "n97"]}], "status": true, "id": "490000093PE", "commonName": "Green Park Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Direction", "key": "CompassPoint", "sourceSystemKey": "Naptan490", "value": "SW"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Direction", "key": "Towards", "sourceSystemKey": "CountDown", "value": "Marble Arch, Knightsbridge Or Victoria"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.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": "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": "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": "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": "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": "Help Points", "sourceSystemKey": "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": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_44"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_49"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_53"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_318"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_382"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_391"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_528"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_541"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5252"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5821"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5868"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5191"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_3451"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5014"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5862"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_4706"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5594"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_4182"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_4623"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5714"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5647"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5811"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5863"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5351"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_4875"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_4150"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5317"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_4863"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5713"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5651"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5363"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5323"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5099"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5715"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_4475"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5267"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5861"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5600"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5800"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_4949"}], "children": [], "lat": 51.506676, "lon": -0.142841}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000119N", "indicator": "Stop N", "stopLetter": "N", "modes": ["bus"], "icsCode": "1000119", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00119A", "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": "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"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490000119N", "stationAtcoCode": "490G00119A", "lineIdentifier": ["14", "414", "74", "n74", "n97"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "bus", "lineIdentifier": ["14", "414", "74", "n74", "n97"]}], "status": true, "id": "490000119N", "commonName": "Hyde Park Corner Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Direction", "key": "CompassPoint", "sourceSystemKey": "Naptan490", "value": "W"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Direction", "key": "Towards", "sourceSystemKey": "CountDown", "value": "South Kensington"}, {"$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": "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": "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": "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": "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": "Escalators", "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": "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": "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": "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": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_166"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_181"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_191"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_207"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_213"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_222"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_303"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_368"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_733"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5664"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_4762"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_4852"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5864"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_4457"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_4968"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5373"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5000"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_4706"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5969"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5968"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5637"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5463"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_3738"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_4638"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_4761"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_4492"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5966"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_4412"}], "children": [], "lat": 51.502707, "lon": -0.153449}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000119T", "indicator": "Stop T", "stopLetter": "T", "modes": ["bus"], "icsCode": "1000119", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00119S", "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"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490000119T", "stationAtcoCode": "490G00119S", "lineIdentifier": ["14", "9", "n9", "n97"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "bus", "lineIdentifier": ["14", "9", "n9", "n97"]}], "status": true, "id": "490000119T", "commonName": "Hyde Park Corner Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Direction", "key": "CompassPoint", "sourceSystemKey": "Naptan490", "value": "E"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Direction", "key": "Towards", "sourceSystemKey": "CountDown", "value": "Oxford Circus Or Piccadilly Circus"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.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": "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": "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": "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": "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": "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": "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": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_166"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_181"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_191"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_207"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_213"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_222"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_303"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_380"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_733"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5664"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_4762"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_4852"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5864"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_4457"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_4968"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5373"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5000"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_4706"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5969"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5968"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5637"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_3738"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_4638"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_4761"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5966"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_4412"}], "children": [], "lat": 51.503023, "lon": -0.153508}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000130KC", "indicator": "Stop KC", "stopLetter": "KC", "modes": ["bus"], "icsCode": "1007853", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G000575", "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"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490000130KC", "stationAtcoCode": "490G000575", "lineIdentifier": ["14", "414", "74", "c1", "n74", "n97"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "bus", "lineIdentifier": ["14", "414", "74", "c1", "n74", "n97"]}], "status": true, "id": "490000130KC", "commonName": "Knightsbridge Station / Harrods", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Direction", "key": "CompassPoint", "sourceSystemKey": "Naptan490", "value": "SW"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Direction", "key": "Towards", "sourceSystemKey": "CountDown", "value": "South Kensington"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_143"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_166"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_292"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_303"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_368"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5514"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5479"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_4968"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5658"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5318"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5637"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5515"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5463"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_4638"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5160"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5410"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_4492"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5152"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5770"}], "children": [], "lat": 51.500357, "lon": -0.16239}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000130KD", "indicator": "Stop KD", "stopLetter": "KD", "modes": ["bus"], "icsCode": "1000130", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00130KD", "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"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490000130KD", "stationAtcoCode": "490G00130KD", "lineIdentifier": ["14", "414", "74", "c1", "n74", "n97"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "bus", "lineIdentifier": ["14", "414", "74", "c1", "n74", "n97"]}], "status": true, "id": "490000130KD", "commonName": "Knightsbridge Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Direction", "key": "CompassPoint", "sourceSystemKey": "Naptan490", "value": "N"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Direction", "key": "Towards", "sourceSystemKey": "CountDown", "value": "Hyde Park Corner Or Sloane Square"}, {"$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": "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": "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": "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": "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": "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": "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": "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": "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": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_143"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_166"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_292"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_303"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_368"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5514"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5479"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_4968"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5658"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5318"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5637"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5515"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5463"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_4638"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5160"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5410"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_4492"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5152"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5770"}], "children": [], "lat": 51.500733, "lon": -0.162332}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000179B", "indicator": "Stop B", "stopLetter": "B", "modes": ["bus"], "icsCode": "1000179", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00179B", "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"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490000179B", "stationAtcoCode": "490G00179B", "lineIdentifier": ["14", "19", "23", "38", "9", "n19", "n38", "n9", "n97"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "bus", "lineIdentifier": ["14", "19", "23", "38", "9", "n19", "n38", "n9", "n97"]}], "status": true, "id": "490000179B", "commonName": "Piccadilly Circus", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Direction", "key": "CompassPoint", "sourceSystemKey": "Naptan490", "value": "E"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Direction", "key": "Towards", "sourceSystemKey": "CountDown", "value": "Trafalgar Square Or Tottenham Court Road"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.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": "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": "Payphones", "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": "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": "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": "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": "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": "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": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_83"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_129"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_160"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_192"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_226"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_228"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_233"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_260"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_318"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_325"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_391"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5252"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5596"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5016"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5510"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5670"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5191"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5468"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5325"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5671"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5014"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5809"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5778"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_4978"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5799"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5594"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5432"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5686"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_4182"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5855"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_4623"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5714"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5811"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5863"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5853"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_4150"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5779"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5317"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5713"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5363"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5099"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5017"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5509"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5715"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5854"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5856"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5267"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5572"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5687"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5065"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5861"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5800"}], "children": [], "lat": 51.509305, "lon": -0.136235}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000179S", "indicator": "Stop S", "stopLetter": "S", "modes": ["bus"], "icsCode": "1000179", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00179B", "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"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490000179S", "stationAtcoCode": "490G00179B", "lineIdentifier": ["14", "19", "23", "38", "9", "n19", "n38", "n9", "n97"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "bus", "lineIdentifier": ["14", "19", "23", "38", "9", "n19", "n38", "n9", "n97"]}], "status": true, "id": "490000179S", "commonName": "Piccadilly Circus", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Direction", "key": "CompassPoint", "sourceSystemKey": "Naptan490", "value": "W"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Direction", "key": "Towards", "sourceSystemKey": "CountDown", "value": "Marble Arch, Knightsbridge Or Victoria"}, {"$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": "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": "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": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$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"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.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": "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": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_83"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_129"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_160"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_192"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_226"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_228"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_233"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_318"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_325"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_391"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5252"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5596"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5016"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5510"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5670"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5191"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5325"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5671"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5014"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5809"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5778"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_4978"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5799"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5594"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5432"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5686"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_4182"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5855"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_4623"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5714"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5811"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5863"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5853"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_4150"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5779"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5317"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5713"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5363"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5099"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5017"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5509"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5715"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5854"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5856"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5267"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5572"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5687"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5065"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5861"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5800"}], "children": [], "lat": 51.509153, "lon": -0.13627}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000200E", "indicator": "Stop E", "stopLetter": "E", "modes": ["bus"], "icsCode": "1000200", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00200H", "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"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490000200E", "stationAtcoCode": "490G00200H", "lineIdentifier": ["14", "sl6"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "bus", "lineIdentifier": ["14", "sl6"]}], "status": true, "id": "490000200E", "commonName": ".Russell Square", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Direction", "key": "CompassPoint", "sourceSystemKey": "Naptan490", "value": "NE"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Direction", "key": "Towards", "sourceSystemKey": "CountDown", "value": "Piccadilly Circus Or Waterloo"}, {"$type": "Tfl.Api.Presentation.Entities.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": "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": "Russell Square Station,London Underground Ltd.,Bernard St,London,WC1N 1LJ"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "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": "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": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$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": "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": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_11"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_12"}, {"$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_24"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_57"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_77"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_287"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_364"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_796"}, {"$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_4203"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_4878"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_4616"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5545"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5233"}, {"$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_5701"}], "children": [], "lat": 51.522334, "lon": -0.127126}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000212E", "indicator": "Stop E", "stopLetter": "E", "modes": ["bus"], "icsCode": "1000212", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00212G", "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"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490000212E", "stationAtcoCode": "490G00212G", "lineIdentifier": ["14", "360", "414", "430", "74", "c1", "n74", "n97"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "bus", "lineIdentifier": ["14", "360", "414", "430", "74", "c1", "n74", "n97"]}], "status": true, "id": "490000212E", "commonName": "South Kensington Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Direction", "key": "CompassPoint", "sourceSystemKey": "Naptan490", "value": "N"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Direction", "key": "Towards", "sourceSystemKey": "CountDown", "value": "Knightsbridge Or Royal Albert Hall"}, {"$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": "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": "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": "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": "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": "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": "BikePoints_172"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_187"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_231"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_356"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_378"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_432"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_482"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_781"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5322"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5319"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5111"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_4645"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5577"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5757"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5805"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5817"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5706"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5666"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5790"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_4034"}], "children": [], "lat": 51.494463, "lon": -0.174815}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000212S1", "indicator": "Stop T", "stopLetter": "T", "modes": ["bus"], "icsCode": "1000212", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00212G", "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"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490000212S1", "stationAtcoCode": "490G00212G", "lineIdentifier": ["14", "360", "414"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "bus", "lineIdentifier": ["14", "360", "414"]}], "status": true, "id": "490000212S1", "commonName": "South Kensington Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Direction", "key": "CompassPoint", "sourceSystemKey": "Naptan490", "value": "S"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Direction", "key": "Towards", "sourceSystemKey": "CountDown", "value": "Fulham Or Sloane Square"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.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": "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": "South Kensington Station,London Underground Ltd.,Pelham St,London,SW7 2NB"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, 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": "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": "Cash Machines", "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": "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": "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": "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": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_150"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_163"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_172"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_187"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_231"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_356"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_378"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_432"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_482"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_781"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5322"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5319"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5111"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_4645"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5577"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5757"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5805"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5817"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5706"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5666"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5790"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_4034"}], "children": [], "lat": 51.494423, "lon": -0.174586}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000235W1", "indicator": "Stop S", "stopLetter": "S", "modes": ["bus"], "icsCode": "1000235", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00235E", "hubNaptanCode": "HUBTCR", "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"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490000235W1", "stationAtcoCode": "490G00235E", "lineIdentifier": ["14", "176"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "bus", "lineIdentifier": ["14", "176"]}], "status": true, "id": "490000235W1", "commonName": "Tottenham Court Road Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Direction", "key": "CompassPoint", "sourceSystemKey": "Naptan490", "value": "W"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Direction", "key": "Towards", "sourceSystemKey": "CountDown", "value": "Piccadilly Circus Or Trafalgar Square"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.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": "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": "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."}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo 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": "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": "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": "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": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_15"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_18"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_24"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_88"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_109"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_192"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_244"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_358"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_383"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_386"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_562"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5358"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5043"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5468"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5171"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5516"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5655"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5737"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5875"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5090"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5481"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5233"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_4139"}], "children": [], "lat": 51.515556, "lon": -0.128428}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490001231B", "indicator": "Stop B", "stopLetter": "B", "modes": ["bus"], "icsCode": "1001231", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G01231E1", "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"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490001231B", "stationAtcoCode": "490G01231E1", "lineIdentifier": ["14", "39", "424", "430", "85", "93", "n74"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "bus", "lineIdentifier": ["14", "39", "424", "430", "85", "93", "n74"]}], "status": true, "id": "490001231B", "commonName": "Putney Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Direction", "key": "CompassPoint", "sourceSystemKey": "Naptan490", "value": "N"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Direction", "key": "Towards", "sourceSystemKey": "CountDown", "value": "Fulham"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_678"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_693"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_694"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_705"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_708"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_709"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_743"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5751"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5752"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5032"}], "children": [], "lat": 51.461473, "lon": -0.217144}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490001231E", "indicator": "Stop E", "stopLetter": "E", "modes": ["bus"], "icsCode": "1001231", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G01231E1", "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": "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"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490001231E", "stationAtcoCode": "490G01231E1", "lineIdentifier": ["14", "85", "93"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "bus", "lineIdentifier": ["14", "85", "93"]}], "status": true, "id": "490001231E", "commonName": "Putney Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Direction", "key": "CompassPoint", "sourceSystemKey": "Naptan490", "value": "S"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Direction", "key": "Towards", "sourceSystemKey": "CountDown", "value": "Roehampton Or Wimbledon"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_678"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_693"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_694"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_705"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_708"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_709"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_743"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5751"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5752"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5032"}], "children": [], "lat": 51.461146, "lon": -0.216912}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490001231N", "indicator": "Stop C", "stopLetter": "C", "modes": ["bus"], "icsCode": "1004634", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00004634", "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"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490001231N", "stationAtcoCode": "490G00004634", "lineIdentifier": ["14", "37", "39", "424", "85", "93"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "bus", "lineIdentifier": ["14", "37", "39", "424", "85", "93"]}], "status": true, "id": "490001231N", "commonName": "St John's Avenue", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Direction", "key": "CompassPoint", "sourceSystemKey": "Naptan490", "value": "N"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_678"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_694"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_705"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_708"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_709"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_743"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5751"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5752"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5032"}], "children": [], "lat": 51.460004, "lon": -0.217518}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490003726E", "indicator": "Stop HH", "stopLetter": "HH", "modes": ["bus"], "icsCode": "1003726", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00003726", "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"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490003726E", "stationAtcoCode": "490G00003726", "lineIdentifier": ["14", "211", "345", "414"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "bus", "lineIdentifier": ["14", "211", "345", "414"]}], "status": true, "id": "490003726E", "commonName": "Fulham Road / Beaufort Street", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Direction", "key": "CompassPoint", "sourceSystemKey": "Naptan490", "value": "NE"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Direction", "key": "Towards", "sourceSystemKey": "CountDown", "value": "Sloane Square Or South Kensington"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_216"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_430"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_589"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_755"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5313"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5694"}], "children": [], "lat": 51.487561, "lon": -0.178547}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490003726W2", "indicator": "Stop HR", "stopLetter": "HR", "modes": ["bus"], "icsCode": "1003726", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00003726", "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"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490003726W2", "stationAtcoCode": "490G00003726", "lineIdentifier": ["14", "211", "345", "414"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "bus", "lineIdentifier": ["14", "211", "345", "414"]}], "status": true, "id": "490003726W2", "commonName": "Fulham Road / Beaufort Street", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Direction", "key": "CompassPoint", "sourceSystemKey": "Naptan490", "value": "SW"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Direction", "key": "Towards", "sourceSystemKey": "CountDown", "value": "Battersea Or Fulham Broadway"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_216"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_430"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_589"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_755"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5313"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5694"}], "children": [], "lat": 51.487284, "lon": -0.178703}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490003794O", "indicator": "Stop W", "stopLetter": "W", "modes": ["bus"], "icsCode": "1003794", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00003794", "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"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490003794O", "stationAtcoCode": "490G00003794", "lineIdentifier": ["14"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "bus", "lineIdentifier": ["14"]}], "status": true, "id": "490003794O", "commonName": "British Museum", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Direction", "key": "CompassPoint", "sourceSystemKey": "Naptan490", "value": "W"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Direction", "key": "Towards", "sourceSystemKey": "CountDown", "value": "Piccadilly Circus"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_15"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_18"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_23"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_24"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_77"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_162"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_244"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_358"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_562"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_751"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5358"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5043"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_4203"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_4878"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5171"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5516"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5655"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5233"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5365"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5701"}], "children": [], "lat": 51.518996, "lon": -0.124179}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490004359OA", "indicator": "Stop OA", "stopLetter": "OA", "modes": ["bus"], "icsCode": "1003794", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00003794", "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"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490004359OA", "stationAtcoCode": "490G00003794", "lineIdentifier": ["14"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "bus", "lineIdentifier": ["14"]}], "status": true, "id": "490004359OA", "commonName": "British Museum", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Direction", "key": "CompassPoint", "sourceSystemKey": "Naptan490", "value": "E"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Direction", "key": "Towards", "sourceSystemKey": "CountDown", "value": "Russell Square"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_12"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_15"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_18"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_23"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_24"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_88"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_162"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_244"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_358"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_364"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_562"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_751"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5358"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5043"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_4203"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_4878"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5171"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5516"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5655"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5233"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5365"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5701"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_4139"}], "children": [], "lat": 51.518443, "lon": -0.125628}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490004436C", "indicator": "Stop M", "stopLetter": "M", "modes": ["bus"], "icsCode": "1004436", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00004436", "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"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490004436C", "stationAtcoCode": "490G00004436", "lineIdentifier": ["14", "414", "74", "c1", "n74", "n97"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "bus", "lineIdentifier": ["14", "414", "74", "c1", "n74", "n97"]}], "status": true, "id": "490004436C", "commonName": "Victoria and Albert Museum", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Direction", "key": "CompassPoint", "sourceSystemKey": "Naptan490", "value": "E"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Direction", "key": "Towards", "sourceSystemKey": "CountDown", "value": "Hyde Park Corner Or Sloane Square"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_150"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_163"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_209"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_292"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_356"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_428"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_432"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_482"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_781"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5322"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5319"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5111"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_4645"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5577"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5757"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5805"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5817"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5706"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5666"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5515"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5790"}], "children": [], "lat": 51.496227, "lon": -0.170883}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490004436F", "indicator": "Stop N", "stopLetter": "N", "modes": ["bus"], "icsCode": "1004436", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00004436", "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"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490004436F", "stationAtcoCode": "490G00004436", "lineIdentifier": ["14", "414", "74", "c1", "n74", "n97"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "bus", "lineIdentifier": ["14", "414", "74", "c1", "n74", "n97"]}], "status": true, "id": "490004436F", "commonName": "Victoria and Albert Museum", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Direction", "key": "CompassPoint", "sourceSystemKey": "Naptan490", "value": "W"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Direction", "key": "Towards", "sourceSystemKey": "CountDown", "value": "Earls Court Or Putney"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_150"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_163"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_209"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_292"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_356"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_432"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_482"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_781"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5514"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5322"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5319"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5111"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_4645"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5757"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5805"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5817"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5706"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5666"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5515"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5790"}], "children": [], "lat": 51.496346, "lon": -0.169841}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490004437E", "indicator": "Stop KW", "stopLetter": "KW", "modes": ["bus"], "icsCode": "1004437", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00004437", "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"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490004437E", "stationAtcoCode": "490G00004437", "lineIdentifier": ["14", "414", "74", "c1", "n74", "n97"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "bus", "lineIdentifier": ["14", "414", "74", "c1", "n74", "n97"]}], "status": true, "id": "490004437E", "commonName": "Brompton Square", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Direction", "key": "CompassPoint", "sourceSystemKey": "Naptan490", "value": "E"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Direction", "key": "Towards", "sourceSystemKey": "CountDown", "value": "Sloane Square Or Hyde Park Corner"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_143"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_150"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_209"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_292"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_432"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_482"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_781"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5514"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5319"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_4645"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5757"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5805"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5706"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5658"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5318"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5515"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5410"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5770"}], "children": [], "lat": 51.497772, "lon": -0.167306}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490004437W", "indicator": "Stop KU", "stopLetter": "KU", "modes": ["bus"], "icsCode": "1004437", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00004437", "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"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490004437W", "stationAtcoCode": "490G00004437", "lineIdentifier": ["14", "414", "74", "c1", "n74", "n97"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "bus", "lineIdentifier": ["14", "414", "74", "c1", "n74", "n97"]}], "status": true, "id": "490004437W", "commonName": "Brompton Square", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Direction", "key": "CompassPoint", "sourceSystemKey": "Naptan490", "value": "W"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Direction", "key": "Towards", "sourceSystemKey": "CountDown", "value": "South Kensington"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_143"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_150"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_163"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_209"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_292"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_432"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_482"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_781"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5514"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5322"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5319"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_4645"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5757"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5805"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5706"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5658"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5318"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5515"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5770"}], "children": [], "lat": 51.497433, "lon": -0.167493}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490004695A", "indicator": "Stop A", "stopLetter": "A", "modes": ["bus"], "icsCode": "1019157", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00019157", "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"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490004695A", "stationAtcoCode": "490G00019157", "lineIdentifier": ["14", "176", "19", "24", "29", "38", "n19", "n20", "n279", "n29", "n38", "n41", "n5"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "bus", "lineIdentifier": ["14", "176", "19", "24", "29", "38", "n19", "n20", "n279", "n29", "n38", "n41", "n5"]}], "status": true, "id": "490004695A", "commonName": "Denmark Street", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Direction", "key": "CompassPoint", "sourceSystemKey": "Naptan490", "value": "N"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Direction", "key": "Towards", "sourceSystemKey": "CountDown", "value": "Warren Street Or Holborn"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_15"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_88"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_109"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_192"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_244"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_260"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_358"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_383"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_386"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5358"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5043"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5016"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5670"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5468"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5364"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5171"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5516"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5671"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5655"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5580"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5737"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5875"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5090"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5481"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5867"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5017"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5758"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5572"}], "children": [], "lat": 51.514337, "lon": -0.129803}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490004695D", "indicator": "Stop D", "stopLetter": "D", "modes": ["bus"], "icsCode": "1004695", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00004695", "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"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490004695D", "stationAtcoCode": "490G00004695", "lineIdentifier": ["14", "176", "19", "24", "29", "38", "n19", "n20", "n279", "n29", "n38", "n41", "n5"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "bus", "lineIdentifier": ["14", "176", "19", "24", "29", "38", "n19", "n20", "n279", "n29", "n38", "n41", "n5"]}], "status": true, "id": "490004695D", "commonName": "Cambridge Circus", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Direction", "key": "CompassPoint", "sourceSystemKey": "Naptan490", "value": "S"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Direction", "key": "Towards", "sourceSystemKey": "CountDown", "value": "Piccadilly Circus, Parliament Sq. Or Waterloo"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_15"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_83"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_109"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_192"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_244"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_260"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_325"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_358"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_383"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_386"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5358"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5043"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5016"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5670"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5468"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5364"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5171"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5325"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5516"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5671"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5809"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5655"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5737"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5875"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5090"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5481"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5853"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5867"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5017"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5856"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5758"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5572"}], "children": [], "lat": 51.513411, "lon": -0.129207}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490005062HA", "indicator": "Stop HA", "stopLetter": "HA", "modes": ["bus"], "icsCode": "1005062", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00005062", "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"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490005062HA", "stationAtcoCode": "490G00005062", "lineIdentifier": ["14", "211", "414"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "bus", "lineIdentifier": ["14", "211", "414"]}], "status": true, "id": "490005062HA", "commonName": "Chelsea and Westminster Hospital", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Direction", "key": "CompassPoint", "sourceSystemKey": "Naptan490", "value": "W"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Direction", "key": "Towards", "sourceSystemKey": "CountDown", "value": "Fulham Broadway"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_589"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_649"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_739"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_755"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_757"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5313"}], "children": [], "lat": 51.485381, "lon": -0.181817}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490005062HF", "indicator": "Stop HF", "stopLetter": "HF", "modes": ["bus"], "icsCode": "1005062", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00005062", "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"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490005062HF", "stationAtcoCode": "490G00005062", "lineIdentifier": ["14", "211", "414"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "bus", "lineIdentifier": ["14", "211", "414"]}], "status": true, "id": "490005062HF", "commonName": "Chelsea and Westminster Hospital", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Direction", "key": "CompassPoint", "sourceSystemKey": "Naptan490", "value": "E"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Direction", "key": "Towards", "sourceSystemKey": "CountDown", "value": "Sloane Square Or South Kensington"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_589"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_649"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_651"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_739"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_757"}], "children": [], "lat": 51.485149, "lon": -0.182489}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490005069E", "indicator": "Stop V", "stopLetter": "V", "modes": ["bus"], "icsCode": "1005069", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00005069", "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"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490005069E", "stationAtcoCode": "490G00005069", "lineIdentifier": ["14", "211", "414"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "bus", "lineIdentifier": ["14", "211", "414"]}], "status": true, "id": "490005069E", "commonName": "Chelsea Football Club", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Direction", "key": "CompassPoint", "sourceSystemKey": "Naptan490", "value": "E"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Direction", "key": "Towards", "sourceSystemKey": "CountDown", "value": "Chelsea Or South Kensington"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_618"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_651"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_691"}, {"$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_737"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_739"}], "children": [], "lat": 51.480184, "lon": -0.190017}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490005069W", "indicator": "Stop W", "stopLetter": "W", "modes": ["bus"], "icsCode": "1005069", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00005069", "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"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490005069W", "stationAtcoCode": "490G00005069", "lineIdentifier": ["14", "211", "414"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "bus", "lineIdentifier": ["14", "211", "414"]}], "status": true, "id": "490005069W", "commonName": "Chelsea Football Club", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Direction", "key": "CompassPoint", "sourceSystemKey": "Naptan490", "value": "W"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Direction", "key": "Towards", "sourceSystemKey": "CountDown", "value": "Hammersmith Or Putney"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_618"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_651"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_691"}, {"$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_737"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_739"}], "children": [], "lat": 51.480066, "lon": -0.18995}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490005075E", "indicator": "Stop U", "stopLetter": "U", "modes": ["bus"], "icsCode": "1005075", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00005075", "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"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490005075E", "stationAtcoCode": "490G00005075", "lineIdentifier": ["14", "211", "414"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "bus", "lineIdentifier": ["14", "211", "414"]}], "status": true, "id": "490005075E", "commonName": "Chelsea Village", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Direction", "key": "CompassPoint", "sourceSystemKey": "Naptan490", "value": "E"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Direction", "key": "Towards", "sourceSystemKey": "CountDown", "value": "Chelsea Or South Kensington"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_618"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_691"}, {"$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_737"}], "children": [], "lat": 51.48034, "lon": -0.192531}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490006008W", "indicator": "Stop W", "stopLetter": "W", "modes": ["bus"], "icsCode": "1006008", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00006008", "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"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490006008W", "stationAtcoCode": "490G00006008", "lineIdentifier": ["14", "19", "38", "n19", "n38"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "bus", "lineIdentifier": ["14", "19", "38", "n19", "n38"]}], "status": true, "id": "490006008W", "commonName": "Dean Street / Chinatown", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Direction", "key": "CompassPoint", "sourceSystemKey": "Naptan490", "value": "SW"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Direction", "key": "Towards", "sourceSystemKey": "CountDown", "value": "Hyde Park Corner"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_83"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_109"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_129"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_192"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_226"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_244"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_260"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_325"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_383"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_386"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5596"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5016"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5670"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5468"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5364"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5325"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5671"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5809"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5737"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_4978"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5875"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5686"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5855"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5090"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5481"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5853"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5867"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5017"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5509"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5854"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5856"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5758"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5572"}], "children": [], "lat": 51.51235, "lon": -0.130937}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490006437HB", "indicator": "Stop HB", "stopLetter": "HB", "modes": ["bus"], "icsCode": "1006437", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00006437", "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"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490006437HB", "stationAtcoCode": "490G00006437", "lineIdentifier": ["14", "211", "414"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "bus", "lineIdentifier": ["14", "211", "414"]}], "status": true, "id": "490006437HB", "commonName": "Edith Grove", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Direction", "key": "CompassPoint", "sourceSystemKey": "Naptan490", "value": "W"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Direction", "key": "Towards", "sourceSystemKey": "CountDown", "value": "Fulham Broadway"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_589"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_649"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_651"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_739"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_757"}], "children": [], "lat": 51.484376, "lon": -0.183715}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490006437HE", "indicator": "Stop HE", "stopLetter": "HE", "modes": ["bus"], "icsCode": "1006437", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00006437", "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"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490006437HE", "stationAtcoCode": "490G00006437", "lineIdentifier": ["14", "211", "414"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "bus", "lineIdentifier": ["14", "211", "414"]}], "status": true, "id": "490006437HE", "commonName": "Edith Grove", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Direction", "key": "CompassPoint", "sourceSystemKey": "Naptan490", "value": "E"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Direction", "key": "Towards", "sourceSystemKey": "CountDown", "value": "Sloane Square Or South Kensington"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_649"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_651"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_739"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_757"}], "children": [], "lat": 51.483792, "lon": -0.184891}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490006514N", "indicator": "Stop HJ", "stopLetter": "HJ", "modes": ["bus"], "icsCode": "1006514", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00006514", "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"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490006514N", "stationAtcoCode": "490G00006514", "lineIdentifier": ["14", "211", "345", "414"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "bus", "lineIdentifier": ["14", "211", "345", "414"]}], "status": true, "id": "490006514N", "commonName": "Old Church Street", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Direction", "key": "CompassPoint", "sourceSystemKey": "Naptan490", "value": "N"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Direction", "key": "Towards", "sourceSystemKey": "CountDown", "value": "South Kensington Or Sloane Square"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_172"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_187"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_216"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_218"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_430"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_529"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_589"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_755"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5313"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5694"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_4034"}], "children": [], "lat": 51.489106, "lon": -0.176152}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490006514S", "indicator": "Stop HQ", "stopLetter": "HQ", "modes": ["bus"], "icsCode": "1006514", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00006514", "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"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490006514S", "stationAtcoCode": "490G00006514", "lineIdentifier": ["14", "211", "345", "414"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "bus", "lineIdentifier": ["14", "211", "345", "414"]}], "status": true, "id": "490006514S", "commonName": "Old Church Street", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Direction", "key": "CompassPoint", "sourceSystemKey": "Naptan490", "value": "S"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Direction", "key": "Towards", "sourceSystemKey": "CountDown", "value": "Battersea Or Fulham Broadway"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_172"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_187"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_216"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_218"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_430"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_529"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_589"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_755"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5313"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5694"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_4034"}], "children": [], "lat": 51.488698, "lon": -0.176486}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490007051N", "indicator": "Stop FJ", "stopLetter": "FJ", "modes": ["bus"], "icsCode": "1008436", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00008436", "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"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490007051N", "stationAtcoCode": "490G00008436", "lineIdentifier": ["14", "220", "414", "430", "74", "n33", "n72", "n74"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "bus", "lineIdentifier": ["14", "220", "414", "430", "74", "n33", "n72", "n74"]}], "status": true, "id": "490007051N", "commonName": "Fulham High Street", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Direction", "key": "CompassPoint", "sourceSystemKey": "Naptan490", "value": "N"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Direction", "key": "Towards", "sourceSystemKey": "CountDown", "value": "Fulham, Earls Court Or Hammersmith"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_597"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_607"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_617"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_681"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_765"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_774"}], "children": [], "lat": 51.471003, "lon": -0.2111}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490007051S", "indicator": "Stop FU", "stopLetter": "FU", "modes": ["bus"], "icsCode": "1007051", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00007051", "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"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490007051S", "stationAtcoCode": "490G00007051", "lineIdentifier": ["14", "220", "414", "430", "74", "n33", "n72", "n74"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "bus", "lineIdentifier": ["14", "220", "414", "430", "74", "n33", "n72", "n74"]}], "status": true, "id": "490007051S", "commonName": "Fulham High Street / New Kings Road", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Direction", "key": "CompassPoint", "sourceSystemKey": "Naptan490", "value": "S"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Direction", "key": "Towards", "sourceSystemKey": "CountDown", "value": "Putney Heath, Roehampton Or Wandsworth"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_597"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_607"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_617"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_681"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_765"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_774"}], "children": [], "lat": 51.470228, "lon": -0.210396}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490007054E", "indicator": "Stop FP", "stopLetter": "FP", "modes": ["bus"], "icsCode": "1007054", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00007054", "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"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490007054E", "stationAtcoCode": "490G00007054", "lineIdentifier": ["14", "414"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "bus", "lineIdentifier": ["14", "414"]}], "status": true, "id": "490007054E", "commonName": "Fulham Palace Road", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Direction", "key": "CompassPoint", "sourceSystemKey": "Naptan490", "value": "E"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Direction", "key": "Towards", "sourceSystemKey": "CountDown", "value": "Fulham Broadway"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_597"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_607"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_617"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_681"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_774"}], "children": [], "lat": 51.471949, "lon": -0.210617}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490007054W", "indicator": "Stop FT", "stopLetter": "FT", "modes": ["bus"], "icsCode": "1007054", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00007054", "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"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490007054W", "stationAtcoCode": "490G00007054", "lineIdentifier": ["14", "414"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "bus", "lineIdentifier": ["14", "414"]}], "status": true, "id": "490007054W", "commonName": "Fulham Palace Road", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Direction", "key": "CompassPoint", "sourceSystemKey": "Naptan490", "value": "W"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Direction", "key": "Towards", "sourceSystemKey": "CountDown", "value": "Putney Heath"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_597"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_607"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_617"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_681"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_727"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_774"}], "children": [], "lat": 51.472112, "lon": -0.210135}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490007492E", "indicator": "Stop E", "stopLetter": "E", "modes": ["bus"], "icsCode": "1007492", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00007492", "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"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490007492E", "stationAtcoCode": "490G00007492", "lineIdentifier": ["14", "19", "22", "23", "38", "9", "n19", "n22", "n38", "n9", "n97"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "bus", "lineIdentifier": ["14", "19", "22", "23", "38", "9", "n19", "n22", "n38", "n9", "n97"]}], "status": true, "id": "490007492E", "commonName": "Green Park / Constitution Hill", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Direction", "key": "CompassPoint", "sourceSystemKey": "Naptan490", "value": "SW"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Direction", "key": "Towards", "sourceSystemKey": "CountDown", "value": "Marble Arch, Knightsbridge Or Victoria"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_49"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_191"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_207"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_213"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_380"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_528"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_541"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_733"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5664"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_4762"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_3451"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_4852"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5864"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_4457"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5373"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5000"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_4706"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5969"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_4875"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5968"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_4863"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5323"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_4475"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_4761"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5966"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_4949"}], "children": [], "lat": 51.503994, "lon": -0.147792}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490007841KB", "indicator": "Stop KB", "stopLetter": "KB", "modes": ["bus"], "icsCode": "1007841", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00007841", "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"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490007841KB", "stationAtcoCode": "490G00007841", "lineIdentifier": ["14", "414", "74", "c1", "n74", "n97"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "bus", "lineIdentifier": ["14", "414", "74", "c1", "n74", "n97"]}], "status": true, "id": "490007841KB", "commonName": "Harrods", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Direction", "key": "CompassPoint", "sourceSystemKey": "Naptan490", "value": "E"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Direction", "key": "Towards", "sourceSystemKey": "CountDown", "value": "Hyde Park Corner Or Sloane Square"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_143"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_150"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_166"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_292"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_368"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5514"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5479"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5658"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5318"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5637"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5515"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_4638"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5160"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5410"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_4492"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5152"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5770"}], "children": [], "lat": 51.499406, "lon": -0.164273}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490008380HC", "indicator": "Stop HC", "stopLetter": "HC", "modes": ["bus"], "icsCode": "1008380", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00008380", "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"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490008380HC", "stationAtcoCode": "490G00008380", "lineIdentifier": ["14", "211", "414"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "bus", "lineIdentifier": ["14", "211", "414"]}], "status": true, "id": "490008380HC", "commonName": "Hortensia Road", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Direction", "key": "CompassPoint", "sourceSystemKey": "Naptan490", "value": "SW"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Direction", "key": "Towards", "sourceSystemKey": "CountDown", "value": "Hammersmith Or Putney"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_649"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_651"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_739"}], "children": [], "lat": 51.482504, "lon": -0.186512}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490008380HD", "indicator": "Stop HD", "stopLetter": "HD", "modes": ["bus"], "icsCode": "1008380", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00008380", "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"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490008380HD", "stationAtcoCode": "490G00008380", "lineIdentifier": ["14", "211", "414"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "bus", "lineIdentifier": ["14", "211", "414"]}], "status": true, "id": "490008380HD", "commonName": "Hortensia Road", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Direction", "key": "CompassPoint", "sourceSystemKey": "Naptan490", "value": "NE"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Direction", "key": "Towards", "sourceSystemKey": "CountDown", "value": "South Kensington Or Sloane Square"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_649"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_651"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_739"}], "children": [], "lat": 51.482268, "lon": -0.186939}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490008547E", "indicator": "Stop E", "stopLetter": "E", "modes": ["bus"], "icsCode": "1000352", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00000352", "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"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490008547E", "stationAtcoCode": "490G00000352", "lineIdentifier": ["14", "211", "28", "295", "306", "414", "424", "n11", "n28"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "bus", "lineIdentifier": ["14", "211", "28", "295", "306", "414", "424", "n11", "n28"]}], "status": true, "id": "490008547E", "commonName": "Fulham Broadway", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Direction", "key": "CompassPoint", "sourceSystemKey": "Naptan490", "value": "N"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Direction", "key": "Towards", "sourceSystemKey": "CountDown", "value": "South Kensington, Sands End Or Wandsworth"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_691"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_737"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_782"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_852"}], "children": [], "lat": 51.480215, "lon": -0.198441}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490008547F", "indicator": "Stop F", "stopLetter": "F", "modes": ["bus"], "icsCode": "1000352", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00000352", "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"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490008547F", "stationAtcoCode": "490G00000352", "lineIdentifier": ["14", "211", "28", "295", "306", "414", "424", "n11", "n28"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "bus", "lineIdentifier": ["14", "211", "28", "295", "306", "414", "424", "n11", "n28"]}], "status": true, "id": "490008547F", "commonName": "Fulham Broadway", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Direction", "key": "CompassPoint", "sourceSystemKey": "Naptan490", "value": "SW"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Direction", "key": "Towards", "sourceSystemKey": "CountDown", "value": "Hammersmith, Olympia Or Putney Bridge"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_691"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_737"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_782"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_852"}], "children": [], "lat": 51.480228, "lon": -0.198123}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490009494S", "indicator": "Stop P", "stopLetter": "P", "modes": ["bus"], "icsCode": "1009494", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00009494", "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"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490009494S", "stationAtcoCode": "490G00009494", "lineIdentifier": ["14", "37", "39", "85", "93"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "bus", "lineIdentifier": ["14", "37", "39", "85", "93"]}], "status": true, "id": "490009494S", "commonName": "Lytton Grove", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Direction", "key": "CompassPoint", "sourceSystemKey": "Naptan490", "value": "S"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Direction", "key": "Towards", "sourceSystemKey": "CountDown", "value": "Southfields, Roehampton Or Wimbledon"}], "children": [], "lat": 51.455983, "lon": -0.219186}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490010123E2", "indicator": "Stop FR", "stopLetter": "FR", "modes": ["bus"], "icsCode": "1010123", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00010123", "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"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490010123E2", "stationAtcoCode": "490G00010123", "lineIdentifier": ["14", "414"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "bus", "lineIdentifier": ["14", "414"]}], "status": true, "id": "490010123E2", "commonName": "Munster Road", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Direction", "key": "CompassPoint", "sourceSystemKey": "Naptan490", "value": "NE"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Direction", "key": "Towards", "sourceSystemKey": "CountDown", "value": "Fulham Broadway"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_597"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_617"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_671"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_727"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_774"}], "children": [], "lat": 51.473915, "lon": -0.207487}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490010123W2", "indicator": "Stop FS", "stopLetter": "FS", "modes": ["bus"], "icsCode": "1010123", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00010123", "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"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490010123W2", "stationAtcoCode": "490G00010123", "lineIdentifier": ["14", "414"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "bus", "lineIdentifier": ["14", "414"]}], "status": true, "id": "490010123W2", "commonName": "Munster Road", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Direction", "key": "CompassPoint", "sourceSystemKey": "Naptan490", "value": "SW"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Direction", "key": "Towards", "sourceSystemKey": "CountDown", "value": "Putney"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_597"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_617"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_671"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_727"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_774"}], "children": [], "lat": 51.473674, "lon": -0.207568}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490010526G", "indicator": "Stop G", "stopLetter": "G", "modes": ["bus"], "icsCode": "1010526", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00010526", "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"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490010526G", "stationAtcoCode": "490G00010526", "lineIdentifier": ["14", "19", "23", "38", "9", "n19", "n38", "n9", "n97"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "bus", "lineIdentifier": ["14", "19", "23", "38", "9", "n19", "n38", "n9", "n97"]}], "status": true, "id": "490010526G", "commonName": "Old Bond Street / Royal Academy", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Direction", "key": "CompassPoint", "sourceSystemKey": "Naptan490", "value": "W"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Direction", "key": "Towards", "sourceSystemKey": "CountDown", "value": "Marble Arch, Knightsbridge Or Victoria"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_44"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_49"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_53"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_129"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_228"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_318"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_349"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_391"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_528"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_541"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5252"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5683"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5510"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5821"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5191"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_3451"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5325"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5014"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5809"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5778"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_4978"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5799"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5594"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5432"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5686"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_4182"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_4623"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5714"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5647"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5811"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5863"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5351"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5853"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_4150"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5779"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5317"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5713"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5651"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5363"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5323"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5099"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5509"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5715"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_4475"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5856"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5267"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5687"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5065"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5861"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5600"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5800"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_4949"}], "children": [], "lat": 51.508228, "lon": -0.139204}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490010574D", "indicator": "Stop D", "stopLetter": "D", "modes": ["bus"], "icsCode": "1010574", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00010574", "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"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490010574D", "stationAtcoCode": "490G00010574", "lineIdentifier": ["14", "19", "38", "n19", "n38"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "bus", "lineIdentifier": ["14", "19", "38", "n19", "n38"]}], "status": true, "id": "490010574D", "commonName": "Old Park Lane / Hard Rock Cafe", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Direction", "key": "CompassPoint", "sourceSystemKey": "Naptan490", "value": "E"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Direction", "key": "Towards", "sourceSystemKey": "CountDown", "value": "Tottenham Court Road"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_49"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_191"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_207"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_213"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_380"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_528"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_541"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_733"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5664"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_4762"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_3451"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_4852"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5864"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_4457"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5373"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5000"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_4706"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5969"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_4875"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5968"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_4863"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5323"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_4475"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_4761"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5966"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_4949"}], "children": [], "lat": 51.504276, "lon": -0.148025}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490010603N", "indicator": "Stop HT", "stopLetter": "HT", "modes": ["bus"], "icsCode": "1010603", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00010603", "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"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490010603N", "stationAtcoCode": "490G00010603", "lineIdentifier": ["14", "345", "414", "49"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "bus", "lineIdentifier": ["14", "345", "414", "49"]}], "status": true, "id": "490010603N", "commonName": "Onslow Square", "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": "Hyde Park Corner Or Kensington High Street"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_163"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_172"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_187"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_218"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_220"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_231"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_356"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_430"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_432"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_482"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_781"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5322"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5319"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5111"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_4645"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5757"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5817"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5706"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5666"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5790"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_4928"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_4034"}], "children": [], "lat": 51.492274, "lon": -0.172266}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490010603S", "indicator": "Stop HV", "stopLetter": "HV", "modes": ["bus"], "icsCode": "1010603", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00010603", "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"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490010603S", "stationAtcoCode": "490G00010603", "lineIdentifier": ["14", "345", "414", "49"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "bus", "lineIdentifier": ["14", "345", "414", "49"]}], "status": true, "id": "490010603S", "commonName": "Onslow Square", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Direction", "key": "CompassPoint", "sourceSystemKey": "Naptan490", "value": "S"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Direction", "key": "Towards", "sourceSystemKey": "CountDown", "value": "Battersea Or Fulham Broadway"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_163"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_172"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_187"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_218"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_220"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_231"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_356"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_430"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_432"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_482"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_781"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5322"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5319"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5111"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_4645"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5577"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5757"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5817"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5706"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5666"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5790"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_4928"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_4034"}], "children": [], "lat": 51.492408, "lon": -0.172203}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490010861T", "indicator": "Stop T", "stopLetter": "T", "modes": ["bus"], "icsCode": "1010861", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G000699", "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"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490010861T", "stationAtcoCode": "490G000699", "lineIdentifier": ["14", "414", "424"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "bus", "lineIdentifier": ["14", "414", "424"]}], "status": true, "id": "490010861T", "commonName": "Parsons Green Lane / Fulham Library", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Direction", "key": "CompassPoint", "sourceSystemKey": "Naptan490", "value": "NE"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Direction", "key": "Towards", "sourceSystemKey": "CountDown", "value": "Sands End Or South Kensington"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_671"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_691"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_727"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_729"}], "children": [], "lat": 51.477728, "lon": -0.20162}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490010861V", "indicator": "Stop V", "stopLetter": "V", "modes": ["bus"], "icsCode": "1010861", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G000699", "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"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490010861V", "stationAtcoCode": "490G000699", "lineIdentifier": ["14", "414", "424"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "bus", "lineIdentifier": ["14", "414", "424"]}], "status": true, "id": "490010861V", "commonName": "Parsons Green Lane / Fulham Library", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Direction", "key": "CompassPoint", "sourceSystemKey": "Naptan490", "value": "W"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Direction", "key": "Towards", "sourceSystemKey": "CountDown", "value": "Putney Or Fulham Cross"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_596"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_671"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_727"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_729"}], "children": [], "lat": 51.47701, "lon": -0.202268}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490011278R", "indicator": "Stop R", "stopLetter": "R", "modes": ["bus"], "icsCode": "1011278", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00011278", "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": "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": "n74", "name": "N74", "uri": "/Line/n74", "type": "Line", "crowding": {"$type": "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": "490011278R", "stationAtcoCode": "490G00011278", "lineIdentifier": ["14", "39", "424", "430", "485", "74", "85", "93", "n74"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "bus", "lineIdentifier": ["14", "39", "424", "430", "485", "74", "85", "93", "n74"]}], "status": true, "id": "490011278R", "commonName": "St Mary's Church / Putney Pier", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Direction", "key": "CompassPoint", "sourceSystemKey": "Naptan490", "value": "S"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Direction", "key": "Towards", "sourceSystemKey": "CountDown", "value": "Roehampton, Wandsworth Or Wimbledon"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_302"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_607"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_678"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_693"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_708"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_709"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5032"}], "children": [], "lat": 51.465333, "lon": -0.214316}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490011278S", "indicator": "Stop S", "stopLetter": "S", "modes": ["bus"], "icsCode": "1011278", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00011278", "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"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490011278S", "stationAtcoCode": "490G00011278", "lineIdentifier": ["14", "22", "220", "424", "430", "74", "n22", "n33", "n72", "n74"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "bus", "lineIdentifier": ["14", "22", "220", "424", "430", "74", "n22", "n33", "n72", "n74"]}], "status": true, "id": "490011278S", "commonName": "St Mary's Church / Putney Pier", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Direction", "key": "CompassPoint", "sourceSystemKey": "Naptan490", "value": "N"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Direction", "key": "Towards", "sourceSystemKey": "CountDown", "value": "Fulham Or Hammersmith"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_302"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_607"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_693"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_709"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_765"}], "children": [], "lat": 51.466738, "lon": -0.213311}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490011285E2", "indicator": "Stop L", "stopLetter": "L", "modes": ["bus"], "icsCode": "1011285", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00011285", "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"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490011285E2", "stationAtcoCode": "490G00011285", "lineIdentifier": ["14", "170", "37", "493", "639", "670", "85"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "bus", "lineIdentifier": ["14", "170", "37", "493", "639", "670", "85"]}], "status": true, "id": "490011285E2", "commonName": "Putney Heath / Green Man", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Direction", "key": "CompassPoint", "sourceSystemKey": "Naptan490", "value": "E"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Direction", "key": "Towards", "sourceSystemKey": "CountDown", "value": "Putney Bridge, Southfields Or Wandsworth"}], "children": [], "lat": 51.453513, "lon": -0.221168}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490011285N", "indicator": "Stop M", "stopLetter": "M", "modes": ["bus"], "icsCode": "1011299", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00011299", "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"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490011285N", "stationAtcoCode": "490G00011299", "lineIdentifier": ["14", "37", "39", "85", "93"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "bus", "lineIdentifier": ["14", "37", "39", "85", "93"]}], "status": true, "id": "490011285N", "commonName": "Putney Hill / Green Man", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Direction", "key": "CompassPoint", "sourceSystemKey": "Naptan490", "value": "N"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Direction", "key": "Towards", "sourceSystemKey": "CountDown", "value": "Putney Bridge Or Wandsworth"}], "children": [], "lat": 51.454183, "lon": -0.220264}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490011285S1", "indicator": "Stop A", "stopLetter": "A", "modes": ["bus"], "icsCode": "1011285", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00011285", "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"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490011285S1", "stationAtcoCode": "490G00011285", "lineIdentifier": ["14", "37"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "bus", "lineIdentifier": ["14", "37"]}], "status": true, "id": "490011285S1", "commonName": "Putney Heath / Green Man", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Direction", "key": "CompassPoint", "sourceSystemKey": "Naptan490", "value": "S"}], "children": [], "lat": 51.453161, "lon": -0.221067}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490011286L", "indicator": "Stop L", "stopLetter": "L", "modes": ["bus"], "icsCode": "1011289", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00011289", "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"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490011286L", "stationAtcoCode": "490G00011289", "lineIdentifier": ["14", "39", "424", "430", "74", "85", "93", "n74"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "bus", "lineIdentifier": ["14", "39", "424", "430", "74", "85", "93", "n74"]}], "status": true, "id": "490011286L", "commonName": "Putney Exchange", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Direction", "key": "CompassPoint", "sourceSystemKey": "Naptan490", "value": "S"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Direction", "key": "Towards", "sourceSystemKey": "CountDown", "value": "Roehampton, Southfields Or Wimbledon"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_302"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_678"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_693"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_694"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_705"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_708"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_709"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_743"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5751"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5752"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5032"}], "children": [], "lat": 51.462716, "lon": -0.216117}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490011286M", "indicator": "Stop M", "stopLetter": "M", "modes": ["bus"], "icsCode": "1011289", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00011289", "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"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490011286M", "stationAtcoCode": "490G00011289", "lineIdentifier": ["14", "39", "424", "430", "74", "85", "93", "n74"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "bus", "lineIdentifier": ["14", "39", "424", "430", "74", "85", "93", "n74"]}], "status": true, "id": "490011286M", "commonName": "Putney Exchange", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Direction", "key": "CompassPoint", "sourceSystemKey": "Naptan490", "value": "N"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Direction", "key": "Towards", "sourceSystemKey": "CountDown", "value": "Fulham"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_302"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_678"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_693"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_694"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_708"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_709"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_743"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5751"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5752"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5032"}], "children": [], "lat": 51.464429, "lon": -0.21523}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490011385E", "indicator": "Stop S", "stopLetter": "S", "modes": ["bus"], "icsCode": "1011385", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00011385", "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"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490011385E", "stationAtcoCode": "490G00011385", "lineIdentifier": ["14", "414", "424"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "bus", "lineIdentifier": ["14", "414", "424"]}], "status": true, "id": "490011385E", "commonName": "Radipole Road", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Direction", "key": "CompassPoint", "sourceSystemKey": "Naptan490", "value": "NE"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Direction", "key": "Towards", "sourceSystemKey": "CountDown", "value": "South Kensington Or Sands End"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_597"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_671"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_727"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_729"}], "children": [], "lat": 51.476371, "lon": -0.204568}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490011385W", "indicator": "->SW", "modes": ["bus"], "icsCode": "1011385", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00011385", "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"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490011385W", "stationAtcoCode": "490G00011385", "lineIdentifier": ["14", "414", "424"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "bus", "lineIdentifier": ["14", "414", "424"]}], "status": true, "id": "490011385W", "commonName": "Radipole Road", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Direction", "key": "CompassPoint", "sourceSystemKey": "Naptan490", "value": "SW"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Direction", "key": "Towards", "sourceSystemKey": "CountDown", "value": "Putney Or Fulham Cross"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_597"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_671"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_727"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_729"}], "children": [], "lat": 51.475852, "lon": -0.205337}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490011748H", "indicator": "Stop L", "stopLetter": "L", "modes": ["bus"], "icsCode": "1010526", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00010526", "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"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490011748H", "stationAtcoCode": "490G00010526", "lineIdentifier": ["14", "19", "23", "38", "9", "n19", "n38", "n9", "n97"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "bus", "lineIdentifier": ["14", "19", "23", "38", "9", "n19", "n38", "n9", "n97"]}], "status": true, "id": "490011748H", "commonName": "Old Bond Street / Royal Academy", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Direction", "key": "CompassPoint", "sourceSystemKey": "Naptan490", "value": "E"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Direction", "key": "Towards", "sourceSystemKey": "CountDown", "value": "Trafalgar Square Or Tottenham Court Road"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_44"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_49"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_53"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_129"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_228"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_318"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_349"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_391"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_528"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_541"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5252"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5683"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5510"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5821"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5191"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_3451"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5325"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5014"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5809"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5778"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_4978"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5799"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5594"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5432"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5686"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_4182"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_4623"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5714"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5647"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5811"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5863"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5351"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5853"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_4150"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5779"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5317"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5713"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5651"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5363"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5323"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5099"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5509"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5715"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_4475"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5856"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5267"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5687"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5065"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5861"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5600"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5800"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_4949"}], "children": [], "lat": 51.508294, "lon": -0.13936}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490011791K", "indicator": "Stop K", "stopLetter": "K", "modes": ["bus"], "icsCode": "1011791", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00011791", "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"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490011791K", "stationAtcoCode": "490G00011791", "lineIdentifier": ["14", "19", "38", "n19", "n38"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "bus", "lineIdentifier": ["14", "19", "38", "n19", "n38"]}], "status": true, "id": "490011791K", "commonName": "Trocadero / Haymarket", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Direction", "key": "CompassPoint", "sourceSystemKey": "Naptan490", "value": "SW"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Direction", "key": "Towards", "sourceSystemKey": "CountDown", "value": "Hyde Park Corner"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_83"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_109"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_129"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_192"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_226"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_228"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_233"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_260"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_318"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_325"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_383"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_386"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5596"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5016"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5510"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5670"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5468"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5364"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5325"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5671"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5809"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5737"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5778"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_4978"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5799"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5875"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5686"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5855"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5090"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5481"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5853"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5779"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5867"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5363"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5017"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5509"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5715"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5854"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5856"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5758"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5572"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5687"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5065"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5800"}], "children": [], "lat": 51.511193, "lon": -0.133391}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490011815K", "indicator": "Stop K", "stopLetter": "K", "modes": ["bus"], "icsCode": "1011815", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00011815", "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"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490011815K", "stationAtcoCode": "490G00011815", "lineIdentifier": ["14"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "bus", "lineIdentifier": ["14"]}], "status": true, "id": "490011815K", "commonName": "Bedford Place", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Direction", "key": "CompassPoint", "sourceSystemKey": "Naptan490", "value": "N"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Direction", "key": "Towards", "sourceSystemKey": "CountDown", "value": "Tottenham Court Road"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_11"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_12"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_15"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_23"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_24"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_57"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_77"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_162"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_287"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_562"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_796"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_4203"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_4878"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5655"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_4616"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5545"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5233"}, {"$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_5701"}], "children": [], "lat": 51.520796, "lon": -0.124883}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490011816N", "indicator": "Stop L", "stopLetter": "L", "modes": ["bus"], "icsCode": "1011816", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00011816", "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"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490011816N", "stationAtcoCode": "490G00011816", "lineIdentifier": ["14"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "bus", "lineIdentifier": ["14"]}], "status": true, "id": "490011816N", "commonName": "Montague Street", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Direction", "key": "CompassPoint", "sourceSystemKey": "Naptan490", "value": "N"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Direction", "key": "Towards", "sourceSystemKey": "CountDown", "value": "Russell Square"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_11"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_12"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_15"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_23"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_24"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_77"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_88"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_162"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_244"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_287"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_358"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_364"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_562"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_796"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5358"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5043"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_4203"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_4878"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5516"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5655"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_4616"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5545"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5233"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5701"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_4139"}], "children": [], "lat": 51.520123, "lon": -0.126078}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490012340N", "indicator": "Stop PJ", "stopLetter": "PJ", "modes": ["bus"], "icsCode": "1009494", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00009494", "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"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490012340N", "stationAtcoCode": "490G00009494", "lineIdentifier": ["14", "37", "39", "424", "85", "93"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "bus", "lineIdentifier": ["14", "37", "39", "424", "85", "93"]}], "status": true, "id": "490012340N", "commonName": "Lytton Grove", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Direction", "key": "CompassPoint", "sourceSystemKey": "Naptan490", "value": "N"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Direction", "key": "Towards", "sourceSystemKey": "CountDown", "value": "Putney Bridge Or Wandsworth"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_694"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5751"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5752"}], "children": [], "lat": 51.45728, "lon": -0.218747}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490015157T", "indicator": "Stop FE", "stopLetter": "FE", "modes": ["bus"], "icsCode": "1007281", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G000536", "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": "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": "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"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490015157T", "stationAtcoCode": "490G000536", "lineIdentifier": ["14", "22", "265", "378", "39", "424", "430", "74", "85", "93", "n22", "n33", "n72", "n74"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "bus", "lineIdentifier": ["14", "22", "265", "378", "39", "424", "430", "74", "85", "93", "n22", "n33", "n72", "n74"]}], "status": true, "id": "490015157T", "commonName": "Putney Bridge", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Direction", "key": "CompassPoint", "sourceSystemKey": "Naptan490", "value": "S"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Direction", "key": "Towards", "sourceSystemKey": "CountDown", "value": "Roehampton, Putney Heath Or Barnes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_302"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_607"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_617"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_693"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_765"}], "children": [], "lat": 51.467812, "lon": -0.211786}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490015157V", "indicator": "Stop FH", "stopLetter": "FH", "modes": ["bus"], "icsCode": "1007281", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G000536", "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"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490015157V", "stationAtcoCode": "490G000536", "lineIdentifier": ["14", "22", "220", "378", "424", "430", "74", "n22", "n33", "n72", "n74"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "bus", "lineIdentifier": ["14", "22", "220", "378", "424", "430", "74", "n22", "n33", "n72", "n74"]}], "status": true, "id": "490015157V", "commonName": "Putney Bridge", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Direction", "key": "CompassPoint", "sourceSystemKey": "Naptan490", "value": "N"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Direction", "key": "Towards", "sourceSystemKey": "CountDown", "value": "Chelsea, Fulham Or Hammersmith"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_302"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_607"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_617"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_693"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_765"}], "children": [], "lat": 51.468038, "lon": -0.211835}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490015173D", "indicator": "Stop B", "stopLetter": "B", "modes": ["bus"], "icsCode": "1015173", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G000866", "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"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490015173D", "stationAtcoCode": "490G000866", "lineIdentifier": ["14", "345", "414", "49"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "bus", "lineIdentifier": ["14", "345", "414", "49"]}], "status": true, "id": "490015173D", "commonName": "Sth Kensington Stn / Old Brompton Rd", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Direction", "key": "CompassPoint", "sourceSystemKey": "Naptan490", "value": "N"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Direction", "key": "Towards", "sourceSystemKey": "CountDown", "value": "Hyde Park Corner Or Kensington High Street"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_163"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_172"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_187"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_218"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_231"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_356"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_378"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_432"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_482"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_781"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5322"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5319"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5111"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_4645"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5577"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5757"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5805"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5817"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5706"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5666"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5790"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_4034"}], "children": [], "lat": 51.493448, "lon": -0.173746}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490015421E", "indicator": "Stop HM", "stopLetter": "HM", "modes": ["bus"], "icsCode": "1015421", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00015421", "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"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490015421E", "stationAtcoCode": "490G00015421", "lineIdentifier": ["14", "211", "345", "414"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "bus", "lineIdentifier": ["14", "211", "345", "414"]}], "status": true, "id": "490015421E", "commonName": "Royal Brompton Hosp / Royal Marsden Hosp", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Direction", "key": "CompassPoint", "sourceSystemKey": "Naptan490", "value": "E"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Direction", "key": "Towards", "sourceSystemKey": "CountDown", "value": "Hyde Park Corner Or Sloane Square"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_163"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_172"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_187"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_218"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_356"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_430"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_529"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5322"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5757"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5666"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_4034"}], "children": [], "lat": 51.490723, "lon": -0.173725}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490015421S", "indicator": "Stop HP", "stopLetter": "HP", "modes": ["bus"], "icsCode": "1015421", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00015421", "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"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490015421S", "stationAtcoCode": "490G00015421", "lineIdentifier": ["14", "211", "345", "414"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "bus", "lineIdentifier": ["14", "211", "345", "414"]}], "status": true, "id": "490015421S", "commonName": "Royal Brompton Hosp / Royal Marsden Hosp", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Direction", "key": "CompassPoint", "sourceSystemKey": "Naptan490", "value": "S"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Direction", "key": "Towards", "sourceSystemKey": "CountDown", "value": "Battersea Bridge Or Fulham Broadway"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_172"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_187"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_216"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_218"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_356"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_430"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_529"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5666"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_4034"}], "children": [], "lat": 51.490368, "lon": -0.174057}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490016425WA", "indicator": "Stop P", "stopLetter": "P", "modes": ["bus"], "icsCode": "1016425", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00016425", "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"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490016425WA", "stationAtcoCode": "490G00016425", "lineIdentifier": ["14", "19", "38", "n19", "n38"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "bus", "lineIdentifier": ["14", "19", "38", "n19", "n38"]}], "status": true, "id": "490016425WA", "commonName": "Gerrard Place / Chinatown", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Direction", "key": "CompassPoint", "sourceSystemKey": "Naptan490", "value": "NE"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Direction", "key": "Towards", "sourceSystemKey": "CountDown", "value": "Holborn Or Warren Street Station"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_83"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_109"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_129"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_192"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_226"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_244"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_260"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_325"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_383"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_386"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5358"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5596"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5016"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5670"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5468"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5364"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5325"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5516"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5671"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5809"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5737"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_4978"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5875"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5686"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5090"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5481"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5853"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5867"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5017"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5854"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5856"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5758"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5572"}], "children": [], "lat": 51.512683, "lon": -0.13039}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490G00000352", "modes": ["bus"], "icsCode": "1000352", "stopType": "NaptanOnstreetBusCoachStopPair", "stationNaptan": "490G00000352", "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"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490008547E", "stationAtcoCode": "490G00000352", "lineIdentifier": ["14", "211", "28", "295", "306", "414", "424", "n11", "n28"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490008547F", "stationAtcoCode": "490G00000352", "lineIdentifier": ["14", "211", "28", "295", "306", "414", "424", "n11", "n28"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "bus", "lineIdentifier": ["14", "211", "28", "295", "306", "414", "424", "n11", "n28"]}], "status": true, "id": "490G00000352", "commonName": "Fulham Broadway", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_691"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_737"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_782"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_852"}], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490008547E", "indicator": "Stop E", "stopLetter": "E", "modes": ["bus"], "icsCode": "1000352", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00000352", "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"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490008547E", "stationAtcoCode": "490G00000352", "lineIdentifier": ["14", "211", "28", "295", "306", "414", "424", "n11", "n28"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "bus", "lineIdentifier": ["14", "211", "28", "295", "306", "414", "424", "n11", "n28"]}], "status": true, "id": "490008547E", "commonName": "Fulham Broadway", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Direction", "key": "CompassPoint", "sourceSystemKey": "Naptan490", "value": "N"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Direction", "key": "Towards", "sourceSystemKey": "CountDown", "value": "South Kensington, Sands End Or Wandsworth"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_691"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_737"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_782"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_852"}], "children": [], "lat": 51.480215, "lon": -0.198441}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490008547F", "indicator": "Stop F", "stopLetter": "F", "modes": ["bus"], "icsCode": "1000352", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00000352", "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"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490008547F", "stationAtcoCode": "490G00000352", "lineIdentifier": ["14", "211", "28", "295", "306", "414", "424", "n11", "n28"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "bus", "lineIdentifier": ["14", "211", "28", "295", "306", "414", "424", "n11", "n28"]}], "status": true, "id": "490008547F", "commonName": "Fulham Broadway", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Direction", "key": "CompassPoint", "sourceSystemKey": "Naptan490", "value": "SW"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Direction", "key": "Towards", "sourceSystemKey": "CountDown", "value": "Hammersmith, Olympia Or Putney Bridge"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_691"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_737"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_782"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_852"}], "children": [], "lat": 51.480228, "lon": -0.198123}], "lat": 51.480215, "lon": -0.198441}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490G00003726", "modes": ["bus"], "icsCode": "1003726", "stopType": "NaptanOnstreetBusCoachStopPair", "stationNaptan": "490G00003726", "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"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490003726E", "stationAtcoCode": "490G00003726", "lineIdentifier": ["14", "211", "345", "414"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490003726W2", "stationAtcoCode": "490G00003726", "lineIdentifier": ["14", "211", "345", "414"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "bus", "lineIdentifier": ["14", "211", "345", "414"]}], "status": true, "id": "490G00003726", "commonName": "Fulham Road / Beaufort Street", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_216"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_430"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_589"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_755"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5313"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5694"}], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490003726E", "indicator": "Stop HH", "stopLetter": "HH", "modes": ["bus"], "icsCode": "1003726", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00003726", "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"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490003726E", "stationAtcoCode": "490G00003726", "lineIdentifier": ["14", "211", "345", "414"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "bus", "lineIdentifier": ["14", "211", "345", "414"]}], "status": true, "id": "490003726E", "commonName": "Fulham Road / Beaufort Street", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Direction", "key": "CompassPoint", "sourceSystemKey": "Naptan490", "value": "NE"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Direction", "key": "Towards", "sourceSystemKey": "CountDown", "value": "Sloane Square Or South Kensington"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_216"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_430"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_589"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_755"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5313"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5694"}], "children": [], "lat": 51.487561, "lon": -0.178547}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490003726W2", "indicator": "Stop HR", "stopLetter": "HR", "modes": ["bus"], "icsCode": "1003726", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00003726", "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"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490003726W2", "stationAtcoCode": "490G00003726", "lineIdentifier": ["14", "211", "345", "414"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "bus", "lineIdentifier": ["14", "211", "345", "414"]}], "status": true, "id": "490003726W2", "commonName": "Fulham Road / Beaufort Street", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Direction", "key": "CompassPoint", "sourceSystemKey": "Naptan490", "value": "SW"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Direction", "key": "Towards", "sourceSystemKey": "CountDown", "value": "Battersea Or Fulham Broadway"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_216"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_430"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_589"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_755"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5313"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5694"}], "children": [], "lat": 51.487284, "lon": -0.178703}], "lat": 51.487284, "lon": -0.178703}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490G00003794", "modes": ["bus"], "icsCode": "1003794", "stopType": "NaptanOnstreetBusCoachStopPair", "stationNaptan": "490G00003794", "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"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490003794O", "stationAtcoCode": "490G00003794", "lineIdentifier": ["14"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490004359OA", "stationAtcoCode": "490G00003794", "lineIdentifier": ["14"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "bus", "lineIdentifier": ["14"]}], "status": true, "id": "490G00003794", "commonName": "British Museum", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_15"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_18"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_23"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_24"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_77"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_162"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_244"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_358"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_562"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_751"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5358"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5043"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_4203"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_4878"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5171"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5516"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5655"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5233"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5365"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5701"}], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490003794O", "indicator": "Stop W", "stopLetter": "W", "modes": ["bus"], "icsCode": "1003794", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00003794", "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"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490003794O", "stationAtcoCode": "490G00003794", "lineIdentifier": ["14"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "bus", "lineIdentifier": ["14"]}], "status": true, "id": "490003794O", "commonName": "British Museum", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Direction", "key": "CompassPoint", "sourceSystemKey": "Naptan490", "value": "W"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Direction", "key": "Towards", "sourceSystemKey": "CountDown", "value": "Piccadilly Circus"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_15"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_18"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_23"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_24"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_77"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_162"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_244"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_358"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_562"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_751"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5358"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5043"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_4203"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_4878"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5171"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5516"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5655"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5233"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5365"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5701"}], "children": [], "lat": 51.518996, "lon": -0.124179}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490004359OA", "indicator": "Stop OA", "stopLetter": "OA", "modes": ["bus"], "icsCode": "1003794", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00003794", "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"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490004359OA", "stationAtcoCode": "490G00003794", "lineIdentifier": ["14"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "bus", "lineIdentifier": ["14"]}], "status": true, "id": "490004359OA", "commonName": "British Museum", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Direction", "key": "CompassPoint", "sourceSystemKey": "Naptan490", "value": "E"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Direction", "key": "Towards", "sourceSystemKey": "CountDown", "value": "Russell Square"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_12"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_15"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_18"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_23"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_24"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_88"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_162"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_244"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_358"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_364"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_562"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_751"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5358"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5043"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_4203"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_4878"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5171"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5516"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5655"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5233"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5365"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5701"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_4139"}], "children": [], "lat": 51.518443, "lon": -0.125628}], "lat": 51.518996, "lon": -0.124179}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490G00004436", "modes": ["bus"], "icsCode": "1004436", "stopType": "NaptanOnstreetBusCoachStopPair", "stationNaptan": "490G00004436", "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"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490004436C", "stationAtcoCode": "490G00004436", "lineIdentifier": ["14", "414", "74", "c1", "n74", "n97"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490004436F", "stationAtcoCode": "490G00004436", "lineIdentifier": ["14", "414", "74", "c1", "n74", "n97"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "bus", "lineIdentifier": ["14", "414", "74", "c1", "n74", "n97"]}], "status": true, "id": "490G00004436", "commonName": "Victoria and Albert Museum", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_150"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_163"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_209"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_292"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_356"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_432"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_482"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_781"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5514"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5322"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5319"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5111"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_4645"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5757"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5805"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5817"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5706"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5666"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5515"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5790"}], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490004436C", "indicator": "Stop M", "stopLetter": "M", "modes": ["bus"], "icsCode": "1004436", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00004436", "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"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490004436C", "stationAtcoCode": "490G00004436", "lineIdentifier": ["14", "414", "74", "c1", "n74", "n97"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "bus", "lineIdentifier": ["14", "414", "74", "c1", "n74", "n97"]}], "status": true, "id": "490004436C", "commonName": "Victoria and Albert Museum", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Direction", "key": "CompassPoint", "sourceSystemKey": "Naptan490", "value": "E"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Direction", "key": "Towards", "sourceSystemKey": "CountDown", "value": "Hyde Park Corner Or Sloane Square"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_150"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_163"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_209"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_292"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_356"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_428"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_432"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_482"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_781"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5322"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5319"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5111"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_4645"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5577"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5757"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5805"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5817"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5706"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5666"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5515"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5790"}], "children": [], "lat": 51.496227, "lon": -0.170883}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490004436F", "indicator": "Stop N", "stopLetter": "N", "modes": ["bus"], "icsCode": "1004436", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00004436", "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"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490004436F", "stationAtcoCode": "490G00004436", "lineIdentifier": ["14", "414", "74", "c1", "n74", "n97"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "bus", "lineIdentifier": ["14", "414", "74", "c1", "n74", "n97"]}], "status": true, "id": "490004436F", "commonName": "Victoria and Albert Museum", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Direction", "key": "CompassPoint", "sourceSystemKey": "Naptan490", "value": "W"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Direction", "key": "Towards", "sourceSystemKey": "CountDown", "value": "Earls Court Or Putney"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_150"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_163"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_209"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_292"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_356"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_432"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_482"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_781"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5514"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5322"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5319"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5111"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_4645"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5757"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5805"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5817"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5706"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5666"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5515"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5790"}], "children": [], "lat": 51.496346, "lon": -0.169841}], "lat": 51.496346, "lon": -0.169841}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490G00004437", "modes": ["bus"], "icsCode": "1004437", "stopType": "NaptanOnstreetBusCoachStopPair", "stationNaptan": "490G00004437", "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"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490004437E", "stationAtcoCode": "490G00004437", "lineIdentifier": ["14", "414", "74", "c1", "n74", "n97"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490004437W", "stationAtcoCode": "490G00004437", "lineIdentifier": ["14", "414", "74", "c1", "n74", "n97"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "bus", "lineIdentifier": ["14", "414", "74", "c1", "n74", "n97"]}], "status": true, "id": "490G00004437", "commonName": "Brompton Square", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_143"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_150"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_209"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_292"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_432"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_482"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_781"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5514"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5319"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_4645"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5757"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5805"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5706"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5658"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5318"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5515"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5410"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5770"}], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490004437E", "indicator": "Stop KW", "stopLetter": "KW", "modes": ["bus"], "icsCode": "1004437", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00004437", "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"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490004437E", "stationAtcoCode": "490G00004437", "lineIdentifier": ["14", "414", "74", "c1", "n74", "n97"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "bus", "lineIdentifier": ["14", "414", "74", "c1", "n74", "n97"]}], "status": true, "id": "490004437E", "commonName": "Brompton Square", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Direction", "key": "CompassPoint", "sourceSystemKey": "Naptan490", "value": "E"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Direction", "key": "Towards", "sourceSystemKey": "CountDown", "value": "Sloane Square Or Hyde Park Corner"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_143"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_150"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_209"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_292"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_432"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_482"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_781"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5514"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5319"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_4645"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5757"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5805"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5706"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5658"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5318"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5515"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5410"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5770"}], "children": [], "lat": 51.497772, "lon": -0.167306}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490004437W", "indicator": "Stop KU", "stopLetter": "KU", "modes": ["bus"], "icsCode": "1004437", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00004437", "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"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490004437W", "stationAtcoCode": "490G00004437", "lineIdentifier": ["14", "414", "74", "c1", "n74", "n97"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "bus", "lineIdentifier": ["14", "414", "74", "c1", "n74", "n97"]}], "status": true, "id": "490004437W", "commonName": "Brompton Square", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Direction", "key": "CompassPoint", "sourceSystemKey": "Naptan490", "value": "W"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Direction", "key": "Towards", "sourceSystemKey": "CountDown", "value": "South Kensington"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_143"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_150"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_163"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_209"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_292"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_432"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_482"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_781"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5514"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5322"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5319"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_4645"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5757"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5805"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5706"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5658"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5318"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5515"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5770"}], "children": [], "lat": 51.497433, "lon": -0.167493}], "lat": 51.497772, "lon": -0.167306}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490G00004634", "modes": ["bus"], "icsCode": "1004634", "stopType": "NaptanOnstreetBusCoachStopPair", "stationNaptan": "490G00004634", "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"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490001231N", "stationAtcoCode": "490G00004634", "lineIdentifier": ["14", "37", "39", "424", "85", "93"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "bus", "lineIdentifier": ["14", "37", "39", "424", "85", "93"]}], "status": true, "id": "490G00004634", "commonName": "St John's Avenue", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_678"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_694"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_705"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_708"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_709"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_743"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5751"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5752"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5032"}], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490001231N", "indicator": "Stop C", "stopLetter": "C", "modes": ["bus"], "icsCode": "1004634", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00004634", "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"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490001231N", "stationAtcoCode": "490G00004634", "lineIdentifier": ["14", "37", "39", "424", "85", "93"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "bus", "lineIdentifier": ["14", "37", "39", "424", "85", "93"]}], "status": true, "id": "490001231N", "commonName": "St John's Avenue", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Direction", "key": "CompassPoint", "sourceSystemKey": "Naptan490", "value": "N"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_678"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_694"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_705"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_708"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_709"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_743"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5751"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5752"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5032"}], "children": [], "lat": 51.460004, "lon": -0.217518}], "lat": 51.460004, "lon": -0.217518}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490G00004695", "modes": ["bus"], "icsCode": "1004695", "stopType": "NaptanOnstreetBusCoachStopPair", "stationNaptan": "490G00004695", "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"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490004695D", "stationAtcoCode": "490G00004695", "lineIdentifier": ["14", "176", "19", "24", "29", "38", "n19", "n20", "n279", "n29", "n38", "n41", "n5"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490004695N", "stationAtcoCode": "490G00004695", "lineIdentifier": ["176", "24", "29", "n20", "n279", "n29", "n41", "n5"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "bus", "lineIdentifier": ["14", "176", "19", "24", "29", "38", "n19", "n20", "n279", "n29", "n38", "n41", "n5"]}], "status": true, "id": "490G00004695", "commonName": "Cambridge Circus", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_15"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_83"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_109"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_192"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_244"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_260"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_325"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_358"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_383"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_386"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5358"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5043"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5016"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5670"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5468"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5364"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5171"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5325"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5516"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5671"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5809"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5655"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5737"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5875"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5090"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5481"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5853"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5867"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5017"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5856"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5758"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5572"}], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490004695D", "indicator": "Stop D", "stopLetter": "D", "modes": ["bus"], "icsCode": "1004695", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00004695", "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"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490004695D", "stationAtcoCode": "490G00004695", "lineIdentifier": ["14", "176", "19", "24", "29", "38", "n19", "n20", "n279", "n29", "n38", "n41", "n5"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "bus", "lineIdentifier": ["14", "176", "19", "24", "29", "38", "n19", "n20", "n279", "n29", "n38", "n41", "n5"]}], "status": true, "id": "490004695D", "commonName": "Cambridge Circus", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Direction", "key": "CompassPoint", "sourceSystemKey": "Naptan490", "value": "S"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Direction", "key": "Towards", "sourceSystemKey": "CountDown", "value": "Piccadilly Circus, Parliament Sq. Or Waterloo"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_15"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_83"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_109"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_192"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_244"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_260"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_325"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_358"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_383"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_386"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5358"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5043"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5016"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5670"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5468"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5364"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5171"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5325"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5516"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5671"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5809"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5655"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5737"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5875"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5090"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5481"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5853"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5867"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5017"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5856"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5758"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5572"}], "children": [], "lat": 51.513411, "lon": -0.129207}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490004695N", "indicator": "Stop M", "stopLetter": "M", "modes": [], "icsCode": "1004695", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00004695", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490004695N", "commonName": "Cambridge Circus", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 0.0, "lon": 0.0}], "lat": 51.513411, "lon": -0.129207}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490G00005062", "modes": ["bus"], "icsCode": "1005062", "stopType": "NaptanOnstreetBusCoachStopPair", "stationNaptan": "490G00005062", "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"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490005062HA", "stationAtcoCode": "490G00005062", "lineIdentifier": ["14", "211", "414"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490005062HF", "stationAtcoCode": "490G00005062", "lineIdentifier": ["14", "211", "414"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "bus", "lineIdentifier": ["14", "211", "414"]}], "status": true, "id": "490G00005062", "commonName": "Chelsea and Westminster Hospital", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_589"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_649"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_739"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_755"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_757"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5313"}], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490005062HA", "indicator": "Stop HA", "stopLetter": "HA", "modes": ["bus"], "icsCode": "1005062", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00005062", "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"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490005062HA", "stationAtcoCode": "490G00005062", "lineIdentifier": ["14", "211", "414"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "bus", "lineIdentifier": ["14", "211", "414"]}], "status": true, "id": "490005062HA", "commonName": "Chelsea and Westminster Hospital", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Direction", "key": "CompassPoint", "sourceSystemKey": "Naptan490", "value": "W"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Direction", "key": "Towards", "sourceSystemKey": "CountDown", "value": "Fulham Broadway"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_589"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_649"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_739"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_755"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_757"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5313"}], "children": [], "lat": 51.485381, "lon": -0.181817}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490005062HF", "indicator": "Stop HF", "stopLetter": "HF", "modes": ["bus"], "icsCode": "1005062", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00005062", "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"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490005062HF", "stationAtcoCode": "490G00005062", "lineIdentifier": ["14", "211", "414"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "bus", "lineIdentifier": ["14", "211", "414"]}], "status": true, "id": "490005062HF", "commonName": "Chelsea and Westminster Hospital", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Direction", "key": "CompassPoint", "sourceSystemKey": "Naptan490", "value": "E"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Direction", "key": "Towards", "sourceSystemKey": "CountDown", "value": "Sloane Square Or South Kensington"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_589"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_649"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_651"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_739"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_757"}], "children": [], "lat": 51.485149, "lon": -0.182489}], "lat": 51.485381, "lon": -0.181817}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490G00005069", "modes": ["bus"], "icsCode": "1005069", "stopType": "NaptanOnstreetBusCoachStopPair", "stationNaptan": "490G00005069", "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"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490005069E", "stationAtcoCode": "490G00005069", "lineIdentifier": ["14", "211", "414"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490005069W", "stationAtcoCode": "490G00005069", "lineIdentifier": ["14", "211", "414"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "bus", "lineIdentifier": ["14", "211", "414"]}], "status": true, "id": "490G00005069", "commonName": "Chelsea Football Club", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_618"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_651"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_691"}, {"$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_737"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_739"}], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490005069E", "indicator": "Stop V", "stopLetter": "V", "modes": ["bus"], "icsCode": "1005069", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00005069", "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"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490005069E", "stationAtcoCode": "490G00005069", "lineIdentifier": ["14", "211", "414"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "bus", "lineIdentifier": ["14", "211", "414"]}], "status": true, "id": "490005069E", "commonName": "Chelsea Football Club", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Direction", "key": "CompassPoint", "sourceSystemKey": "Naptan490", "value": "E"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Direction", "key": "Towards", "sourceSystemKey": "CountDown", "value": "Chelsea Or South Kensington"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_618"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_651"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_691"}, {"$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_737"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_739"}], "children": [], "lat": 51.480184, "lon": -0.190017}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490005069W", "indicator": "Stop W", "stopLetter": "W", "modes": ["bus"], "icsCode": "1005069", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00005069", "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"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490005069W", "stationAtcoCode": "490G00005069", "lineIdentifier": ["14", "211", "414"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "bus", "lineIdentifier": ["14", "211", "414"]}], "status": true, "id": "490005069W", "commonName": "Chelsea Football Club", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Direction", "key": "CompassPoint", "sourceSystemKey": "Naptan490", "value": "W"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Direction", "key": "Towards", "sourceSystemKey": "CountDown", "value": "Hammersmith Or Putney"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_618"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_651"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_691"}, {"$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_737"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_739"}], "children": [], "lat": 51.480066, "lon": -0.18995}], "lat": 51.480184, "lon": -0.190017}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490G00005075", "modes": ["bus"], "icsCode": "1005075", "stopType": "NaptanOnstreetBusCoachStopPair", "stationNaptan": "490G00005075", "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"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490005075E", "stationAtcoCode": "490G00005075", "lineIdentifier": ["14", "211", "414"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "bus", "lineIdentifier": ["14", "211", "414"]}], "status": true, "id": "490G00005075", "commonName": "Chelsea Village", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_618"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_691"}, {"$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_737"}], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490005075E", "indicator": "Stop U", "stopLetter": "U", "modes": ["bus"], "icsCode": "1005075", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00005075", "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"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490005075E", "stationAtcoCode": "490G00005075", "lineIdentifier": ["14", "211", "414"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "bus", "lineIdentifier": ["14", "211", "414"]}], "status": true, "id": "490005075E", "commonName": "Chelsea Village", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Direction", "key": "CompassPoint", "sourceSystemKey": "Naptan490", "value": "E"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Direction", "key": "Towards", "sourceSystemKey": "CountDown", "value": "Chelsea Or South Kensington"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_618"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_691"}, {"$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_737"}], "children": [], "lat": 51.48034, "lon": -0.192531}], "lat": 51.48034, "lon": -0.192531}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490G00006008", "modes": ["bus"], "icsCode": "1006008", "stopType": "NaptanOnstreetBusCoachStopCluster", "stationNaptan": "490G00006008", "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"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490006008W", "stationAtcoCode": "490G00006008", "lineIdentifier": ["14", "19", "38", "n19", "n38"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "bus", "lineIdentifier": ["14", "19", "38", "n19", "n38"]}], "status": true, "id": "490G00006008", "commonName": "Dean Street / Chinatown", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_83"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_109"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_129"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_192"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_226"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_244"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_260"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_325"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_383"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_386"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5596"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5016"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5670"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5468"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5364"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5325"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5671"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5809"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5737"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_4978"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5875"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5686"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5855"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5090"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5481"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5853"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5867"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5017"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5509"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5854"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5856"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5758"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5572"}], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490006008W", "indicator": "Stop W", "stopLetter": "W", "modes": ["bus"], "icsCode": "1006008", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00006008", "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"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490006008W", "stationAtcoCode": "490G00006008", "lineIdentifier": ["14", "19", "38", "n19", "n38"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "bus", "lineIdentifier": ["14", "19", "38", "n19", "n38"]}], "status": true, "id": "490006008W", "commonName": "Dean Street / Chinatown", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Direction", "key": "CompassPoint", "sourceSystemKey": "Naptan490", "value": "SW"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Direction", "key": "Towards", "sourceSystemKey": "CountDown", "value": "Hyde Park Corner"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_83"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_109"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_129"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_192"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_226"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_244"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_260"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_325"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_383"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_386"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5596"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5016"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5670"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5468"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5364"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5325"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5671"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5809"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5737"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_4978"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5875"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5686"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5855"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5090"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5481"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5853"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5867"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5017"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5509"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5854"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5856"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5758"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5572"}], "children": [], "lat": 51.51235, "lon": -0.130937}], "lat": 51.51235, "lon": -0.130937}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490G00006437", "modes": ["bus"], "icsCode": "1006437", "stopType": "NaptanOnstreetBusCoachStopPair", "stationNaptan": "490G00006437", "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"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490006437HB", "stationAtcoCode": "490G00006437", "lineIdentifier": ["14", "211", "414"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490006437HE", "stationAtcoCode": "490G00006437", "lineIdentifier": ["14", "211", "414"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "bus", "lineIdentifier": ["14", "211", "414"]}], "status": true, "id": "490G00006437", "commonName": "Edith Grove", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_589"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_649"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_651"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_739"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_757"}], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490006437HB", "indicator": "Stop HB", "stopLetter": "HB", "modes": ["bus"], "icsCode": "1006437", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00006437", "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"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490006437HB", "stationAtcoCode": "490G00006437", "lineIdentifier": ["14", "211", "414"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "bus", "lineIdentifier": ["14", "211", "414"]}], "status": true, "id": "490006437HB", "commonName": "Edith Grove", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Direction", "key": "CompassPoint", "sourceSystemKey": "Naptan490", "value": "W"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Direction", "key": "Towards", "sourceSystemKey": "CountDown", "value": "Fulham Broadway"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_589"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_649"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_651"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_739"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_757"}], "children": [], "lat": 51.484376, "lon": -0.183715}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490006437HE", "indicator": "Stop HE", "stopLetter": "HE", "modes": ["bus"], "icsCode": "1006437", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00006437", "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"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490006437HE", "stationAtcoCode": "490G00006437", "lineIdentifier": ["14", "211", "414"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "bus", "lineIdentifier": ["14", "211", "414"]}], "status": true, "id": "490006437HE", "commonName": "Edith Grove", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Direction", "key": "CompassPoint", "sourceSystemKey": "Naptan490", "value": "E"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Direction", "key": "Towards", "sourceSystemKey": "CountDown", "value": "Sloane Square Or South Kensington"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_649"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_651"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_739"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_757"}], "children": [], "lat": 51.483792, "lon": -0.184891}], "lat": 51.484376, "lon": -0.183715}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490G00006514", "modes": ["bus"], "icsCode": "1006514", "stopType": "NaptanOnstreetBusCoachStopPair", "stationNaptan": "490G00006514", "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"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490006514N", "stationAtcoCode": "490G00006514", "lineIdentifier": ["14", "211", "345", "414"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490006514S", "stationAtcoCode": "490G00006514", "lineIdentifier": ["14", "211", "345", "414"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "bus", "lineIdentifier": ["14", "211", "345", "414"]}], "status": true, "id": "490G00006514", "commonName": "Old Church Street", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_172"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_187"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_216"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_218"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_430"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_529"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_589"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_755"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5313"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5694"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_4034"}], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490006514N", "indicator": "Stop HJ", "stopLetter": "HJ", "modes": ["bus"], "icsCode": "1006514", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00006514", "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"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490006514N", "stationAtcoCode": "490G00006514", "lineIdentifier": ["14", "211", "345", "414"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "bus", "lineIdentifier": ["14", "211", "345", "414"]}], "status": true, "id": "490006514N", "commonName": "Old Church Street", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Direction", "key": "CompassPoint", "sourceSystemKey": "Naptan490", "value": "N"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Direction", "key": "Towards", "sourceSystemKey": "CountDown", "value": "South Kensington Or Sloane Square"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_172"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_187"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_216"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_218"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_430"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_529"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_589"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_755"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5313"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5694"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_4034"}], "children": [], "lat": 51.489106, "lon": -0.176152}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490006514S", "indicator": "Stop HQ", "stopLetter": "HQ", "modes": ["bus"], "icsCode": "1006514", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00006514", "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"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490006514S", "stationAtcoCode": "490G00006514", "lineIdentifier": ["14", "211", "345", "414"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "bus", "lineIdentifier": ["14", "211", "345", "414"]}], "status": true, "id": "490006514S", "commonName": "Old Church Street", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Direction", "key": "CompassPoint", "sourceSystemKey": "Naptan490", "value": "S"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Direction", "key": "Towards", "sourceSystemKey": "CountDown", "value": "Battersea Or Fulham Broadway"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_172"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_187"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_216"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_218"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_430"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_529"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_589"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_755"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5313"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5694"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_4034"}], "children": [], "lat": 51.488698, "lon": -0.176486}], "lat": 51.488698, "lon": -0.176486}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490G00007051", "modes": ["bus"], "icsCode": "1007051", "stopType": "NaptanOnstreetBusCoachStopPair", "stationNaptan": "490G00007051", "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"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490007051S", "stationAtcoCode": "490G00007051", "lineIdentifier": ["14", "220", "414", "430", "74", "n33", "n72", "n74"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "bus", "lineIdentifier": ["14", "220", "414", "430", "74", "n33", "n72", "n74"]}], "status": true, "id": "490G00007051", "commonName": "Fulham High Street / New Kings Road", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_597"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_607"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_617"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_681"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_765"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_774"}], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490007051S", "indicator": "Stop FU", "stopLetter": "FU", "modes": ["bus"], "icsCode": "1007051", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00007051", "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"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490007051S", "stationAtcoCode": "490G00007051", "lineIdentifier": ["14", "220", "414", "430", "74", "n33", "n72", "n74"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "bus", "lineIdentifier": ["14", "220", "414", "430", "74", "n33", "n72", "n74"]}], "status": true, "id": "490007051S", "commonName": "Fulham High Street / New Kings Road", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Direction", "key": "CompassPoint", "sourceSystemKey": "Naptan490", "value": "S"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Direction", "key": "Towards", "sourceSystemKey": "CountDown", "value": "Putney Heath, Roehampton Or Wandsworth"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_597"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_607"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_617"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_681"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_765"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_774"}], "children": [], "lat": 51.470228, "lon": -0.210396}], "lat": 51.470228, "lon": -0.210396}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490G00007054", "modes": ["bus"], "icsCode": "1007054", "stopType": "NaptanOnstreetBusCoachStopPair", "stationNaptan": "490G00007054", "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"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490007054E", "stationAtcoCode": "490G00007054", "lineIdentifier": ["14", "414"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490007054W", "stationAtcoCode": "490G00007054", "lineIdentifier": ["14", "414"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "bus", "lineIdentifier": ["14", "414"]}], "status": true, "id": "490G00007054", "commonName": "Fulham Palace Road", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_597"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_607"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_617"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_681"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_774"}], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490007054E", "indicator": "Stop FP", "stopLetter": "FP", "modes": ["bus"], "icsCode": "1007054", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00007054", "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"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490007054E", "stationAtcoCode": "490G00007054", "lineIdentifier": ["14", "414"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "bus", "lineIdentifier": ["14", "414"]}], "status": true, "id": "490007054E", "commonName": "Fulham Palace Road", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Direction", "key": "CompassPoint", "sourceSystemKey": "Naptan490", "value": "E"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Direction", "key": "Towards", "sourceSystemKey": "CountDown", "value": "Fulham Broadway"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_597"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_607"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_617"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_681"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_774"}], "children": [], "lat": 51.471949, "lon": -0.210617}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490007054W", "indicator": "Stop FT", "stopLetter": "FT", "modes": ["bus"], "icsCode": "1007054", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00007054", "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"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490007054W", "stationAtcoCode": "490G00007054", "lineIdentifier": ["14", "414"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "bus", "lineIdentifier": ["14", "414"]}], "status": true, "id": "490007054W", "commonName": "Fulham Palace Road", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Direction", "key": "CompassPoint", "sourceSystemKey": "Naptan490", "value": "W"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Direction", "key": "Towards", "sourceSystemKey": "CountDown", "value": "Putney Heath"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_597"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_607"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_617"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_681"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_727"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_774"}], "children": [], "lat": 51.472112, "lon": -0.210135}], "lat": 51.471949, "lon": -0.210617}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490G00007492", "modes": ["bus"], "icsCode": "1007492", "stopType": "NaptanOnstreetBusCoachStopPair", "stationNaptan": "490G00007492", "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"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490007492E", "stationAtcoCode": "490G00007492", "lineIdentifier": ["14", "19", "22", "23", "38", "9", "n19", "n22", "n38", "n9", "n97"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "bus", "lineIdentifier": ["14", "19", "22", "23", "38", "9", "n19", "n22", "n38", "n9", "n97"]}], "status": true, "id": "490G00007492", "commonName": "Green Park / Constitution Hill", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_49"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_191"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_207"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_213"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_380"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_528"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_541"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_733"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5664"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_4762"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_3451"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_4852"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5864"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_4457"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5373"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5000"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_4706"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5969"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_4875"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5968"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_4863"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5323"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_4475"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_4761"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5966"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_4949"}], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490007492E", "indicator": "Stop E", "stopLetter": "E", "modes": ["bus"], "icsCode": "1007492", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00007492", "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"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490007492E", "stationAtcoCode": "490G00007492", "lineIdentifier": ["14", "19", "22", "23", "38", "9", "n19", "n22", "n38", "n9", "n97"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "bus", "lineIdentifier": ["14", "19", "22", "23", "38", "9", "n19", "n22", "n38", "n9", "n97"]}], "status": true, "id": "490007492E", "commonName": "Green Park / Constitution Hill", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Direction", "key": "CompassPoint", "sourceSystemKey": "Naptan490", "value": "SW"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Direction", "key": "Towards", "sourceSystemKey": "CountDown", "value": "Marble Arch, Knightsbridge Or Victoria"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_49"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_191"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_207"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_213"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_380"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_528"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_541"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_733"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5664"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_4762"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_3451"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_4852"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5864"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_4457"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5373"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5000"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_4706"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5969"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_4875"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5968"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_4863"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5323"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_4475"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_4761"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5966"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_4949"}], "children": [], "lat": 51.503994, "lon": -0.147792}], "lat": 51.503994, "lon": -0.147792}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490G00007841", "modes": ["bus"], "icsCode": "1007841", "stopType": "NaptanOnstreetBusCoachStopCluster", "stationNaptan": "490G00007841", "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"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490007841KB", "stationAtcoCode": "490G00007841", "lineIdentifier": ["14", "414", "74", "c1", "n74", "n97"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490007841KA", "stationAtcoCode": "490G00007841", "lineIdentifier": ["c1"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "bus", "lineIdentifier": ["14", "414", "74", "c1", "n74", "n97"]}], "status": true, "id": "490G00007841", "commonName": "Harrods", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_143"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_150"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_166"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_292"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_368"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5514"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5479"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5658"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5318"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5637"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5515"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_4638"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5160"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5410"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_4492"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5152"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5770"}], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490007841KB", "indicator": "Stop KB", "stopLetter": "KB", "modes": ["bus"], "icsCode": "1007841", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00007841", "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"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490007841KB", "stationAtcoCode": "490G00007841", "lineIdentifier": ["14", "414", "74", "c1", "n74", "n97"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "bus", "lineIdentifier": ["14", "414", "74", "c1", "n74", "n97"]}], "status": true, "id": "490007841KB", "commonName": "Harrods", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Direction", "key": "CompassPoint", "sourceSystemKey": "Naptan490", "value": "E"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Direction", "key": "Towards", "sourceSystemKey": "CountDown", "value": "Hyde Park Corner Or Sloane Square"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_143"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_150"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_166"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_292"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_368"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5514"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5479"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5658"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5318"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5637"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5515"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_4638"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5160"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5410"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_4492"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5152"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5770"}], "children": [], "lat": 51.499406, "lon": -0.164273}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490007841KA", "indicator": "Stop KA", "stopLetter": "KA", "modes": [], "icsCode": "1007841", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00007841", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490007841KA", "commonName": "Harrods", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 0.0, "lon": 0.0}], "lat": 51.499406, "lon": -0.164273}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490G00008380", "modes": ["bus"], "icsCode": "1008380", "stopType": "NaptanOnstreetBusCoachStopPair", "stationNaptan": "490G00008380", "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"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490008380HC", "stationAtcoCode": "490G00008380", "lineIdentifier": ["14", "211", "414"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490008380HD", "stationAtcoCode": "490G00008380", "lineIdentifier": ["14", "211", "414"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "bus", "lineIdentifier": ["14", "211", "414"]}], "status": true, "id": "490G00008380", "commonName": "Hortensia Road", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_649"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_651"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_739"}], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490008380HC", "indicator": "Stop HC", "stopLetter": "HC", "modes": ["bus"], "icsCode": "1008380", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00008380", "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"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490008380HC", "stationAtcoCode": "490G00008380", "lineIdentifier": ["14", "211", "414"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "bus", "lineIdentifier": ["14", "211", "414"]}], "status": true, "id": "490008380HC", "commonName": "Hortensia Road", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Direction", "key": "CompassPoint", "sourceSystemKey": "Naptan490", "value": "SW"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Direction", "key": "Towards", "sourceSystemKey": "CountDown", "value": "Hammersmith Or Putney"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_649"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_651"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_739"}], "children": [], "lat": 51.482504, "lon": -0.186512}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490008380HD", "indicator": "Stop HD", "stopLetter": "HD", "modes": ["bus"], "icsCode": "1008380", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00008380", "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"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490008380HD", "stationAtcoCode": "490G00008380", "lineIdentifier": ["14", "211", "414"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "bus", "lineIdentifier": ["14", "211", "414"]}], "status": true, "id": "490008380HD", "commonName": "Hortensia Road", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Direction", "key": "CompassPoint", "sourceSystemKey": "Naptan490", "value": "NE"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Direction", "key": "Towards", "sourceSystemKey": "CountDown", "value": "South Kensington Or Sloane Square"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_649"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_651"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_739"}], "children": [], "lat": 51.482268, "lon": -0.186939}], "lat": 51.482268, "lon": -0.186939}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490G00008436", "modes": ["bus"], "icsCode": "1008436", "stopType": "NaptanOnstreetBusCoachStopPair", "stationNaptan": "490G00008436", "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"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490007051N", "stationAtcoCode": "490G00008436", "lineIdentifier": ["14", "220", "414", "430", "74", "n33", "n72", "n74"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "bus", "lineIdentifier": ["14", "220", "414", "430", "74", "n33", "n72", "n74"]}], "status": true, "id": "490G00008436", "commonName": "Fulham High Street", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_597"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_607"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_617"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_681"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_765"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_774"}], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490007051N", "indicator": "Stop FJ", "stopLetter": "FJ", "modes": ["bus"], "icsCode": "1008436", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00008436", "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"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490007051N", "stationAtcoCode": "490G00008436", "lineIdentifier": ["14", "220", "414", "430", "74", "n33", "n72", "n74"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "bus", "lineIdentifier": ["14", "220", "414", "430", "74", "n33", "n72", "n74"]}], "status": true, "id": "490007051N", "commonName": "Fulham High Street", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Direction", "key": "CompassPoint", "sourceSystemKey": "Naptan490", "value": "N"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Direction", "key": "Towards", "sourceSystemKey": "CountDown", "value": "Fulham, Earls Court Or Hammersmith"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_597"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_607"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_617"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_681"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_765"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_774"}], "children": [], "lat": 51.471003, "lon": -0.2111}], "lat": 51.471003, "lon": -0.2111}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490G00009494", "modes": ["bus"], "icsCode": "1009494", "stopType": "NaptanOnstreetBusCoachStopPair", "stationNaptan": "490G00009494", "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"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490009494S", "stationAtcoCode": "490G00009494", "lineIdentifier": ["14", "37", "39", "85", "93"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490012340N", "stationAtcoCode": "490G00009494", "lineIdentifier": ["14", "37", "39", "424", "85", "93"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "bus", "lineIdentifier": ["14", "37", "39", "424", "85", "93"]}], "status": true, "id": "490G00009494", "commonName": "Lytton Grove", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_694"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5751"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5752"}], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490009494S", "indicator": "Stop P", "stopLetter": "P", "modes": ["bus"], "icsCode": "1009494", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00009494", "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"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490009494S", "stationAtcoCode": "490G00009494", "lineIdentifier": ["14", "37", "39", "85", "93"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "bus", "lineIdentifier": ["14", "37", "39", "85", "93"]}], "status": true, "id": "490009494S", "commonName": "Lytton Grove", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Direction", "key": "CompassPoint", "sourceSystemKey": "Naptan490", "value": "S"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Direction", "key": "Towards", "sourceSystemKey": "CountDown", "value": "Southfields, Roehampton Or Wimbledon"}], "children": [], "lat": 51.455983, "lon": -0.219186}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490012340N", "indicator": "Stop PJ", "stopLetter": "PJ", "modes": ["bus"], "icsCode": "1009494", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00009494", "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"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490012340N", "stationAtcoCode": "490G00009494", "lineIdentifier": ["14", "37", "39", "424", "85", "93"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "bus", "lineIdentifier": ["14", "37", "39", "424", "85", "93"]}], "status": true, "id": "490012340N", "commonName": "Lytton Grove", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Direction", "key": "CompassPoint", "sourceSystemKey": "Naptan490", "value": "N"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Direction", "key": "Towards", "sourceSystemKey": "CountDown", "value": "Putney Bridge Or Wandsworth"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_694"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5751"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5752"}], "children": [], "lat": 51.45728, "lon": -0.218747}], "lat": 51.45728, "lon": -0.218747}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490G00010123", "modes": ["bus"], "icsCode": "1010123", "stopType": "NaptanOnstreetBusCoachStopPair", "stationNaptan": "490G00010123", "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"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490010123E2", "stationAtcoCode": "490G00010123", "lineIdentifier": ["14", "414"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490010123W2", "stationAtcoCode": "490G00010123", "lineIdentifier": ["14", "414"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "bus", "lineIdentifier": ["14", "414"]}], "status": true, "id": "490G00010123", "commonName": "Munster Road", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_597"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_617"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_671"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_727"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_774"}], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490010123E2", "indicator": "Stop FR", "stopLetter": "FR", "modes": ["bus"], "icsCode": "1010123", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00010123", "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"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490010123E2", "stationAtcoCode": "490G00010123", "lineIdentifier": ["14", "414"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "bus", "lineIdentifier": ["14", "414"]}], "status": true, "id": "490010123E2", "commonName": "Munster Road", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Direction", "key": "CompassPoint", "sourceSystemKey": "Naptan490", "value": "NE"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Direction", "key": "Towards", "sourceSystemKey": "CountDown", "value": "Fulham Broadway"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_597"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_617"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_671"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_727"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_774"}], "children": [], "lat": 51.473915, "lon": -0.207487}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490010123W2", "indicator": "Stop FS", "stopLetter": "FS", "modes": ["bus"], "icsCode": "1010123", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00010123", "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"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490010123W2", "stationAtcoCode": "490G00010123", "lineIdentifier": ["14", "414"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "bus", "lineIdentifier": ["14", "414"]}], "status": true, "id": "490010123W2", "commonName": "Munster Road", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Direction", "key": "CompassPoint", "sourceSystemKey": "Naptan490", "value": "SW"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Direction", "key": "Towards", "sourceSystemKey": "CountDown", "value": "Putney"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_597"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_617"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_671"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_727"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_774"}], "children": [], "lat": 51.473674, "lon": -0.207568}], "lat": 51.473674, "lon": -0.207568}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490G00010526", "modes": ["bus"], "icsCode": "1010526", "stopType": "NaptanOnstreetBusCoachStopPair", "stationNaptan": "490G00010526", "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"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490010526G", "stationAtcoCode": "490G00010526", "lineIdentifier": ["14", "19", "23", "38", "9", "n19", "n38", "n9", "n97"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490011748H", "stationAtcoCode": "490G00010526", "lineIdentifier": ["14", "19", "23", "38", "9", "n19", "n38", "n9", "n97"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "bus", "lineIdentifier": ["14", "19", "23", "38", "9", "n19", "n38", "n9", "n97"]}], "status": true, "id": "490G00010526", "commonName": "Old Bond Street / Royal Academy", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_44"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_49"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_53"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_129"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_228"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_318"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_349"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_391"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_528"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_541"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5252"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5683"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5510"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5821"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5191"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_3451"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5325"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5014"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5809"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5778"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_4978"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5799"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5594"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5432"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5686"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_4182"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_4623"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5714"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5647"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5811"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5863"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5351"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5853"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_4150"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5779"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5317"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5713"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5651"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5363"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5323"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5099"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5509"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5715"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_4475"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5856"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5267"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5687"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5065"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5861"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5600"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5800"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_4949"}], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490010526G", "indicator": "Stop G", "stopLetter": "G", "modes": ["bus"], "icsCode": "1010526", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00010526", "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"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490010526G", "stationAtcoCode": "490G00010526", "lineIdentifier": ["14", "19", "23", "38", "9", "n19", "n38", "n9", "n97"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "bus", "lineIdentifier": ["14", "19", "23", "38", "9", "n19", "n38", "n9", "n97"]}], "status": true, "id": "490010526G", "commonName": "Old Bond Street / Royal Academy", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Direction", "key": "CompassPoint", "sourceSystemKey": "Naptan490", "value": "W"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Direction", "key": "Towards", "sourceSystemKey": "CountDown", "value": "Marble Arch, Knightsbridge Or Victoria"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_44"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_49"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_53"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_129"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_228"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_318"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_349"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_391"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_528"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_541"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5252"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5683"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5510"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5821"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5191"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_3451"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5325"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5014"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5809"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5778"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_4978"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5799"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5594"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5432"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5686"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_4182"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_4623"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5714"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5647"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5811"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5863"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5351"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5853"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_4150"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5779"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5317"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5713"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5651"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5363"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5323"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5099"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5509"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5715"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_4475"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5856"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5267"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5687"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5065"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5861"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5600"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5800"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_4949"}], "children": [], "lat": 51.508228, "lon": -0.139204}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490011748H", "indicator": "Stop L", "stopLetter": "L", "modes": ["bus"], "icsCode": "1010526", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00010526", "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"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490011748H", "stationAtcoCode": "490G00010526", "lineIdentifier": ["14", "19", "23", "38", "9", "n19", "n38", "n9", "n97"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "bus", "lineIdentifier": ["14", "19", "23", "38", "9", "n19", "n38", "n9", "n97"]}], "status": true, "id": "490011748H", "commonName": "Old Bond Street / Royal Academy", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Direction", "key": "CompassPoint", "sourceSystemKey": "Naptan490", "value": "E"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Direction", "key": "Towards", "sourceSystemKey": "CountDown", "value": "Trafalgar Square Or Tottenham Court Road"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_44"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_49"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_53"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_129"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_228"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_318"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_349"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_391"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_528"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_541"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5252"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5683"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5510"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5821"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5191"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_3451"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5325"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5014"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5809"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5778"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_4978"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5799"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5594"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5432"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5686"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_4182"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_4623"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5714"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5647"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5811"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5863"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5351"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5853"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_4150"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5779"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5317"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5713"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5651"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5363"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5323"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5099"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5509"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5715"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_4475"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5856"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5267"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5687"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5065"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5861"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5600"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5800"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_4949"}], "children": [], "lat": 51.508294, "lon": -0.13936}], "lat": 51.508294, "lon": -0.13936}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490G00010574", "modes": ["bus"], "icsCode": "1010574", "stopType": "NaptanOnstreetBusCoachStopPair", "stationNaptan": "490G00010574", "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"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490010574D", "stationAtcoCode": "490G00010574", "lineIdentifier": ["14", "19", "38", "n19", "n38"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490010574C", "stationAtcoCode": "490G00010574", "lineIdentifier": ["22", "23", "9", "n22", "n9", "n97"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "bus", "lineIdentifier": ["14", "19", "22", "23", "38", "9", "n19", "n22", "n38", "n9", "n97"]}], "status": true, "id": "490G00010574", "commonName": "Old Park Lane / Hard Rock Cafe", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_49"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_191"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_207"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_213"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_380"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_528"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_541"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_733"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5664"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_4762"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_3451"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_4852"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5864"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_4457"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5373"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5000"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_4706"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5969"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_4875"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5968"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_4863"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5323"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_4475"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_4761"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5966"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_4949"}], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490010574D", "indicator": "Stop D", "stopLetter": "D", "modes": ["bus"], "icsCode": "1010574", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00010574", "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"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490010574D", "stationAtcoCode": "490G00010574", "lineIdentifier": ["14", "19", "38", "n19", "n38"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "bus", "lineIdentifier": ["14", "19", "38", "n19", "n38"]}], "status": true, "id": "490010574D", "commonName": "Old Park Lane / Hard Rock Cafe", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Direction", "key": "CompassPoint", "sourceSystemKey": "Naptan490", "value": "E"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Direction", "key": "Towards", "sourceSystemKey": "CountDown", "value": "Tottenham Court Road"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_49"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_191"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_207"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_213"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_380"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_528"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_541"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_733"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5664"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_4762"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_3451"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_4852"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5864"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_4457"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5373"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5000"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_4706"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5969"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_4875"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5968"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_4863"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5323"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_4475"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_4761"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5966"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_4949"}], "children": [], "lat": 51.504276, "lon": -0.148025}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490010574C", "indicator": "Stop C", "stopLetter": "C", "modes": [], "icsCode": "1010574", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00010574", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490010574C", "commonName": "Old Park Lane / Hard Rock Cafe", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.504084, "lon": -0.148408}], "lat": 51.504084, "lon": -0.148408}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490G00010603", "modes": ["bus"], "icsCode": "1010603", "stopType": "NaptanOnstreetBusCoachStopPair", "stationNaptan": "490G00010603", "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"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490010603N", "stationAtcoCode": "490G00010603", "lineIdentifier": ["14", "345", "414", "49"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490010603S", "stationAtcoCode": "490G00010603", "lineIdentifier": ["14", "345", "414", "49"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "bus", "lineIdentifier": ["14", "345", "414", "49"]}], "status": true, "id": "490G00010603", "commonName": "Onslow Square", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_163"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_172"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_187"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_218"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_220"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_231"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_356"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_430"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_432"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_482"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_781"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5322"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5319"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5111"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_4645"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5577"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5757"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5817"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5706"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5666"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5790"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_4928"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_4034"}], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490010603N", "indicator": "Stop HT", "stopLetter": "HT", "modes": ["bus"], "icsCode": "1010603", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00010603", "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"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490010603N", "stationAtcoCode": "490G00010603", "lineIdentifier": ["14", "345", "414", "49"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "bus", "lineIdentifier": ["14", "345", "414", "49"]}], "status": true, "id": "490010603N", "commonName": "Onslow Square", "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": "Hyde Park Corner Or Kensington High Street"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_163"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_172"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_187"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_218"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_220"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_231"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_356"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_430"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_432"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_482"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_781"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5322"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5319"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5111"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_4645"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5757"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5817"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5706"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5666"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5790"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_4928"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_4034"}], "children": [], "lat": 51.492274, "lon": -0.172266}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490010603S", "indicator": "Stop HV", "stopLetter": "HV", "modes": ["bus"], "icsCode": "1010603", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00010603", "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"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490010603S", "stationAtcoCode": "490G00010603", "lineIdentifier": ["14", "345", "414", "49"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "bus", "lineIdentifier": ["14", "345", "414", "49"]}], "status": true, "id": "490010603S", "commonName": "Onslow Square", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Direction", "key": "CompassPoint", "sourceSystemKey": "Naptan490", "value": "S"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Direction", "key": "Towards", "sourceSystemKey": "CountDown", "value": "Battersea Or Fulham Broadway"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_163"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_172"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_187"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_218"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_220"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_231"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_356"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_430"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_432"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_482"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_781"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5322"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5319"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5111"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_4645"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5577"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5757"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5817"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5706"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5666"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5790"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_4928"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_4034"}], "children": [], "lat": 51.492408, "lon": -0.172203}], "lat": 51.492408, "lon": -0.172203}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490G00011278", "modes": ["bus"], "icsCode": "1011278", "stopType": "NaptanFerryPort", "stationNaptan": "490G00011278", "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"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490011278R", "stationAtcoCode": "490G00011278", "lineIdentifier": ["14", "39", "424", "430", "485", "74", "85", "93", "n74"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490011278S", "stationAtcoCode": "490G00011278", "lineIdentifier": ["14", "22", "220", "424", "430", "74", "n22", "n33", "n72", "n74"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490011278N", "stationAtcoCode": "490G00011278", "lineIdentifier": ["265", "270", "378", "39", "85", "93"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "bus", "lineIdentifier": ["14", "22", "220", "265", "270", "378", "39", "424", "430", "485", "74", "85", "93", "n22", "n33", "n72", "n74"]}], "status": true, "id": "490G00011278", "commonName": "St Mary's Church / Putney Pier", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_302"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_607"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_693"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_709"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_765"}], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490011278R", "indicator": "Stop R", "stopLetter": "R", "modes": ["bus"], "icsCode": "1011278", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00011278", "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": "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": "n74", "name": "N74", "uri": "/Line/n74", "type": "Line", "crowding": {"$type": "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": "490011278R", "stationAtcoCode": "490G00011278", "lineIdentifier": ["14", "39", "424", "430", "485", "74", "85", "93", "n74"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "bus", "lineIdentifier": ["14", "39", "424", "430", "485", "74", "85", "93", "n74"]}], "status": true, "id": "490011278R", "commonName": "St Mary's Church / Putney Pier", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Direction", "key": "CompassPoint", "sourceSystemKey": "Naptan490", "value": "S"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Direction", "key": "Towards", "sourceSystemKey": "CountDown", "value": "Roehampton, Wandsworth Or Wimbledon"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_302"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_607"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_678"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_693"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_708"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_709"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5032"}], "children": [], "lat": 51.465333, "lon": -0.214316}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490011278S", "indicator": "Stop S", "stopLetter": "S", "modes": ["bus"], "icsCode": "1011278", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00011278", "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"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490011278S", "stationAtcoCode": "490G00011278", "lineIdentifier": ["14", "22", "220", "424", "430", "74", "n22", "n33", "n72", "n74"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "bus", "lineIdentifier": ["14", "22", "220", "424", "430", "74", "n22", "n33", "n72", "n74"]}], "status": true, "id": "490011278S", "commonName": "St Mary's Church / Putney Pier", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Direction", "key": "CompassPoint", "sourceSystemKey": "Naptan490", "value": "N"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Direction", "key": "Towards", "sourceSystemKey": "CountDown", "value": "Fulham Or Hammersmith"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_302"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_607"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_693"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_709"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_765"}], "children": [], "lat": 51.466738, "lon": -0.213311}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490011278N", "indicator": "Stop T", "stopLetter": "T", "modes": [], "icsCode": "1011278", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00011278", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490011278N", "commonName": "St Mary's Church / Putney Pier", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 0.0, "lon": 0.0}], "lat": 51.466738, "lon": -0.213311}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490G00011285", "modes": ["bus"], "icsCode": "1011285", "stopType": "NaptanOnstreetBusCoachStopCluster", "stationNaptan": "490G00011285", "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"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490011285E2", "stationAtcoCode": "490G00011285", "lineIdentifier": ["14", "170", "37", "493", "639", "670", "85"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490011285S1", "stationAtcoCode": "490G00011285", "lineIdentifier": ["14", "37"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490011285W", "stationAtcoCode": "490G00011285", "lineIdentifier": ["170", "493", "639", "670", "85"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490011285S", "stationAtcoCode": "490G00011285", "lineIdentifier": ["424"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "bus", "lineIdentifier": ["14", "170", "37", "424", "493", "639", "670", "85"]}], "status": true, "id": "490G00011285", "commonName": "Putney Heath / Green Man", "placeType": "StopPoint", "additionalProperties": [], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490011285E2", "indicator": "Stop L", "stopLetter": "L", "modes": ["bus"], "icsCode": "1011285", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00011285", "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"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490011285E2", "stationAtcoCode": "490G00011285", "lineIdentifier": ["14", "170", "37", "493", "639", "670", "85"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "bus", "lineIdentifier": ["14", "170", "37", "493", "639", "670", "85"]}], "status": true, "id": "490011285E2", "commonName": "Putney Heath / Green Man", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Direction", "key": "CompassPoint", "sourceSystemKey": "Naptan490", "value": "E"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Direction", "key": "Towards", "sourceSystemKey": "CountDown", "value": "Putney Bridge, Southfields Or Wandsworth"}], "children": [], "lat": 51.453513, "lon": -0.221168}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490011285S1", "indicator": "Stop A", "stopLetter": "A", "modes": ["bus"], "icsCode": "1011285", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00011285", "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"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490011285S1", "stationAtcoCode": "490G00011285", "lineIdentifier": ["14", "37"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "bus", "lineIdentifier": ["14", "37"]}], "status": true, "id": "490011285S1", "commonName": "Putney Heath / Green Man", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Direction", "key": "CompassPoint", "sourceSystemKey": "Naptan490", "value": "S"}], "children": [], "lat": 51.453161, "lon": -0.221067}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490011285W", "indicator": "Stop C", "stopLetter": "C", "modes": [], "icsCode": "1011285", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00011285", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490011285W", "commonName": "Putney Heath / Green Man", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 0.0, "lon": 0.0}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490011285S", "indicator": "Stop B", "stopLetter": "B", "modes": [], "icsCode": "1011285", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00011285", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490011285S", "commonName": "Putney Heath / Green Man", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.45291, "lon": -0.2223}], "lat": 51.45291, "lon": -0.2223}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490G00011289", "modes": ["bus"], "icsCode": "1011289", "stopType": "NaptanOnstreetBusCoachStopPair", "stationNaptan": "490G00011289", "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"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490011286L", "stationAtcoCode": "490G00011289", "lineIdentifier": ["14", "39", "424", "430", "74", "85", "93", "n74"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490011286M", "stationAtcoCode": "490G00011289", "lineIdentifier": ["14", "39", "424", "430", "74", "85", "93", "n74"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "bus", "lineIdentifier": ["14", "39", "424", "430", "74", "85", "93", "n74"]}], "status": true, "id": "490G00011289", "commonName": "Putney Exchange", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_302"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_678"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_693"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_694"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_708"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_709"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_743"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5751"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5752"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5032"}], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490011286L", "indicator": "Stop L", "stopLetter": "L", "modes": ["bus"], "icsCode": "1011289", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00011289", "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"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490011286L", "stationAtcoCode": "490G00011289", "lineIdentifier": ["14", "39", "424", "430", "74", "85", "93", "n74"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "bus", "lineIdentifier": ["14", "39", "424", "430", "74", "85", "93", "n74"]}], "status": true, "id": "490011286L", "commonName": "Putney Exchange", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Direction", "key": "CompassPoint", "sourceSystemKey": "Naptan490", "value": "S"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Direction", "key": "Towards", "sourceSystemKey": "CountDown", "value": "Roehampton, Southfields Or Wimbledon"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_302"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_678"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_693"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_694"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_705"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_708"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_709"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_743"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5751"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5752"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5032"}], "children": [], "lat": 51.462716, "lon": -0.216117}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490011286M", "indicator": "Stop M", "stopLetter": "M", "modes": ["bus"], "icsCode": "1011289", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00011289", "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"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490011286M", "stationAtcoCode": "490G00011289", "lineIdentifier": ["14", "39", "424", "430", "74", "85", "93", "n74"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "bus", "lineIdentifier": ["14", "39", "424", "430", "74", "85", "93", "n74"]}], "status": true, "id": "490011286M", "commonName": "Putney Exchange", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Direction", "key": "CompassPoint", "sourceSystemKey": "Naptan490", "value": "N"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Direction", "key": "Towards", "sourceSystemKey": "CountDown", "value": "Fulham"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_302"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_678"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_693"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_694"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_708"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_709"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_743"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5751"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5752"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5032"}], "children": [], "lat": 51.464429, "lon": -0.21523}], "lat": 51.464429, "lon": -0.21523}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490G00011299", "modes": ["bus"], "icsCode": "1011299", "stopType": "NaptanOnstreetBusCoachStopPair", "stationNaptan": "490G00011299", "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"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490011285N", "stationAtcoCode": "490G00011299", "lineIdentifier": ["14", "37", "39", "85", "93"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490011285R", "stationAtcoCode": "490G00011299", "lineIdentifier": ["170", "39", "493", "639", "670", "93"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "bus", "lineIdentifier": ["14", "170", "37", "39", "493", "639", "670", "85", "93"]}], "status": true, "id": "490G00011299", "commonName": "Putney Hill / Green Man", "placeType": "StopPoint", "additionalProperties": [], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490011285N", "indicator": "Stop M", "stopLetter": "M", "modes": ["bus"], "icsCode": "1011299", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00011299", "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"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490011285N", "stationAtcoCode": "490G00011299", "lineIdentifier": ["14", "37", "39", "85", "93"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "bus", "lineIdentifier": ["14", "37", "39", "85", "93"]}], "status": true, "id": "490011285N", "commonName": "Putney Hill / Green Man", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Direction", "key": "CompassPoint", "sourceSystemKey": "Naptan490", "value": "N"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Direction", "key": "Towards", "sourceSystemKey": "CountDown", "value": "Putney Bridge Or Wandsworth"}], "children": [], "lat": 51.454183, "lon": -0.220264}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490011285R", "indicator": "Stop R", "stopLetter": "R", "modes": [], "icsCode": "1011299", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00011299", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490011285R", "commonName": "Putney Hill / Green Man", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 0.0, "lon": 0.0}], "lat": 51.454183, "lon": -0.220264}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490G00011385", "modes": ["bus"], "icsCode": "1011385", "stopType": "NaptanOnstreetBusCoachStopPair", "stationNaptan": "490G00011385", "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"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490011385E", "stationAtcoCode": "490G00011385", "lineIdentifier": ["14", "414", "424"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490011385W", "stationAtcoCode": "490G00011385", "lineIdentifier": ["14", "414", "424"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "bus", "lineIdentifier": ["14", "414", "424"]}], "status": true, "id": "490G00011385", "commonName": "Radipole Road", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_597"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_671"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_727"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_729"}], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490011385E", "indicator": "Stop S", "stopLetter": "S", "modes": ["bus"], "icsCode": "1011385", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00011385", "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"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490011385E", "stationAtcoCode": "490G00011385", "lineIdentifier": ["14", "414", "424"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "bus", "lineIdentifier": ["14", "414", "424"]}], "status": true, "id": "490011385E", "commonName": "Radipole Road", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Direction", "key": "CompassPoint", "sourceSystemKey": "Naptan490", "value": "NE"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Direction", "key": "Towards", "sourceSystemKey": "CountDown", "value": "South Kensington Or Sands End"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_597"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_671"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_727"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_729"}], "children": [], "lat": 51.476371, "lon": -0.204568}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490011385W", "indicator": "->SW", "modes": ["bus"], "icsCode": "1011385", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00011385", "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"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490011385W", "stationAtcoCode": "490G00011385", "lineIdentifier": ["14", "414", "424"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "bus", "lineIdentifier": ["14", "414", "424"]}], "status": true, "id": "490011385W", "commonName": "Radipole Road", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Direction", "key": "CompassPoint", "sourceSystemKey": "Naptan490", "value": "SW"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Direction", "key": "Towards", "sourceSystemKey": "CountDown", "value": "Putney Or Fulham Cross"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_597"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_671"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_727"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_729"}], "children": [], "lat": 51.475852, "lon": -0.205337}], "lat": 51.475852, "lon": -0.205337}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490G00011791", "modes": ["bus"], "icsCode": "1011791", "stopType": "NaptanOnstreetBusCoachStopCluster", "stationNaptan": "490G00011791", "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"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490011791K", "stationAtcoCode": "490G00011791", "lineIdentifier": ["14", "19", "38", "n19", "n38"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "bus", "lineIdentifier": ["14", "19", "38", "n19", "n38"]}], "status": true, "id": "490G00011791", "commonName": "Piccadilly Circus", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_83"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_129"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_160"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_192"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_226"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_228"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_233"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_260"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_318"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_325"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_383"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_386"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5596"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5016"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5510"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5670"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5191"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5468"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5325"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5671"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5809"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5737"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5778"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_4978"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5799"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5594"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5432"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5686"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_4182"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5855"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5090"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5481"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5853"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5779"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5317"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5363"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5017"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5509"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5715"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5854"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5856"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5758"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5572"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5687"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5065"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5800"}], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490011791K", "indicator": "Stop K", "stopLetter": "K", "modes": ["bus"], "icsCode": "1011791", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00011791", "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"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490011791K", "stationAtcoCode": "490G00011791", "lineIdentifier": ["14", "19", "38", "n19", "n38"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "bus", "lineIdentifier": ["14", "19", "38", "n19", "n38"]}], "status": true, "id": "490011791K", "commonName": "Trocadero / Haymarket", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Direction", "key": "CompassPoint", "sourceSystemKey": "Naptan490", "value": "SW"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Direction", "key": "Towards", "sourceSystemKey": "CountDown", "value": "Hyde Park Corner"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_83"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_109"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_129"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_192"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_226"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_228"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_233"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_260"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_318"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_325"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_383"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_386"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5596"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5016"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5510"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5670"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5468"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5364"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5325"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5671"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5809"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5737"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5778"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_4978"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5799"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5875"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5686"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5855"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5090"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5481"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5853"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5779"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5867"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5363"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5017"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5509"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5715"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5854"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5856"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5758"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5572"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5687"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5065"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5800"}], "children": [], "lat": 51.511193, "lon": -0.133391}], "lat": 51.510505, "lon": -0.134212}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490G00011815", "modes": ["bus"], "icsCode": "1011815", "stopType": "NaptanOnstreetBusCoachStopPair", "stationNaptan": "490G00011815", "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"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490011815K", "stationAtcoCode": "490G00011815", "lineIdentifier": ["14"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "bus", "lineIdentifier": ["14"]}], "status": true, "id": "490G00011815", "commonName": "Bedford Place", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_11"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_12"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_15"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_23"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_24"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_57"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_77"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_162"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_287"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_562"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_796"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_4203"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_4878"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5655"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_4616"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5545"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5233"}, {"$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_5701"}], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490011815K", "indicator": "Stop K", "stopLetter": "K", "modes": ["bus"], "icsCode": "1011815", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00011815", "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"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490011815K", "stationAtcoCode": "490G00011815", "lineIdentifier": ["14"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "bus", "lineIdentifier": ["14"]}], "status": true, "id": "490011815K", "commonName": "Bedford Place", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Direction", "key": "CompassPoint", "sourceSystemKey": "Naptan490", "value": "N"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Direction", "key": "Towards", "sourceSystemKey": "CountDown", "value": "Tottenham Court Road"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_11"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_12"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_15"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_23"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_24"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_57"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_77"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_162"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_287"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_562"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_796"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_4203"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_4878"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5655"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_4616"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5545"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5233"}, {"$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_5701"}], "children": [], "lat": 51.520796, "lon": -0.124883}], "lat": 51.520796, "lon": -0.124883}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490G00011816", "modes": ["bus"], "icsCode": "1011816", "stopType": "NaptanOnstreetBusCoachStopPair", "stationNaptan": "490G00011816", "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"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490011816N", "stationAtcoCode": "490G00011816", "lineIdentifier": ["14"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "bus", "lineIdentifier": ["14"]}], "status": true, "id": "490G00011816", "commonName": "Montague Street", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_11"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_12"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_15"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_23"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_24"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_77"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_88"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_162"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_244"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_287"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_358"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_364"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_562"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_796"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5358"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5043"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_4203"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_4878"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5516"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5655"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_4616"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5545"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5233"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5701"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_4139"}], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490011816N", "indicator": "Stop L", "stopLetter": "L", "modes": ["bus"], "icsCode": "1011816", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00011816", "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"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490011816N", "stationAtcoCode": "490G00011816", "lineIdentifier": ["14"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "bus", "lineIdentifier": ["14"]}], "status": true, "id": "490011816N", "commonName": "Montague Street", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Direction", "key": "CompassPoint", "sourceSystemKey": "Naptan490", "value": "N"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Direction", "key": "Towards", "sourceSystemKey": "CountDown", "value": "Russell Square"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_11"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_12"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_15"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_23"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_24"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_77"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_88"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_162"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_244"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_287"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_358"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_364"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_562"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_796"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5358"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5043"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_4203"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_4878"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5516"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5655"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_4616"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5545"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5233"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5701"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_4139"}], "children": [], "lat": 51.520123, "lon": -0.126078}], "lat": 51.520123, "lon": -0.126078}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490G00015421", "modes": ["bus"], "icsCode": "1015421", "stopType": "NaptanOnstreetBusCoachStopPair", "stationNaptan": "490G00015421", "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"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490015421E", "stationAtcoCode": "490G00015421", "lineIdentifier": ["14", "211", "345", "414"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490015421S", "stationAtcoCode": "490G00015421", "lineIdentifier": ["14", "211", "345", "414"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "bus", "lineIdentifier": ["14", "211", "345", "414"]}], "status": true, "id": "490G00015421", "commonName": "Royal Brompton Hosp / Royal Marsden Hosp", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_163"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_172"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_187"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_218"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_356"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_430"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_529"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5322"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5757"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5666"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_4034"}], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490015421E", "indicator": "Stop HM", "stopLetter": "HM", "modes": ["bus"], "icsCode": "1015421", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00015421", "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"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490015421E", "stationAtcoCode": "490G00015421", "lineIdentifier": ["14", "211", "345", "414"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "bus", "lineIdentifier": ["14", "211", "345", "414"]}], "status": true, "id": "490015421E", "commonName": "Royal Brompton Hosp / Royal Marsden Hosp", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Direction", "key": "CompassPoint", "sourceSystemKey": "Naptan490", "value": "E"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Direction", "key": "Towards", "sourceSystemKey": "CountDown", "value": "Hyde Park Corner Or Sloane Square"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_163"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_172"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_187"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_218"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_356"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_430"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_529"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5322"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5757"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5666"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_4034"}], "children": [], "lat": 51.490723, "lon": -0.173725}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490015421S", "indicator": "Stop HP", "stopLetter": "HP", "modes": ["bus"], "icsCode": "1015421", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00015421", "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"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490015421S", "stationAtcoCode": "490G00015421", "lineIdentifier": ["14", "211", "345", "414"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "bus", "lineIdentifier": ["14", "211", "345", "414"]}], "status": true, "id": "490015421S", "commonName": "Royal Brompton Hosp / Royal Marsden Hosp", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Direction", "key": "CompassPoint", "sourceSystemKey": "Naptan490", "value": "S"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Direction", "key": "Towards", "sourceSystemKey": "CountDown", "value": "Battersea Bridge Or Fulham Broadway"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_172"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_187"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_216"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_218"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_356"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_430"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_529"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5666"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_4034"}], "children": [], "lat": 51.490368, "lon": -0.174057}], "lat": 51.490723, "lon": -0.173725}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490G00016425", "modes": ["bus"], "icsCode": "1016425", "stopType": "NaptanOnstreetBusCoachStopPair", "stationNaptan": "490G00016425", "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"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490016425WA", "stationAtcoCode": "490G00016425", "lineIdentifier": ["14", "19", "38", "n19", "n38"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "bus", "lineIdentifier": ["14", "19", "38", "n19", "n38"]}], "status": true, "id": "490G00016425", "commonName": "Gerrard Place / Chinatown", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_83"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_109"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_129"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_192"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_226"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_244"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_260"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_325"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_383"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_386"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5358"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5596"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5016"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5670"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5468"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5364"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5325"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5516"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5671"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5809"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5737"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_4978"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5875"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5686"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5090"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5481"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5853"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5867"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5017"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5854"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5856"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5758"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5572"}], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490016425WA", "indicator": "Stop P", "stopLetter": "P", "modes": ["bus"], "icsCode": "1016425", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00016425", "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"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490016425WA", "stationAtcoCode": "490G00016425", "lineIdentifier": ["14", "19", "38", "n19", "n38"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "bus", "lineIdentifier": ["14", "19", "38", "n19", "n38"]}], "status": true, "id": "490016425WA", "commonName": "Gerrard Place / Chinatown", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Direction", "key": "CompassPoint", "sourceSystemKey": "Naptan490", "value": "NE"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Direction", "key": "Towards", "sourceSystemKey": "CountDown", "value": "Holborn Or Warren Street Station"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_83"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_109"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_129"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_192"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_226"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_244"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_260"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_325"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_383"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_386"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5358"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5596"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5016"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5670"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5468"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5364"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5325"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5516"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5671"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5809"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5737"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_4978"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5875"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5686"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5090"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5481"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5853"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5867"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5017"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5854"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5856"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5758"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5572"}], "children": [], "lat": 51.512683, "lon": -0.13039}], "lat": 51.512683, "lon": -0.13039}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490G00019157", "modes": ["bus"], "icsCode": "1019157", "stopType": "NaptanOnstreetBusCoachStopCluster", "stationNaptan": "490G00019157", "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"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490004695A", "stationAtcoCode": "490G00019157", "lineIdentifier": ["14", "176", "19", "24", "29", "38", "n19", "n20", "n279", "n29", "n38", "n41", "n5"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "bus", "lineIdentifier": ["14", "176", "19", "24", "29", "38", "n19", "n20", "n279", "n29", "n38", "n41", "n5"]}], "status": true, "id": "490G00019157", "commonName": "Denmark Street", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_15"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_88"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_109"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_192"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_244"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_260"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_358"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_383"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_386"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5358"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5043"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5016"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5670"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5468"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5364"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5171"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5516"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5671"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5655"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5580"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5737"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5875"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5090"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5481"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5867"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5017"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5758"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5572"}], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490004695A", "indicator": "Stop A", "stopLetter": "A", "modes": ["bus"], "icsCode": "1019157", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00019157", "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"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490004695A", "stationAtcoCode": "490G00019157", "lineIdentifier": ["14", "176", "19", "24", "29", "38", "n19", "n20", "n279", "n29", "n38", "n41", "n5"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "bus", "lineIdentifier": ["14", "176", "19", "24", "29", "38", "n19", "n20", "n279", "n29", "n38", "n41", "n5"]}], "status": true, "id": "490004695A", "commonName": "Denmark Street", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Direction", "key": "CompassPoint", "sourceSystemKey": "Naptan490", "value": "N"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Direction", "key": "Towards", "sourceSystemKey": "CountDown", "value": "Warren Street Or Holborn"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_15"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_88"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_109"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_192"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_244"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_260"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_358"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_383"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_386"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5358"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5043"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5016"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5670"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5468"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5364"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5171"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5516"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5671"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5655"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5580"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5737"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5875"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5090"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5481"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5867"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5017"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5758"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5572"}], "children": [], "lat": 51.514337, "lon": -0.129803}], "lat": 51.514337, "lon": -0.129803}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490G000536", "modes": ["bus"], "icsCode": "1007281", "stopType": "NaptanOnstreetBusCoachStopCluster", "stationNaptan": "490G000536", "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"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490015157T", "stationAtcoCode": "490G000536", "lineIdentifier": ["14", "22", "265", "378", "39", "424", "430", "74", "85", "93", "n22", "n33", "n72", "n74"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490015157V", "stationAtcoCode": "490G000536", "lineIdentifier": ["14", "22", "220", "378", "424", "430", "74", "n22", "n33", "n72", "n74"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490007281U", "stationAtcoCode": "490G000536", "lineIdentifier": ["220", "270"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "bus", "lineIdentifier": ["14", "22", "220", "265", "270", "378", "39", "424", "430", "74", "85", "93", "n22", "n33", "n72", "n74"]}], "status": true, "id": "490G000536", "commonName": "Putney Bridge Stn / Gonville Street", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_302"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_607"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_617"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_693"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_765"}], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490015157T", "indicator": "Stop FE", "stopLetter": "FE", "modes": ["bus"], "icsCode": "1007281", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G000536", "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": "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": "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"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490015157T", "stationAtcoCode": "490G000536", "lineIdentifier": ["14", "22", "265", "378", "39", "424", "430", "74", "85", "93", "n22", "n33", "n72", "n74"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "bus", "lineIdentifier": ["14", "22", "265", "378", "39", "424", "430", "74", "85", "93", "n22", "n33", "n72", "n74"]}], "status": true, "id": "490015157T", "commonName": "Putney Bridge", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Direction", "key": "CompassPoint", "sourceSystemKey": "Naptan490", "value": "S"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Direction", "key": "Towards", "sourceSystemKey": "CountDown", "value": "Roehampton, Putney Heath Or Barnes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_302"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_607"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_617"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_693"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_765"}], "children": [], "lat": 51.467812, "lon": -0.211786}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490015157V", "indicator": "Stop FH", "stopLetter": "FH", "modes": ["bus"], "icsCode": "1007281", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G000536", "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"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490015157V", "stationAtcoCode": "490G000536", "lineIdentifier": ["14", "22", "220", "378", "424", "430", "74", "n22", "n33", "n72", "n74"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "bus", "lineIdentifier": ["14", "22", "220", "378", "424", "430", "74", "n22", "n33", "n72", "n74"]}], "status": true, "id": "490015157V", "commonName": "Putney Bridge", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Direction", "key": "CompassPoint", "sourceSystemKey": "Naptan490", "value": "N"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Direction", "key": "Towards", "sourceSystemKey": "CountDown", "value": "Chelsea, Fulham Or Hammersmith"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_302"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_607"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_617"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_693"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_765"}], "children": [], "lat": 51.468038, "lon": -0.211835}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490007281U", "indicator": "Stop FD", "stopLetter": "FD", "modes": [], "icsCode": "1007281", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G000536", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490007281U", "commonName": "Putney Bridge Stn / Gonville Street", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 0.0, "lon": 0.0}], "lat": 51.467812, "lon": -0.211786}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490G000575", "modes": ["bus"], "icsCode": "1007853", "stopType": "NaptanOnstreetBusCoachStopCluster", "stationNaptan": "490G000575", "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": "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": "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": "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": "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"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490000130KC", "stationAtcoCode": "490G000575", "lineIdentifier": ["14", "414", "74", "c1", "n74", "n97"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490000130KE", "stationAtcoCode": "490G000575", "lineIdentifier": ["452", "52", "9", "n9"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490008875KH", "stationAtcoCode": "490G000575", "lineIdentifier": ["452", "52", "9", "n9"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "bus", "lineIdentifier": ["14", "414", "452", "52", "74", "9", "c1", "n74", "n9", "n97"]}], "status": true, "id": "490G000575", "commonName": "Knightsbridge Station / Harrods", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_166"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_292"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_303"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_368"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5514"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_4968"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5658"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5318"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5637"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5515"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_4638"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5160"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5410"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_4492"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5152"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5770"}], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000130KC", "indicator": "Stop KC", "stopLetter": "KC", "modes": ["bus"], "icsCode": "1007853", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G000575", "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"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490000130KC", "stationAtcoCode": "490G000575", "lineIdentifier": ["14", "414", "74", "c1", "n74", "n97"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "bus", "lineIdentifier": ["14", "414", "74", "c1", "n74", "n97"]}], "status": true, "id": "490000130KC", "commonName": "Knightsbridge Station / Harrods", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Direction", "key": "CompassPoint", "sourceSystemKey": "Naptan490", "value": "SW"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Direction", "key": "Towards", "sourceSystemKey": "CountDown", "value": "South Kensington"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_143"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_166"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_292"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_303"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_368"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5514"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5479"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_4968"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5658"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5318"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5637"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5515"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5463"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_4638"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5160"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5410"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_4492"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5152"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5770"}], "children": [], "lat": 51.500357, "lon": -0.16239}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000130KE", "indicator": "Stop KE", "stopLetter": "KE", "modes": [], "icsCode": "1007853", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G000575", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000130KE", "commonName": "Knightsbridge Station / Harrods", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 0.0, "lon": 0.0}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490008875KH", "indicator": "Stop KH", "stopLetter": "KH", "modes": [], "icsCode": "1007853", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G000575", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490008875KH", "commonName": "Knightsbridge Station / Harrods", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.501772, "lon": -0.163169}], "lat": 51.501772, "lon": -0.163169}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490G000699", "modes": ["bus"], "icsCode": "1010861", "stopType": "NaptanOnstreetBusCoachStopPair", "stationNaptan": "490G000699", "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"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490010861T", "stationAtcoCode": "490G000699", "lineIdentifier": ["14", "414", "424"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490010861V", "stationAtcoCode": "490G000699", "lineIdentifier": ["14", "414", "424"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "bus", "lineIdentifier": ["14", "414", "424"]}], "status": true, "id": "490G000699", "commonName": "Parsons Green Lane / Fulham Library", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_671"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_691"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_727"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_729"}], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490010861T", "indicator": "Stop T", "stopLetter": "T", "modes": ["bus"], "icsCode": "1010861", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G000699", "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"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490010861T", "stationAtcoCode": "490G000699", "lineIdentifier": ["14", "414", "424"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "bus", "lineIdentifier": ["14", "414", "424"]}], "status": true, "id": "490010861T", "commonName": "Parsons Green Lane / Fulham Library", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Direction", "key": "CompassPoint", "sourceSystemKey": "Naptan490", "value": "NE"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Direction", "key": "Towards", "sourceSystemKey": "CountDown", "value": "Sands End Or South Kensington"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_671"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_691"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_727"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_729"}], "children": [], "lat": 51.477728, "lon": -0.20162}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490010861V", "indicator": "Stop V", "stopLetter": "V", "modes": ["bus"], "icsCode": "1010861", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G000699", "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"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490010861V", "stationAtcoCode": "490G000699", "lineIdentifier": ["14", "414", "424"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "bus", "lineIdentifier": ["14", "414", "424"]}], "status": true, "id": "490010861V", "commonName": "Parsons Green Lane / Fulham Library", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Direction", "key": "CompassPoint", "sourceSystemKey": "Naptan490", "value": "W"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Direction", "key": "Towards", "sourceSystemKey": "CountDown", "value": "Putney Or Fulham Cross"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_596"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_671"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_727"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_729"}], "children": [], "lat": 51.47701, "lon": -0.202268}], "lat": 51.477728, "lon": -0.20162}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490G00084L", "modes": ["bus"], "icsCode": "1000084", "stopType": "NaptanOnstreetBusCoachStopCluster", "stationNaptan": "490G00084L", "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"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490000084L", "stationAtcoCode": "490G00084L", "lineIdentifier": ["14", "211", "414"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490000084M", "stationAtcoCode": "490G00084L", "lineIdentifier": ["14", "211", "414"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "bus", "lineIdentifier": ["14", "211", "414"]}], "status": true, "id": "490G00084L", "commonName": "Fulham Broadway 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": "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": "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": "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": "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": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$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": "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": "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": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_618"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_691"}, {"$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_737"}, {"$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": "490000084L", "indicator": "Stop L", "stopLetter": "L", "modes": ["bus"], "icsCode": "1000084", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00084L", "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"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490000084L", "stationAtcoCode": "490G00084L", "lineIdentifier": ["14", "211", "414"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "bus", "lineIdentifier": ["14", "211", "414"]}], "status": true, "id": "490000084L", "commonName": "Fulham Broadway Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Direction", "key": "CompassPoint", "sourceSystemKey": "Naptan490", "value": "E"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Direction", "key": "Towards", "sourceSystemKey": "CountDown", "value": "Chelsea Or South Kensington"}, {"$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": "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": "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": "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": "Geo", "key": "Zone", "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": "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": "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": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_618"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_691"}, {"$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_737"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_782"}], "children": [], "lat": 51.480289, "lon": -0.194477}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000084M", "indicator": "Stop M", "stopLetter": "M", "modes": ["bus"], "icsCode": "1000084", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00084L", "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"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490000084M", "stationAtcoCode": "490G00084L", "lineIdentifier": ["14", "211", "414"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "bus", "lineIdentifier": ["14", "211", "414"]}], "status": true, "id": "490000084M", "commonName": "Fulham Broadway Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Direction", "key": "CompassPoint", "sourceSystemKey": "Naptan490", "value": "W"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Direction", "key": "Towards", "sourceSystemKey": "CountDown", "value": "Hammersmith Or Putney"}, {"$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": "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": "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": "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": "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": "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": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_618"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_691"}, {"$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_737"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_782"}], "children": [], "lat": 51.480023, "lon": -0.194704}], "lat": 51.480023, "lon": -0.194704}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490G000866", "modes": ["bus"], "icsCode": "1015173", "stopType": "NaptanOnstreetBusCoachStopPair", "stationNaptan": "490G000866", "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"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490015173D", "stationAtcoCode": "490G000866", "lineIdentifier": ["14", "345", "414", "49"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "bus", "lineIdentifier": ["14", "345", "414", "49"]}], "status": true, "id": "490G000866", "commonName": "Sth Kensington Stn / Old Brompton Rd", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_163"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_172"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_187"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_218"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_231"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_356"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_378"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_432"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_482"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_781"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5322"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5319"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5111"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_4645"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5577"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5757"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5805"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5817"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5706"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5666"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5790"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_4034"}], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490015173D", "indicator": "Stop B", "stopLetter": "B", "modes": ["bus"], "icsCode": "1015173", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G000866", "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"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490015173D", "stationAtcoCode": "490G000866", "lineIdentifier": ["14", "345", "414", "49"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "bus", "lineIdentifier": ["14", "345", "414", "49"]}], "status": true, "id": "490015173D", "commonName": "Sth Kensington Stn / Old Brompton Rd", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Direction", "key": "CompassPoint", "sourceSystemKey": "Naptan490", "value": "N"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Direction", "key": "Towards", "sourceSystemKey": "CountDown", "value": "Hyde Park Corner Or Kensington High Street"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_163"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_172"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_187"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_218"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_231"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_356"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_378"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_432"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_482"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_781"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5322"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5319"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5111"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_4645"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5577"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5757"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5805"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5817"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5706"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5666"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5790"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_4034"}], "children": [], "lat": 51.493448, "lon": -0.173746}], "lat": 51.493448, "lon": -0.173746}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490G00093PE", "modes": ["bus"], "icsCode": "1000093", "stopType": "NaptanOnstreetBusCoachStopCluster", "stationNaptan": "490G00093PE", "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"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490000093PB", "stationAtcoCode": "490G00093PE", "lineIdentifier": ["14", "19", "23", "38", "9", "n19", "n38", "n9", "n97"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490000093PE", "stationAtcoCode": "490G00093PE", "lineIdentifier": ["14", "19", "22", "23", "38", "9", "n19", "n22", "n38", "n9", "n97"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490000093PA", "stationAtcoCode": "490G00093PE", "lineIdentifier": ["22", "n22"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "bus", "lineIdentifier": ["14", "19", "22", "23", "38", "9", "n19", "n22", "n38", "n9", "n97"]}], "status": true, "id": "490G00093PE", "commonName": "Green Park 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": "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": "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": "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": "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": "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": "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": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_44"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_49"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_53"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_318"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_380"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_382"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_391"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_528"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_541"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5252"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5683"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5821"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5868"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5191"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_3451"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5014"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5862"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5778"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_4706"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5594"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_4182"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_4623"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5714"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5647"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5811"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5863"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5351"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_4875"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_4150"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5317"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_4863"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5713"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5651"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5363"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5323"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5099"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5715"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_4475"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5267"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5861"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5600"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_4949"}], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000093PB", "indicator": "Stop J", "stopLetter": "J", "modes": ["bus"], "icsCode": "1000093", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00093PE", "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"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490000093PB", "stationAtcoCode": "490G00093PE", "lineIdentifier": ["14", "19", "23", "38", "9", "n19", "n38", "n9", "n97"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "bus", "lineIdentifier": ["14", "19", "23", "38", "9", "n19", "n38", "n9", "n97"]}], "status": true, "id": "490000093PB", "commonName": "Green Park Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Direction", "key": "CompassPoint", "sourceSystemKey": "Naptan490", "value": "E"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Direction", "key": "Towards", "sourceSystemKey": "CountDown", "value": "Trafalgar Square Or Tottenham Court Road"}, {"$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": "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": "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": "Lifts", "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": "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": "Euro Cash Machines", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_44"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_49"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_53"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_318"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_382"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_391"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_528"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_541"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5252"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5510"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5821"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5868"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5191"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_3451"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5014"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5862"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5778"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_4706"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5594"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_4182"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_4623"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5714"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5647"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5811"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5863"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5351"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_4875"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_4150"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5317"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_4863"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5713"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5651"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5363"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5323"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5099"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5715"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_4475"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5267"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5687"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5861"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5600"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5800"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_4949"}], "children": [], "lat": 51.507013, "lon": -0.142554}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000093PE", "indicator": "Stop H", "stopLetter": "H", "modes": ["bus"], "icsCode": "1000093", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00093PE", "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"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490000093PE", "stationAtcoCode": "490G00093PE", "lineIdentifier": ["14", "19", "22", "23", "38", "9", "n19", "n22", "n38", "n9", "n97"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "bus", "lineIdentifier": ["14", "19", "22", "23", "38", "9", "n19", "n22", "n38", "n9", "n97"]}], "status": true, "id": "490000093PE", "commonName": "Green Park Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Direction", "key": "CompassPoint", "sourceSystemKey": "Naptan490", "value": "SW"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Direction", "key": "Towards", "sourceSystemKey": "CountDown", "value": "Marble Arch, Knightsbridge Or Victoria"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.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": "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": "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": "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": "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": "Help Points", "sourceSystemKey": "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": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_44"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_49"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_53"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_318"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_382"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_391"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_528"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_541"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5252"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5821"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5868"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5191"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_3451"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5014"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5862"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_4706"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5594"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_4182"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_4623"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5714"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5647"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5811"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5863"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5351"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_4875"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_4150"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5317"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_4863"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5713"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5651"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5363"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5323"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5099"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5715"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_4475"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5267"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5861"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5600"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5800"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_4949"}], "children": [], "lat": 51.506676, "lon": -0.142841}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000093PA", "indicator": "Stop R", "stopLetter": "R", "modes": [], "icsCode": "1000093", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00093PE", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000093PA", "commonName": "Green Park Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.507339, "lon": -0.143809}], "lat": 51.507339, "lon": -0.143809}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490G00119A", "modes": ["bus"], "icsCode": "1000119", "stopType": "NaptanOnstreetBusCoachStopCluster", "stationNaptan": "490G00119A", "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": "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": "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": "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": "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": "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": "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"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490000119P", "stationAtcoCode": "490G00119A", "lineIdentifier": ["137", "19", "22", "n137", "n19", "n22"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490000119N", "stationAtcoCode": "490G00119A", "lineIdentifier": ["14", "414", "74", "n74", "n97"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490000119M", "stationAtcoCode": "490G00119A", "lineIdentifier": ["52", "9", "n9"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "bus", "lineIdentifier": ["137", "14", "19", "22", "414", "52", "74", "9", "n137", "n19", "n22", "n74", "n9", "n97"]}], "status": true, "id": "490G00119A", "commonName": "Hyde Park Corner", "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": "Photo 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": "Facility", "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": "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": "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": "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": "Ticket Halls", "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": "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": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_166"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_181"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_191"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_207"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_213"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_222"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_303"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_368"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_733"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5664"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_4762"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_4852"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5864"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_4457"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_4968"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5373"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5000"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_4706"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5969"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5968"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5637"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5463"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_3738"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_4638"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_4761"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_4492"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5966"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_4412"}], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000119N", "indicator": "Stop N", "stopLetter": "N", "modes": ["bus"], "icsCode": "1000119", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00119A", "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": "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"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490000119N", "stationAtcoCode": "490G00119A", "lineIdentifier": ["14", "414", "74", "n74", "n97"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "bus", "lineIdentifier": ["14", "414", "74", "n74", "n97"]}], "status": true, "id": "490000119N", "commonName": "Hyde Park Corner Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Direction", "key": "CompassPoint", "sourceSystemKey": "Naptan490", "value": "W"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Direction", "key": "Towards", "sourceSystemKey": "CountDown", "value": "South Kensington"}, {"$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": "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": "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": "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": "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": "Escalators", "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": "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": "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": "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": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_166"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_181"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_191"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_207"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_213"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_222"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_303"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_368"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_733"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5664"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_4762"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_4852"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5864"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_4457"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_4968"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5373"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5000"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_4706"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5969"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5968"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5637"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5463"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_3738"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_4638"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_4761"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_4492"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5966"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_4412"}], "children": [], "lat": 51.502707, "lon": -0.153449}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000119P", "indicator": "Stop P", "stopLetter": "P", "modes": [], "icsCode": "1000119", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00119A", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000119P", "commonName": "Hyde Park Corner Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 0.0, "lon": 0.0}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000119M", "indicator": "Stop M", "stopLetter": "M", "modes": [], "icsCode": "1000119", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00119A", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000119M", "commonName": "Hyde Park Corner Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 0.0, "lon": 0.0}], "lat": 51.502707, "lon": -0.153449}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490G00119S", "modes": ["bus"], "icsCode": "1000119", "stopType": "NaptanOnstreetBusCoachStopCluster", "stationNaptan": "490G00119S", "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": "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": "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": "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"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490000119T", "stationAtcoCode": "490G00119S", "lineIdentifier": ["14", "9", "n9", "n97"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490000119W", "stationAtcoCode": "490G00119S", "lineIdentifier": ["414", "74", "n74"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490000119S", "stationAtcoCode": "490G00119S", "lineIdentifier": ["52"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "bus", "lineIdentifier": ["14", "414", "52", "74", "9", "n74", "n9", "n97"]}], "status": true, "id": "490G00119S", "commonName": "Hyde Park Corner", "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": "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": "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": "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": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$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": "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": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_166"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_181"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_191"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_207"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_213"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_222"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_303"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_368"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_380"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_733"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5664"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_4762"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_4852"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5864"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_4457"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_4968"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5373"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5000"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_4706"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5969"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5968"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5637"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_3738"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_4638"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_4761"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_4492"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5966"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_4412"}], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000119T", "indicator": "Stop T", "stopLetter": "T", "modes": ["bus"], "icsCode": "1000119", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00119S", "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"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490000119T", "stationAtcoCode": "490G00119S", "lineIdentifier": ["14", "9", "n9", "n97"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "bus", "lineIdentifier": ["14", "9", "n9", "n97"]}], "status": true, "id": "490000119T", "commonName": "Hyde Park Corner Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Direction", "key": "CompassPoint", "sourceSystemKey": "Naptan490", "value": "E"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Direction", "key": "Towards", "sourceSystemKey": "CountDown", "value": "Oxford Circus Or Piccadilly Circus"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.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": "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": "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": "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": "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": "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": "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": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_166"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_181"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_191"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_207"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_213"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_222"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_303"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_380"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_733"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5664"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_4762"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_4852"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5864"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_4457"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_4968"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5373"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5000"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_4706"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5969"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5968"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5637"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_3738"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_4638"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_4761"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5966"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_4412"}], "children": [], "lat": 51.503023, "lon": -0.153508}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000119W", "indicator": "Stop W", "stopLetter": "W", "modes": [], "icsCode": "1000119", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00119S", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000119W", "commonName": "Hyde Park Corner Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 0.0, "lon": 0.0}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000119S", "indicator": "Stop S", "stopLetter": "S", "modes": [], "icsCode": "1000119", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00119S", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000119S", "commonName": "Hyde Park Corner Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.502966, "lon": -0.153914}], "lat": 51.502966, "lon": -0.153914}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490G00130KD", "modes": ["bus"], "icsCode": "1000130", "stopType": "NaptanOnstreetBusCoachStopCluster", "stationNaptan": "490G00130KD", "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"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490000130KD", "stationAtcoCode": "490G00130KD", "lineIdentifier": ["14", "414", "74", "c1", "n74", "n97"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "bus", "lineIdentifier": ["14", "414", "74", "c1", "n74", "n97"]}], "status": true, "id": "490G00130KD", "commonName": "Knightsbridge 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": "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": "Help Points", "sourceSystemKey": "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": "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": "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": "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": "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": "Toilets", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_143"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_166"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_292"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_303"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_368"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5514"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5479"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_4968"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5658"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5318"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5637"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5515"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5463"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_4638"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5160"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5410"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_4492"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5152"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5770"}], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000130KD", "indicator": "Stop KD", "stopLetter": "KD", "modes": ["bus"], "icsCode": "1000130", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00130KD", "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"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490000130KD", "stationAtcoCode": "490G00130KD", "lineIdentifier": ["14", "414", "74", "c1", "n74", "n97"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "bus", "lineIdentifier": ["14", "414", "74", "c1", "n74", "n97"]}], "status": true, "id": "490000130KD", "commonName": "Knightsbridge Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Direction", "key": "CompassPoint", "sourceSystemKey": "Naptan490", "value": "N"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Direction", "key": "Towards", "sourceSystemKey": "CountDown", "value": "Hyde Park Corner Or Sloane Square"}, {"$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": "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": "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": "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": "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": "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": "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": "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": "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": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_143"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_166"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_292"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_303"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_368"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5514"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5479"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_4968"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5658"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5318"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5637"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5515"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5463"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_4638"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5160"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5410"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_4492"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5152"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5770"}], "children": [], "lat": 51.500733, "lon": -0.162332}], "lat": 51.500733, "lon": -0.162332}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490G00179B", "modes": ["bus"], "icsCode": "1000179", "stopType": "NaptanOnstreetBusCoachStopCluster", "stationNaptan": "490G00179B", "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"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490000179B", "stationAtcoCode": "490G00179B", "lineIdentifier": ["14", "19", "23", "38", "9", "n19", "n38", "n9", "n97"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490000179S", "stationAtcoCode": "490G00179B", "lineIdentifier": ["14", "19", "23", "38", "9", "n19", "n38", "n9", "n97"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "bus", "lineIdentifier": ["14", "19", "23", "38", "9", "n19", "n38", "n9", "n97"]}], "status": true, "id": "490G00179B", "commonName": "Piccadilly Circus", "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": "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": "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": "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": "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": "Waiting Room", "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": "Help Points", "sourceSystemKey": "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": "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": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_83"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_129"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_160"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_192"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_226"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_228"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_233"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_260"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_318"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_325"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_391"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5252"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5596"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5016"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5510"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5670"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5191"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5468"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5325"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5671"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5014"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5809"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5778"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_4978"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5799"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5594"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5432"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5686"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_4182"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5855"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_4623"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5714"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5811"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5863"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5853"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_4150"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5779"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5317"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5713"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5363"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5099"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5017"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5509"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5715"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5854"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5856"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5267"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5572"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5687"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5065"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5861"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5800"}], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000179B", "indicator": "Stop B", "stopLetter": "B", "modes": ["bus"], "icsCode": "1000179", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00179B", "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"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490000179B", "stationAtcoCode": "490G00179B", "lineIdentifier": ["14", "19", "23", "38", "9", "n19", "n38", "n9", "n97"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "bus", "lineIdentifier": ["14", "19", "23", "38", "9", "n19", "n38", "n9", "n97"]}], "status": true, "id": "490000179B", "commonName": "Piccadilly Circus", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Direction", "key": "CompassPoint", "sourceSystemKey": "Naptan490", "value": "E"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Direction", "key": "Towards", "sourceSystemKey": "CountDown", "value": "Trafalgar Square Or Tottenham Court Road"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.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": "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": "Payphones", "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": "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": "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": "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": "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": "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": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_83"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_129"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_160"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_192"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_226"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_228"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_233"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_260"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_318"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_325"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_391"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5252"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5596"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5016"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5510"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5670"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5191"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5468"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5325"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5671"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5014"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5809"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5778"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_4978"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5799"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5594"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5432"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5686"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_4182"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5855"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_4623"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5714"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5811"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5863"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5853"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_4150"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5779"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5317"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5713"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5363"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5099"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5017"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5509"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5715"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5854"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5856"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5267"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5572"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5687"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5065"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5861"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5800"}], "children": [], "lat": 51.509305, "lon": -0.136235}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000179S", "indicator": "Stop S", "stopLetter": "S", "modes": ["bus"], "icsCode": "1000179", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00179B", "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"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490000179S", "stationAtcoCode": "490G00179B", "lineIdentifier": ["14", "19", "23", "38", "9", "n19", "n38", "n9", "n97"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "bus", "lineIdentifier": ["14", "19", "23", "38", "9", "n19", "n38", "n9", "n97"]}], "status": true, "id": "490000179S", "commonName": "Piccadilly Circus", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Direction", "key": "CompassPoint", "sourceSystemKey": "Naptan490", "value": "W"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Direction", "key": "Towards", "sourceSystemKey": "CountDown", "value": "Marble Arch, Knightsbridge Or Victoria"}, {"$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": "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": "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": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$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"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.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": "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": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_83"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_129"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_160"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_192"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_226"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_228"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_233"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_318"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_325"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_391"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5252"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5596"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5016"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5510"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5670"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5191"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5325"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5671"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5014"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5809"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5778"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_4978"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5799"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5594"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5432"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5686"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_4182"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5855"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_4623"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5714"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5811"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5863"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5853"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_4150"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5779"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5317"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5713"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5363"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5099"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5017"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5509"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5715"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5854"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5856"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5267"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5572"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5687"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5065"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5861"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5800"}], "children": [], "lat": 51.509153, "lon": -0.13627}], "lat": 51.509305, "lon": -0.136235}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490G00200H", "modes": ["bus"], "icsCode": "1000200", "stopType": "NaptanOnstreetBusCoachStopCluster", "stationNaptan": "490G00200H", "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": "sl6", "name": "SL6", "uri": "/Line/sl6", "type": "Line", "crowding": {"$type": "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": "490000200H", "stationAtcoCode": "490G00200H", "lineIdentifier": ["1", "68", "91", "n91"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490000200J", "stationAtcoCode": "490G00200H", "lineIdentifier": ["1", "68", "91", "n91"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490000200E", "stationAtcoCode": "490G00200H", "lineIdentifier": ["14", "sl6"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490000200D", "stationAtcoCode": "490G00200H", "lineIdentifier": ["sl6"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "bus", "lineIdentifier": ["1", "14", "68", "91", "n91", "sl6"]}], "status": true, "id": "490G00200H", "commonName": "Russell Square", "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": "Toilets", "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": "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": "Russell Square Station,London Underground Ltd.,Bernard St,London,WC1N 1LJ"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.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": "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": "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_11"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_12"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_15"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_23"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_24"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_57"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_77"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_162"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_287"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_364"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_562"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_796"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_4203"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_4878"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5655"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_4616"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5545"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5233"}, {"$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_5701"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_4139"}], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000200E", "indicator": "Stop E", "stopLetter": "E", "modes": ["bus"], "icsCode": "1000200", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00200H", "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"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490000200E", "stationAtcoCode": "490G00200H", "lineIdentifier": ["14", "sl6"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "bus", "lineIdentifier": ["14", "sl6"]}], "status": true, "id": "490000200E", "commonName": ".Russell Square", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Direction", "key": "CompassPoint", "sourceSystemKey": "Naptan490", "value": "NE"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Direction", "key": "Towards", "sourceSystemKey": "CountDown", "value": "Piccadilly Circus Or Waterloo"}, {"$type": "Tfl.Api.Presentation.Entities.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": "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": "Russell Square Station,London Underground Ltd.,Bernard St,London,WC1N 1LJ"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "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": "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": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$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": "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": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_11"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_12"}, {"$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_24"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_57"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_77"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_287"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_364"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_796"}, {"$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_4203"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_4878"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_4616"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5545"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5233"}, {"$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_5701"}], "children": [], "lat": 51.522334, "lon": -0.127126}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000200H", "indicator": "Stop H", "stopLetter": "H", "modes": [], "icsCode": "1000200", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00200H", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000200H", "commonName": "Russell Square Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 0.0, "lon": 0.0}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000200J", "indicator": "Stop J", "stopLetter": "J", "modes": [], "icsCode": "1000200", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00200H", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000200J", "commonName": "Russell Square", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 0.0, "lon": 0.0}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000200D", "indicator": "Stop D", "stopLetter": "D", "modes": [], "icsCode": "1000200", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00200H", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000200D", "commonName": "Russell Square", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.520861, "lon": -0.125529}], "lat": 51.520861, "lon": -0.125529}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490G00212G", "modes": ["bus"], "icsCode": "1000212", "stopType": "NaptanOnstreetBusCoachStopCluster", "stationNaptan": "490G00212G", "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": "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"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490000212E", "stationAtcoCode": "490G00212G", "lineIdentifier": ["14", "360", "414", "430", "74", "c1", "n74", "n97"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490000212S1", "stationAtcoCode": "490G00212G", "lineIdentifier": ["14", "360", "414"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490000212E1", "stationAtcoCode": "490G00212G", "lineIdentifier": ["345", "49"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490000212S", "stationAtcoCode": "490G00212G", "lineIdentifier": ["430", "70", "74", "c1", "n74", "n97"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "bus", "lineIdentifier": ["14", "345", "360", "414", "430", "49", "70", "74", "c1", "n74", "n97"]}], "status": true, "id": "490G00212G", "commonName": "South Kensington 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": "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": "Gates", "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": "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": "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": "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": "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": "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": "BikePoints_172"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_187"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_231"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_356"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_378"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_405"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_432"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_482"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_781"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5319"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5111"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_4645"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5577"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5757"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5805"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5817"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5666"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5790"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_4034"}], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000212E", "indicator": "Stop E", "stopLetter": "E", "modes": ["bus"], "icsCode": "1000212", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00212G", "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"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490000212E", "stationAtcoCode": "490G00212G", "lineIdentifier": ["14", "360", "414", "430", "74", "c1", "n74", "n97"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "bus", "lineIdentifier": ["14", "360", "414", "430", "74", "c1", "n74", "n97"]}], "status": true, "id": "490000212E", "commonName": "South Kensington Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Direction", "key": "CompassPoint", "sourceSystemKey": "Naptan490", "value": "N"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Direction", "key": "Towards", "sourceSystemKey": "CountDown", "value": "Knightsbridge Or Royal Albert Hall"}, {"$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": "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": "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": "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": "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": "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": "BikePoints_172"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_187"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_231"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_356"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_378"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_432"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_482"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_781"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5322"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5319"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5111"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_4645"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5577"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5757"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5805"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5817"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5706"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5666"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5790"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_4034"}], "children": [], "lat": 51.494463, "lon": -0.174815}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000212S1", "indicator": "Stop T", "stopLetter": "T", "modes": ["bus"], "icsCode": "1000212", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00212G", "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"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490000212S1", "stationAtcoCode": "490G00212G", "lineIdentifier": ["14", "360", "414"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "bus", "lineIdentifier": ["14", "360", "414"]}], "status": true, "id": "490000212S1", "commonName": "South Kensington Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Direction", "key": "CompassPoint", "sourceSystemKey": "Naptan490", "value": "S"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Direction", "key": "Towards", "sourceSystemKey": "CountDown", "value": "Fulham Or Sloane Square"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.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": "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": "South Kensington Station,London Underground Ltd.,Pelham St,London,SW7 2NB"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, 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": "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": "Cash Machines", "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": "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": "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": "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": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_150"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_163"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_172"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_187"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_231"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_356"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_378"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_432"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_482"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_781"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5322"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5319"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5111"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_4645"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5577"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5757"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5805"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5817"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5706"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5666"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5790"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_4034"}], "children": [], "lat": 51.494423, "lon": -0.174586}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000212E1", "indicator": "Stop D", "stopLetter": "D", "modes": [], "icsCode": "1000212", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00212G", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000212E1", "commonName": "South Kensington Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.494167, "lon": -0.175461}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000212S", "indicator": "Stop S", "stopLetter": "S", "modes": [], "icsCode": "1000212", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00212G", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000212S", "commonName": "South Kensington Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 0.0, "lon": 0.0}], "lat": 51.494167, "lon": -0.175461}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490G00235E", "modes": ["bus"], "icsCode": "1000235", "stopType": "NaptanOnstreetBusCoachStopCluster", "stationNaptan": "490G00235E", "hubNaptanCode": "HUBTCR", "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"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490000235W1", "stationAtcoCode": "490G00235E", "lineIdentifier": ["14", "176"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "bus", "lineIdentifier": ["14", "176"]}], "status": true, "id": "490G00235E", "commonName": "Tottenham Court Road 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": "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"}, {"$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": "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": "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": "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": "Car park", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_15"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_18"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_24"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_88"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_109"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_192"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_244"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_358"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_383"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_386"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_562"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5358"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5043"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5468"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5171"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5516"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5655"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5737"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5875"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5090"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5481"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5233"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_4139"}], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000235W1", "indicator": "Stop S", "stopLetter": "S", "modes": ["bus"], "icsCode": "1000235", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00235E", "hubNaptanCode": "HUBTCR", "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"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490000235W1", "stationAtcoCode": "490G00235E", "lineIdentifier": ["14", "176"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "bus", "lineIdentifier": ["14", "176"]}], "status": true, "id": "490000235W1", "commonName": "Tottenham Court Road Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Direction", "key": "CompassPoint", "sourceSystemKey": "Naptan490", "value": "W"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Direction", "key": "Towards", "sourceSystemKey": "CountDown", "value": "Piccadilly Circus Or Trafalgar Square"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.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": "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": "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."}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Photo 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": "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": "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": "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": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_15"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_18"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_24"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_88"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_109"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_192"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_244"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_358"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_383"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_386"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_562"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5358"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5043"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5468"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5171"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5516"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5655"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5737"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5875"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5090"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5481"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5233"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_4139"}], "children": [], "lat": 51.515556, "lon": -0.128428}], "lat": 51.515556, "lon": -0.128428}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490G01231E1", "modes": ["bus"], "icsCode": "1001231", "stopType": "NaptanOnstreetBusCoachStopCluster", "stationNaptan": "490G01231E1", "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"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490001231B", "stationAtcoCode": "490G01231E1", "lineIdentifier": ["14", "39", "424", "430", "85", "93", "n74"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490001231E", "stationAtcoCode": "490G01231E1", "lineIdentifier": ["14", "85", "93"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490001231D", "stationAtcoCode": "490G01231E1", "lineIdentifier": ["430", "n74"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "bus", "lineIdentifier": ["14", "39", "424", "430", "85", "93", "n74"]}], "status": true, "id": "490G01231E1", "commonName": "Putney Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_678"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_693"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_694"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_705"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_708"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_709"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_743"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5751"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5752"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5032"}], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490001231B", "indicator": "Stop B", "stopLetter": "B", "modes": ["bus"], "icsCode": "1001231", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G01231E1", "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"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490001231B", "stationAtcoCode": "490G01231E1", "lineIdentifier": ["14", "39", "424", "430", "85", "93", "n74"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "bus", "lineIdentifier": ["14", "39", "424", "430", "85", "93", "n74"]}], "status": true, "id": "490001231B", "commonName": "Putney Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Direction", "key": "CompassPoint", "sourceSystemKey": "Naptan490", "value": "N"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Direction", "key": "Towards", "sourceSystemKey": "CountDown", "value": "Fulham"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_678"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_693"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_694"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_705"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_708"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_709"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_743"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5751"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5752"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5032"}], "children": [], "lat": 51.461473, "lon": -0.217144}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490001231E", "indicator": "Stop E", "stopLetter": "E", "modes": ["bus"], "icsCode": "1001231", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G01231E1", "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": "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"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490001231E", "stationAtcoCode": "490G01231E1", "lineIdentifier": ["14", "85", "93"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "bus", "lineIdentifier": ["14", "85", "93"]}], "status": true, "id": "490001231E", "commonName": "Putney Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Direction", "key": "CompassPoint", "sourceSystemKey": "Naptan490", "value": "S"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Direction", "key": "Towards", "sourceSystemKey": "CountDown", "value": "Roehampton Or Wimbledon"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_678"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_693"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_694"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_705"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_708"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_709"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_743"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5751"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5752"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5032"}], "children": [], "lat": 51.461146, "lon": -0.216912}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490001231D", "indicator": "Stop D", "stopLetter": "D", "modes": [], "icsCode": "1001231", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G01231E1", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490001231D", "commonName": "Putney Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 0.0, "lon": 0.0}], "lat": 51.461473, "lon": -0.217144}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "910GPUTNEY", "modes": ["national-rail", "bus"], "icsCode": "1001231", "stopType": "NaptanRailStation", "stationNaptan": "910GPUTNEY", "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"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490001231B", "stationAtcoCode": "490G01231E1", "lineIdentifier": ["14", "39", "424", "430", "85", "93", "n74"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490001231E", "stationAtcoCode": "490G01231E1", "lineIdentifier": ["14", "85", "93"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490001231F", "stationAtcoCode": "490G01231F", "lineIdentifier": ["337", "37"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490001231G", "stationAtcoCode": "490G01231F", "lineIdentifier": ["337", "37"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490001231H", "stationAtcoCode": "490G01231F", "lineIdentifier": ["39", "424"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490001231D", "stationAtcoCode": "490G01231E1", "lineIdentifier": ["430", "n74"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "910GPUTNEY", "lineIdentifier": ["south-western-railway"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "bus", "lineIdentifier": ["14", "337", "37", "39", "424", "430", "85", "93", "n74"]}, {"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "national-rail", "lineIdentifier": ["south-western-railway"]}], "status": true, "id": "910GPUTNEY", "commonName": "Putney Rail Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Geo", "key": "Zone", "sourceSystemKey": "SingleFareFinder", "value": "2+3"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_678"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_693"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_694"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_705"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_708"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_709"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_743"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5751"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5752"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5032"}], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490G01231E1", "modes": ["bus"], "icsCode": "1001231", "stopType": "NaptanOnstreetBusCoachStopCluster", "stationNaptan": "490G01231E1", "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"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490001231B", "stationAtcoCode": "490G01231E1", "lineIdentifier": ["14", "39", "424", "430", "85", "93", "n74"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490001231E", "stationAtcoCode": "490G01231E1", "lineIdentifier": ["14", "85", "93"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490001231D", "stationAtcoCode": "490G01231E1", "lineIdentifier": ["430", "n74"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "bus", "lineIdentifier": ["14", "39", "424", "430", "85", "93", "n74"]}], "status": true, "id": "490G01231E1", "commonName": "Putney Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_678"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_693"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_694"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_705"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_708"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_709"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_743"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5751"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5752"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5032"}], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490001231B", "indicator": "Stop B", "stopLetter": "B", "modes": ["bus"], "icsCode": "1001231", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G01231E1", "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"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490001231B", "stationAtcoCode": "490G01231E1", "lineIdentifier": ["14", "39", "424", "430", "85", "93", "n74"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "bus", "lineIdentifier": ["14", "39", "424", "430", "85", "93", "n74"]}], "status": true, "id": "490001231B", "commonName": "Putney Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Direction", "key": "CompassPoint", "sourceSystemKey": "Naptan490", "value": "N"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Direction", "key": "Towards", "sourceSystemKey": "CountDown", "value": "Fulham"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_678"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_693"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_694"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_705"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_708"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_709"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_743"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5751"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5752"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5032"}], "children": [], "lat": 51.461473, "lon": -0.217144}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490001231E", "indicator": "Stop E", "stopLetter": "E", "modes": ["bus"], "icsCode": "1001231", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G01231E1", "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": "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"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490001231E", "stationAtcoCode": "490G01231E1", "lineIdentifier": ["14", "85", "93"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "bus", "lineIdentifier": ["14", "85", "93"]}], "status": true, "id": "490001231E", "commonName": "Putney Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Direction", "key": "CompassPoint", "sourceSystemKey": "Naptan490", "value": "S"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Direction", "key": "Towards", "sourceSystemKey": "CountDown", "value": "Roehampton Or Wimbledon"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_678"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_693"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_694"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_705"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_708"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_709"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_743"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5751"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5752"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5032"}], "children": [], "lat": 51.461146, "lon": -0.216912}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490001231D", "indicator": "Stop D", "stopLetter": "D", "modes": [], "icsCode": "1001231", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G01231E1", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490001231D", "commonName": "Putney Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 0.0, "lon": 0.0}], "lat": 51.461473, "lon": -0.217144}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9100PUTNEY0", "modes": [], "icsCode": "1001231", "stationNaptan": "910GPUTNEY", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "9100PUTNEY0", "commonName": "Putney", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 0.0, "lon": 0.0}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9100PUTNEY1", "modes": [], "icsCode": "1001231", "stationNaptan": "910GPUTNEY", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "9100PUTNEY1", "commonName": "Putney", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 0.0, "lon": 0.0}], "lat": 51.461303, "lon": -0.216475}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "940GZZLUFBY", "modes": ["bus", "tube"], "icsCode": "1000084", "stopType": "NaptanMetroStation", "stationNaptan": "940GZZLUFBY", "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"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490000084L", "stationAtcoCode": "490G00084L", "lineIdentifier": ["14", "211", "414"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490000084M", "stationAtcoCode": "490G00084L", "lineIdentifier": ["14", "211", "414"]}, {"$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": "bus", "lineIdentifier": ["14", "211", "414"]}, {"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["district"]}], "status": true, "id": "940GZZLUFBY", "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": "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": "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": "Fulham Broadway Station,London Underground Ltd.,Fulham Broadway,London,SW6 1BY"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.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": "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": "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": "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": "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": "7"}, {"$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": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_618"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_691"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_737"}, {"$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": "490G00084L", "modes": ["bus"], "icsCode": "1000084", "stopType": "NaptanOnstreetBusCoachStopCluster", "stationNaptan": "490G00084L", "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"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490000084L", "stationAtcoCode": "490G00084L", "lineIdentifier": ["14", "211", "414"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490000084M", "stationAtcoCode": "490G00084L", "lineIdentifier": ["14", "211", "414"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "bus", "lineIdentifier": ["14", "211", "414"]}], "status": true, "id": "490G00084L", "commonName": "Fulham Broadway 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": "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": "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": "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": "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": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$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": "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": "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": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_618"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_691"}, {"$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_737"}, {"$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": "490000084L", "indicator": "Stop L", "stopLetter": "L", "modes": ["bus"], "icsCode": "1000084", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00084L", "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"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490000084L", "stationAtcoCode": "490G00084L", "lineIdentifier": ["14", "211", "414"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "bus", "lineIdentifier": ["14", "211", "414"]}], "status": true, "id": "490000084L", "commonName": "Fulham Broadway Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Direction", "key": "CompassPoint", "sourceSystemKey": "Naptan490", "value": "E"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Direction", "key": "Towards", "sourceSystemKey": "CountDown", "value": "Chelsea Or South Kensington"}, {"$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": "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": "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": "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": "Geo", "key": "Zone", "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": "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": "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": "WiFi", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_618"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_691"}, {"$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_737"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_782"}], "children": [], "lat": 51.480289, "lon": -0.194477}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000084M", "indicator": "Stop M", "stopLetter": "M", "modes": ["bus"], "icsCode": "1000084", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00084L", "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"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490000084M", "stationAtcoCode": "490G00084L", "lineIdentifier": ["14", "211", "414"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "bus", "lineIdentifier": ["14", "211", "414"]}], "status": true, "id": "490000084M", "commonName": "Fulham Broadway Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Direction", "key": "CompassPoint", "sourceSystemKey": "Naptan490", "value": "W"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Direction", "key": "Towards", "sourceSystemKey": "CountDown", "value": "Hammersmith Or Putney"}, {"$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": "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": "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": "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": "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": "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": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_618"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_691"}, {"$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_737"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_782"}], "children": [], "lat": 51.480023, "lon": -0.194704}], "lat": 51.480023, "lon": -0.194704}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUFBY1", "modes": [], "icsCode": "1000084", "stationNaptan": "940GZZLUFBY", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "9400ZZLUFBY1", "commonName": "Fulham Broadway Underground Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 0.0, "lon": 0.0}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUFBY2", "modes": [], "icsCode": "1000084", "stationNaptan": "940GZZLUFBY", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "9400ZZLUFBY2", "commonName": "Fulham Broadway Underground Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 0.0, "lon": 0.0}], "lat": 51.480081, "lon": -0.195422}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "940GZZLUGPK", "modes": ["tube", "bus"], "icsCode": "1000093", "stopType": "NaptanMetroStation", "stationNaptan": "940GZZLUGPK", "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"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490000093PB", "stationAtcoCode": "490G00093PE", "lineIdentifier": ["14", "19", "23", "38", "9", "n19", "n38", "n9", "n97"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490000093PE", "stationAtcoCode": "490G00093PE", "lineIdentifier": ["14", "19", "22", "23", "38", "9", "n19", "n22", "n38", "n9", "n97"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490000093PA", "stationAtcoCode": "490G00093PE", "lineIdentifier": ["22", "n22"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "940GZZLUGPK", "lineIdentifier": ["jubilee"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "940GZZLUGPK", "lineIdentifier": ["piccadilly"]}, {"$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": "bus", "lineIdentifier": ["14", "19", "22", "23", "38", "9", "n19", "n22", "n38", "n9", "n97"]}, {"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["jubilee", "piccadilly", "victoria"]}], "status": true, "id": "940GZZLUGPK", "commonName": "Green Park 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": "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"}, {"$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": "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": "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": "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"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_44"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_49"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_53"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_318"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_382"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_391"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_528"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_541"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5252"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5510"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5821"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5868"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5191"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_3451"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5014"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5862"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5778"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_4706"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5594"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_4182"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_4623"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5714"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5647"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5811"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5863"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5351"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_4875"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_4150"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5317"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_4863"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5713"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5651"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5363"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5323"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5099"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5715"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_4475"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5267"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5687"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5861"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5600"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5800"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_4949"}], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490G00093PE", "modes": ["bus"], "icsCode": "1000093", "stopType": "NaptanOnstreetBusCoachStopCluster", "stationNaptan": "490G00093PE", "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"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490000093PB", "stationAtcoCode": "490G00093PE", "lineIdentifier": ["14", "19", "23", "38", "9", "n19", "n38", "n9", "n97"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490000093PE", "stationAtcoCode": "490G00093PE", "lineIdentifier": ["14", "19", "22", "23", "38", "9", "n19", "n22", "n38", "n9", "n97"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490000093PA", "stationAtcoCode": "490G00093PE", "lineIdentifier": ["22", "n22"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "bus", "lineIdentifier": ["14", "19", "22", "23", "38", "9", "n19", "n22", "n38", "n9", "n97"]}], "status": true, "id": "490G00093PE", "commonName": "Green Park 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": "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": "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": "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": "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": "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": "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": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_44"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_49"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_53"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_318"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_380"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_382"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_391"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_528"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_541"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5252"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5683"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5821"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5868"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5191"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_3451"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5014"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5862"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5778"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_4706"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5594"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_4182"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_4623"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5714"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5647"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5811"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5863"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5351"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_4875"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_4150"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5317"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_4863"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5713"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5651"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5363"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5323"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5099"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5715"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_4475"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5267"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5861"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5600"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_4949"}], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000093PB", "indicator": "Stop J", "stopLetter": "J", "modes": ["bus"], "icsCode": "1000093", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00093PE", "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"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490000093PB", "stationAtcoCode": "490G00093PE", "lineIdentifier": ["14", "19", "23", "38", "9", "n19", "n38", "n9", "n97"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "bus", "lineIdentifier": ["14", "19", "23", "38", "9", "n19", "n38", "n9", "n97"]}], "status": true, "id": "490000093PB", "commonName": "Green Park Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Direction", "key": "CompassPoint", "sourceSystemKey": "Naptan490", "value": "E"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Direction", "key": "Towards", "sourceSystemKey": "CountDown", "value": "Trafalgar Square Or Tottenham Court Road"}, {"$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": "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": "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": "Lifts", "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": "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": "Euro Cash Machines", "sourceSystemKey": "StaticObjects", "value": "yes"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_44"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_49"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_53"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_318"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_382"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_391"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_528"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_541"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5252"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5510"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5821"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5868"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5191"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_3451"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5014"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5862"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5778"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_4706"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5594"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_4182"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_4623"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5714"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5647"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5811"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5863"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5351"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_4875"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_4150"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5317"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_4863"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5713"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5651"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5363"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5323"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5099"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5715"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_4475"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5267"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5687"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5861"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5600"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5800"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_4949"}], "children": [], "lat": 51.507013, "lon": -0.142554}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000093PE", "indicator": "Stop H", "stopLetter": "H", "modes": ["bus"], "icsCode": "1000093", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00093PE", "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"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490000093PE", "stationAtcoCode": "490G00093PE", "lineIdentifier": ["14", "19", "22", "23", "38", "9", "n19", "n22", "n38", "n9", "n97"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "bus", "lineIdentifier": ["14", "19", "22", "23", "38", "9", "n19", "n22", "n38", "n9", "n97"]}], "status": true, "id": "490000093PE", "commonName": "Green Park Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Direction", "key": "CompassPoint", "sourceSystemKey": "Naptan490", "value": "SW"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Direction", "key": "Towards", "sourceSystemKey": "CountDown", "value": "Marble Arch, Knightsbridge Or Victoria"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.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": "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": "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": "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": "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": "Help Points", "sourceSystemKey": "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": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_44"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_49"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_53"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_318"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_382"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_391"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_528"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_541"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5252"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5821"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5868"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5191"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_3451"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5014"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5862"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_4706"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5594"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_4182"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_4623"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5714"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5647"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5811"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5863"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5351"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_4875"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_4150"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5317"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_4863"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5713"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5651"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5363"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5323"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5099"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5715"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_4475"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5267"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5861"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5600"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5800"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_4949"}], "children": [], "lat": 51.506676, "lon": -0.142841}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000093PA", "indicator": "Stop R", "stopLetter": "R", "modes": [], "icsCode": "1000093", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00093PE", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000093PA", "commonName": "Green Park Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.507339, "lon": -0.143809}], "lat": 51.507339, "lon": -0.143809}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUGPK2", "modes": [], "icsCode": "1000093", "stationNaptan": "940GZZLUGPK", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "9400ZZLUGPK2", "commonName": "Green Park Underground Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 0.0, "lon": 0.0}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUGPK3", "modes": [], "icsCode": "1000093", "stationNaptan": "940GZZLUGPK", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "9400ZZLUGPK3", "commonName": "Green Park Underground Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 0.0, "lon": 0.0}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUGPK4", "modes": [], "icsCode": "1000093", "stationNaptan": "940GZZLUGPK", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "9400ZZLUGPK4", "commonName": "Green Park Underground Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 0.0, "lon": 0.0}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUGPK1", "modes": [], "icsCode": "1000093", "stationNaptan": "940GZZLUGPK", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "9400ZZLUGPK1", "commonName": "Green Park Underground Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 0.0, "lon": 0.0}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUGPK5", "modes": [], "icsCode": "1000093", "stationNaptan": "940GZZLUGPK", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "9400ZZLUGPK5", "commonName": "Green Park Underground Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 0.0, "lon": 0.0}], "lat": 51.506947, "lon": -0.142787}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "940GZZLUHPC", "modes": ["bus", "tube"], "icsCode": "1000119", "stopType": "NaptanMetroStation", "stationNaptan": "940GZZLUHPC", "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"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490000119F", "stationAtcoCode": "490G00119F", "lineIdentifier": ["13", "148", "2", "36", "38", "390", "52", "6", "n2", "n32", "n38"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490000119K", "stationAtcoCode": "490G00119F", "lineIdentifier": ["13", "137", "148", "19", "2", "22", "36", "38", "390", "452", "52", "6", "n137", "n19", "n2", "n22", "n32", "n38"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490000119P", "stationAtcoCode": "490G00119A", "lineIdentifier": ["137", "19", "22", "n137", "n19", "n22"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490000119N", "stationAtcoCode": "490G00119A", "lineIdentifier": ["14", "414", "74", "n74", "n97"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490000119T", "stationAtcoCode": "490G00119S", "lineIdentifier": ["14", "9", "n9", "n97"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490000119W", "stationAtcoCode": "490G00119S", "lineIdentifier": ["414", "74", "n74"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490000119M", "stationAtcoCode": "490G00119A", "lineIdentifier": ["52", "9", "n9"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490000119S", "stationAtcoCode": "490G00119S", "lineIdentifier": ["52"]}, {"$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": "bus", "lineIdentifier": ["13", "137", "14", "148", "19", "2", "22", "36", "38", "390", "414", "452", "52", "6", "74", "9", "n137", "n19", "n2", "n22", "n32", "n38", "n74", "n9", "n97"]}, {"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["piccadilly"]}], "status": true, "id": "940GZZLUHPC", "commonName": "Hyde Park Corner 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": "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": "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": "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": "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": "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": "BikePoints_166"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_181"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_191"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_207"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_213"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_222"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_303"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_380"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_733"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5664"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_4762"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_4852"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5864"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_4457"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_4968"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5373"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5000"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_4706"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5969"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5968"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_4863"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_3738"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_4638"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_4761"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5966"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_4412"}], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490G00119A", "modes": ["bus"], "icsCode": "1000119", "stopType": "NaptanOnstreetBusCoachStopCluster", "stationNaptan": "490G00119A", "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": "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": "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": "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": "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": "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": "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"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490000119P", "stationAtcoCode": "490G00119A", "lineIdentifier": ["137", "19", "22", "n137", "n19", "n22"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490000119N", "stationAtcoCode": "490G00119A", "lineIdentifier": ["14", "414", "74", "n74", "n97"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490000119M", "stationAtcoCode": "490G00119A", "lineIdentifier": ["52", "9", "n9"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "bus", "lineIdentifier": ["137", "14", "19", "22", "414", "52", "74", "9", "n137", "n19", "n22", "n74", "n9", "n97"]}], "status": true, "id": "490G00119A", "commonName": "Hyde Park Corner", "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": "Photo 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": "Facility", "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": "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": "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": "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": "Ticket Halls", "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": "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": "PhoneNo", "sourceSystemKey": "StaticObjects", "value": "0845 330 9880"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_166"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_181"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_191"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_207"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_213"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_222"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_303"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_368"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_733"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5664"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_4762"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_4852"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5864"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_4457"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_4968"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5373"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5000"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_4706"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5969"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5968"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5637"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5463"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_3738"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_4638"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_4761"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_4492"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5966"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_4412"}], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000119N", "indicator": "Stop N", "stopLetter": "N", "modes": ["bus"], "icsCode": "1000119", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00119A", "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": "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"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490000119N", "stationAtcoCode": "490G00119A", "lineIdentifier": ["14", "414", "74", "n74", "n97"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "bus", "lineIdentifier": ["14", "414", "74", "n74", "n97"]}], "status": true, "id": "490000119N", "commonName": "Hyde Park Corner Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Direction", "key": "CompassPoint", "sourceSystemKey": "Naptan490", "value": "W"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Direction", "key": "Towards", "sourceSystemKey": "CountDown", "value": "South Kensington"}, {"$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": "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": "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": "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": "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": "Escalators", "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": "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": "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": "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": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_166"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_181"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_191"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_207"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_213"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_222"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_303"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_368"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_733"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5664"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_4762"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_4852"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5864"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_4457"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_4968"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5373"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5000"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_4706"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5969"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5968"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5637"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5463"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_3738"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_4638"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_4761"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_4492"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5966"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_4412"}], "children": [], "lat": 51.502707, "lon": -0.153449}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000119P", "indicator": "Stop P", "stopLetter": "P", "modes": [], "icsCode": "1000119", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00119A", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000119P", "commonName": "Hyde Park Corner Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 0.0, "lon": 0.0}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000119M", "indicator": "Stop M", "stopLetter": "M", "modes": [], "icsCode": "1000119", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00119A", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000119M", "commonName": "Hyde Park Corner Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 0.0, "lon": 0.0}], "lat": 51.502707, "lon": -0.153449}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490G00119S", "modes": ["bus"], "icsCode": "1000119", "stopType": "NaptanOnstreetBusCoachStopCluster", "stationNaptan": "490G00119S", "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": "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": "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": "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"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490000119T", "stationAtcoCode": "490G00119S", "lineIdentifier": ["14", "9", "n9", "n97"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490000119W", "stationAtcoCode": "490G00119S", "lineIdentifier": ["414", "74", "n74"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490000119S", "stationAtcoCode": "490G00119S", "lineIdentifier": ["52"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "bus", "lineIdentifier": ["14", "414", "52", "74", "9", "n74", "n9", "n97"]}], "status": true, "id": "490G00119S", "commonName": "Hyde Park Corner", "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": "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": "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": "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": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$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": "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": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_166"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_181"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_191"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_207"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_213"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_222"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_303"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_368"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_380"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_733"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5664"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_4762"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_4852"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5864"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_4457"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_4968"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5373"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5000"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_4706"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5969"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5968"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5637"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_3738"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_4638"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_4761"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_4492"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5966"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_4412"}], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000119T", "indicator": "Stop T", "stopLetter": "T", "modes": ["bus"], "icsCode": "1000119", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00119S", "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"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490000119T", "stationAtcoCode": "490G00119S", "lineIdentifier": ["14", "9", "n9", "n97"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "bus", "lineIdentifier": ["14", "9", "n9", "n97"]}], "status": true, "id": "490000119T", "commonName": "Hyde Park Corner Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Direction", "key": "CompassPoint", "sourceSystemKey": "Naptan490", "value": "E"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Direction", "key": "Towards", "sourceSystemKey": "CountDown", "value": "Oxford Circus Or Piccadilly Circus"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.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": "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": "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": "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": "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": "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": "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": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_166"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_181"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_191"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_207"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_213"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_222"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_303"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_380"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_733"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5664"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_4762"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_4852"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5864"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_4457"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_4968"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5373"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5000"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_4706"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5969"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5968"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5637"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_3738"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_4638"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_4761"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5966"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_4412"}], "children": [], "lat": 51.503023, "lon": -0.153508}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000119W", "indicator": "Stop W", "stopLetter": "W", "modes": [], "icsCode": "1000119", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00119S", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000119W", "commonName": "Hyde Park Corner Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 0.0, "lon": 0.0}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000119S", "indicator": "Stop S", "stopLetter": "S", "modes": [], "icsCode": "1000119", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00119S", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000119S", "commonName": "Hyde Park Corner Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.502966, "lon": -0.153914}], "lat": 51.502966, "lon": -0.153914}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUHPC1", "modes": [], "icsCode": "1000119", "stationNaptan": "940GZZLUHPC", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "9400ZZLUHPC1", "commonName": "Hyde Park Corner Underground Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 0.0, "lon": 0.0}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUHPC2", "modes": [], "icsCode": "1000119", "stationNaptan": "940GZZLUHPC", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "9400ZZLUHPC2", "commonName": "Hyde Park Corner", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 0.0, "lon": 0.0}], "lat": 51.503035, "lon": -0.152441}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "940GZZLUKNB", "modes": ["tube", "bus"], "icsCode": "1000130", "stopType": "NaptanMetroStation", "stationNaptan": "940GZZLUKNB", "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"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490000130KD", "stationAtcoCode": "490G00130KD", "lineIdentifier": ["14", "414", "74", "c1", "n74", "n97"]}, {"$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": "bus", "lineIdentifier": ["14", "414", "74", "c1", "n74", "n97"]}, {"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["piccadilly"]}], "status": true, "id": "940GZZLUKNB", "commonName": "Knightsbridge 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": "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": "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": "Help Points", "sourceSystemKey": "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": "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": "Knightsbridge Station,London Underground Ltd.,Sloane St,London,SW1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.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": "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": "Car park", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_166"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_222"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_292"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_303"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_368"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5514"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5479"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_4968"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5658"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5318"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5637"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5515"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5463"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_3738"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_4638"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5160"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5410"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_4492"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5152"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5770"}], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490G00130KD", "modes": ["bus"], "icsCode": "1000130", "stopType": "NaptanOnstreetBusCoachStopCluster", "stationNaptan": "490G00130KD", "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"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490000130KD", "stationAtcoCode": "490G00130KD", "lineIdentifier": ["14", "414", "74", "c1", "n74", "n97"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "bus", "lineIdentifier": ["14", "414", "74", "c1", "n74", "n97"]}], "status": true, "id": "490G00130KD", "commonName": "Knightsbridge 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": "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": "Help Points", "sourceSystemKey": "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": "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": "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": "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": "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": "Toilets", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_143"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_166"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_292"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_303"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_368"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5514"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5479"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_4968"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5658"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5318"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5637"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5515"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5463"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_4638"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5160"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5410"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_4492"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5152"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5770"}], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000130KD", "indicator": "Stop KD", "stopLetter": "KD", "modes": ["bus"], "icsCode": "1000130", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00130KD", "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"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490000130KD", "stationAtcoCode": "490G00130KD", "lineIdentifier": ["14", "414", "74", "c1", "n74", "n97"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "bus", "lineIdentifier": ["14", "414", "74", "c1", "n74", "n97"]}], "status": true, "id": "490000130KD", "commonName": "Knightsbridge Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Direction", "key": "CompassPoint", "sourceSystemKey": "Naptan490", "value": "N"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Direction", "key": "Towards", "sourceSystemKey": "CountDown", "value": "Hyde Park Corner Or Sloane Square"}, {"$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": "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": "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": "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": "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": "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": "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": "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": "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": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_143"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_166"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_292"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_303"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_368"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5514"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5479"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_4968"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5658"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5318"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5637"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5515"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5463"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_4638"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5160"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5410"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_4492"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5152"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5770"}], "children": [], "lat": 51.500733, "lon": -0.162332}], "lat": 51.500733, "lon": -0.162332}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUKNB1", "modes": [], "icsCode": "1000130", "stationNaptan": "940GZZLUKNB", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "9400ZZLUKNB1", "commonName": "Knightsbridge Underground Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 0.0, "lon": 0.0}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUKNB2", "modes": [], "icsCode": "1000130", "stationNaptan": "940GZZLUKNB", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "9400ZZLUKNB2", "commonName": "Knightsbridge Underground Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 0.0, "lon": 0.0}], "lat": 51.501669, "lon": -0.160508}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "940GZZLUPCC", "modes": ["bus", "tube"], "icsCode": "1000179", "stopType": "NaptanMetroStation", "stationNaptan": "940GZZLUPCC", "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"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490000179F", "stationAtcoCode": "490G00179D", "lineIdentifier": ["12", "139", "159", "453", "88", "94", "n109", "n113", "n136", "n15", "n18", "n3"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490011515W", "stationAtcoCode": "490G00179D", "lineIdentifier": ["12", "139", "159", "453", "88", "94", "n109", "n113", "n136", "n15", "n18", "n3"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490000179B", "stationAtcoCode": "490G00179B", "lineIdentifier": ["14", "19", "23", "38", "9", "n19", "n38", "n9", "n97"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490000179S", "stationAtcoCode": "490G00179B", "lineIdentifier": ["14", "19", "23", "38", "9", "n19", "n38", "n9", "n97"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "940GZZLUPCC", "lineIdentifier": ["bakerloo"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "940GZZLUPCC", "lineIdentifier": ["piccadilly"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "bus", "lineIdentifier": ["12", "139", "14", "159", "19", "23", "38", "453", "88", "9", "94", "n109", "n113", "n136", "n15", "n18", "n19", "n3", "n38", "n9", "n97"]}, {"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["bakerloo", "piccadilly"]}], "status": true, "id": "940GZZLUPCC", "commonName": "Piccadilly Circus 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": "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": "VisitorCentre", "key": "Location", "sourceSystemKey": "StaticObjects", "value": "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": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$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": "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": "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": "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": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_83"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_129"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_160"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_192"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_226"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_228"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_233"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_260"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_318"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_325"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_383"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_386"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5596"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5016"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5510"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5670"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5191"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5468"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5364"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5325"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5671"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5809"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5737"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5778"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_4978"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5799"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5594"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5432"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5686"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_4182"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5855"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5090"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5481"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5853"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5779"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5317"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5867"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5363"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5017"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5509"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5715"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5854"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5856"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5758"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5572"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5687"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5065"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5800"}], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490G00179B", "modes": ["bus"], "icsCode": "1000179", "stopType": "NaptanOnstreetBusCoachStopCluster", "stationNaptan": "490G00179B", "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"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490000179B", "stationAtcoCode": "490G00179B", "lineIdentifier": ["14", "19", "23", "38", "9", "n19", "n38", "n9", "n97"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490000179S", "stationAtcoCode": "490G00179B", "lineIdentifier": ["14", "19", "23", "38", "9", "n19", "n38", "n9", "n97"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "bus", "lineIdentifier": ["14", "19", "23", "38", "9", "n19", "n38", "n9", "n97"]}], "status": true, "id": "490G00179B", "commonName": "Piccadilly Circus", "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": "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": "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": "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": "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": "Waiting Room", "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": "Help Points", "sourceSystemKey": "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": "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": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_83"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_129"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_160"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_192"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_226"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_228"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_233"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_260"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_318"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_325"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_391"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5252"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5596"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5016"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5510"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5670"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5191"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5468"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5325"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5671"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5014"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5809"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5778"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_4978"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5799"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5594"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5432"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5686"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_4182"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5855"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_4623"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5714"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5811"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5863"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5853"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_4150"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5779"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5317"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5713"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5363"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5099"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5017"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5509"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5715"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5854"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5856"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5267"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5572"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5687"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5065"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5861"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5800"}], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000179B", "indicator": "Stop B", "stopLetter": "B", "modes": ["bus"], "icsCode": "1000179", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00179B", "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"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490000179B", "stationAtcoCode": "490G00179B", "lineIdentifier": ["14", "19", "23", "38", "9", "n19", "n38", "n9", "n97"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "bus", "lineIdentifier": ["14", "19", "23", "38", "9", "n19", "n38", "n9", "n97"]}], "status": true, "id": "490000179B", "commonName": "Piccadilly Circus", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Direction", "key": "CompassPoint", "sourceSystemKey": "Naptan490", "value": "E"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Direction", "key": "Towards", "sourceSystemKey": "CountDown", "value": "Trafalgar Square Or Tottenham Court Road"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.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": "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": "Payphones", "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": "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": "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": "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": "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": "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": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_83"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_129"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_160"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_192"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_226"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_228"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_233"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_260"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_318"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_325"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_391"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5252"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5596"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5016"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5510"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5670"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5191"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5468"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5325"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5671"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5014"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5809"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5778"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_4978"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5799"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5594"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5432"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5686"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_4182"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5855"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_4623"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5714"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5811"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5863"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5853"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_4150"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5779"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5317"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5713"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5363"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5099"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5017"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5509"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5715"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5854"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5856"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5267"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5572"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5687"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5065"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5861"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5800"}], "children": [], "lat": 51.509305, "lon": -0.136235}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000179S", "indicator": "Stop S", "stopLetter": "S", "modes": ["bus"], "icsCode": "1000179", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00179B", "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"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490000179S", "stationAtcoCode": "490G00179B", "lineIdentifier": ["14", "19", "23", "38", "9", "n19", "n38", "n9", "n97"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "bus", "lineIdentifier": ["14", "19", "23", "38", "9", "n19", "n38", "n9", "n97"]}], "status": true, "id": "490000179S", "commonName": "Piccadilly Circus", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Direction", "key": "CompassPoint", "sourceSystemKey": "Naptan490", "value": "W"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Direction", "key": "Towards", "sourceSystemKey": "CountDown", "value": "Marble Arch, Knightsbridge Or Victoria"}, {"$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": "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": "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": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$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"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.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": "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": "Ticket Halls", "sourceSystemKey": "StaticObjects", "value": "1"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_83"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_129"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_160"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_192"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_226"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_228"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_233"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_318"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_325"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_391"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5252"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5596"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5016"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5510"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5670"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5191"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5325"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5671"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5014"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5809"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5778"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_4978"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5799"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5594"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5432"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5686"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_4182"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5855"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_4623"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5714"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5811"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5863"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5853"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_4150"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5779"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5317"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5713"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5363"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5099"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5017"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5509"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5715"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5854"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5856"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5267"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5572"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5687"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5065"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5861"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5800"}], "children": [], "lat": 51.509153, "lon": -0.13627}], "lat": 51.509305, "lon": -0.136235}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUPCC1", "modes": [], "icsCode": "1000179", "stationNaptan": "940GZZLUPCC", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "9400ZZLUPCC1", "commonName": "Piccadilly Circus Underground Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 0.0, "lon": 0.0}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUPCC2", "modes": [], "icsCode": "1000179", "stationNaptan": "940GZZLUPCC", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "9400ZZLUPCC2", "commonName": "Piccadilly Circus Underground Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 0.0, "lon": 0.0}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUPCC3", "modes": [], "icsCode": "1000179", "stationNaptan": "940GZZLUPCC", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "9400ZZLUPCC3", "commonName": "Piccadilly Circus Underground Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 0.0, "lon": 0.0}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUPCC4", "modes": [], "icsCode": "1000179", "stationNaptan": "940GZZLUPCC", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "9400ZZLUPCC4", "commonName": "Piccadilly Circus Underground Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 0.0, "lon": 0.0}], "lat": 51.51005, "lon": -0.133798}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "940GZZLURSQ", "modes": ["bus", "tube"], "icsCode": "1000200", "stopType": "NaptanMetroStation", "stationNaptan": "940GZZLURSQ", "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"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490000200H", "stationAtcoCode": "490G00200H", "lineIdentifier": ["1", "68", "91", "n91"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490000200J", "stationAtcoCode": "490G00200H", "lineIdentifier": ["1", "68", "91", "n91"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490000200E", "stationAtcoCode": "490G00200H", "lineIdentifier": ["14", "sl6"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "940GZZLURSQ", "lineIdentifier": ["piccadilly"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490000200D", "stationAtcoCode": "490G00200H", "lineIdentifier": ["sl6"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "bus", "lineIdentifier": ["1", "14", "68", "91", "n91", "sl6"]}, {"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["piccadilly"]}], "status": true, "id": "940GZZLURSQ", "commonName": "Russell Square 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": "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": "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": "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": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "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": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$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"}, {"$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": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_11"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_12"}, {"$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_24"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_57"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_77"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_89"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_287"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_796"}, {"$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_4203"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_4878"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_4616"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5545"}, {"$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_5701"}], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490G00200H", "modes": ["bus"], "icsCode": "1000200", "stopType": "NaptanOnstreetBusCoachStopCluster", "stationNaptan": "490G00200H", "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": "sl6", "name": "SL6", "uri": "/Line/sl6", "type": "Line", "crowding": {"$type": "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": "490000200H", "stationAtcoCode": "490G00200H", "lineIdentifier": ["1", "68", "91", "n91"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490000200J", "stationAtcoCode": "490G00200H", "lineIdentifier": ["1", "68", "91", "n91"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490000200E", "stationAtcoCode": "490G00200H", "lineIdentifier": ["14", "sl6"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490000200D", "stationAtcoCode": "490G00200H", "lineIdentifier": ["sl6"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "bus", "lineIdentifier": ["1", "14", "68", "91", "n91", "sl6"]}], "status": true, "id": "490G00200H", "commonName": "Russell Square", "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": "Toilets", "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": "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": "Russell Square Station,London Underground Ltd.,Bernard St,London,WC1N 1LJ"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.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": "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": "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_11"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_12"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_15"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_23"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_24"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_57"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_77"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_162"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_287"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_364"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_562"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_796"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_4203"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_4878"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5655"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_4616"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5545"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5233"}, {"$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_5701"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_4139"}], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000200E", "indicator": "Stop E", "stopLetter": "E", "modes": ["bus"], "icsCode": "1000200", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00200H", "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"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490000200E", "stationAtcoCode": "490G00200H", "lineIdentifier": ["14", "sl6"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "bus", "lineIdentifier": ["14", "sl6"]}], "status": true, "id": "490000200E", "commonName": ".Russell Square", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Direction", "key": "CompassPoint", "sourceSystemKey": "Naptan490", "value": "NE"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Direction", "key": "Towards", "sourceSystemKey": "CountDown", "value": "Piccadilly Circus Or Waterloo"}, {"$type": "Tfl.Api.Presentation.Entities.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": "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": "Russell Square Station,London Underground Ltd.,Bernard St,London,WC1N 1LJ"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "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": "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": "Photo Booths", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$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": "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": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_11"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_12"}, {"$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_24"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_57"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_77"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_287"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_364"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_796"}, {"$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_4203"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_4878"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_4616"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5545"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5233"}, {"$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_5701"}], "children": [], "lat": 51.522334, "lon": -0.127126}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000200H", "indicator": "Stop H", "stopLetter": "H", "modes": [], "icsCode": "1000200", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00200H", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000200H", "commonName": "Russell Square Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 0.0, "lon": 0.0}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000200J", "indicator": "Stop J", "stopLetter": "J", "modes": [], "icsCode": "1000200", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00200H", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000200J", "commonName": "Russell Square", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 0.0, "lon": 0.0}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000200D", "indicator": "Stop D", "stopLetter": "D", "modes": [], "icsCode": "1000200", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00200H", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000200D", "commonName": "Russell Square", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.520861, "lon": -0.125529}], "lat": 51.520861, "lon": -0.125529}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLURSQ1", "modes": [], "icsCode": "1000200", "stationNaptan": "940GZZLURSQ", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "9400ZZLURSQ1", "commonName": "Russell Square Underground Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 0.0, "lon": 0.0}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLURSQ2", "modes": [], "icsCode": "1000200", "stationNaptan": "940GZZLURSQ", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "9400ZZLURSQ2", "commonName": "Russell Square Underground Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 0.0, "lon": 0.0}], "lat": 51.523073, "lon": -0.124285}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "940GZZLUSKS", "modes": ["tube", "bus"], "icsCode": "1000212", "stopType": "NaptanMetroStation", "stationNaptan": "940GZZLUSKS", "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"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490000212E", "stationAtcoCode": "490G00212G", "lineIdentifier": ["14", "360", "414", "430", "74", "c1", "n74", "n97"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490000212S1", "stationAtcoCode": "490G00212G", "lineIdentifier": ["14", "360", "414"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490000212E1", "stationAtcoCode": "490G00212G", "lineIdentifier": ["345", "49"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490000212S", "stationAtcoCode": "490G00212G", "lineIdentifier": ["430", "70", "74", "c1", "n74", "n97"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "940GZZLUSKS", "lineIdentifier": ["circle", "district"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "940GZZLUSKS", "lineIdentifier": ["piccadilly"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "bus", "lineIdentifier": ["14", "345", "360", "414", "430", "49", "70", "74", "c1", "n74", "n97"]}, {"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["circle", "district", "piccadilly"]}], "status": true, "id": "940GZZLUSKS", "commonName": "South Kensington 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": "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": "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": "Photo 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": "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": "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": "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": "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": "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": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_150"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_163"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_172"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_187"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_231"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_356"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_378"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_432"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_482"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_781"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5322"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5319"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5111"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_4645"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5577"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5757"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5805"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5817"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5706"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5666"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5790"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_4034"}], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490G00212G", "modes": ["bus"], "icsCode": "1000212", "stopType": "NaptanOnstreetBusCoachStopCluster", "stationNaptan": "490G00212G", "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": "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"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490000212E", "stationAtcoCode": "490G00212G", "lineIdentifier": ["14", "360", "414", "430", "74", "c1", "n74", "n97"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490000212S1", "stationAtcoCode": "490G00212G", "lineIdentifier": ["14", "360", "414"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490000212E1", "stationAtcoCode": "490G00212G", "lineIdentifier": ["345", "49"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490000212S", "stationAtcoCode": "490G00212G", "lineIdentifier": ["430", "70", "74", "c1", "n74", "n97"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "bus", "lineIdentifier": ["14", "345", "360", "414", "430", "49", "70", "74", "c1", "n74", "n97"]}], "status": true, "id": "490G00212G", "commonName": "South Kensington 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": "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": "Gates", "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": "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": "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": "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": "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": "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": "BikePoints_172"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_187"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_231"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_356"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_378"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_405"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_432"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_482"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_781"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5319"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5111"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_4645"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5577"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5757"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5805"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5817"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5666"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5790"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_4034"}], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000212E", "indicator": "Stop E", "stopLetter": "E", "modes": ["bus"], "icsCode": "1000212", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00212G", "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"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490000212E", "stationAtcoCode": "490G00212G", "lineIdentifier": ["14", "360", "414", "430", "74", "c1", "n74", "n97"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "bus", "lineIdentifier": ["14", "360", "414", "430", "74", "c1", "n74", "n97"]}], "status": true, "id": "490000212E", "commonName": "South Kensington Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Direction", "key": "CompassPoint", "sourceSystemKey": "Naptan490", "value": "N"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Direction", "key": "Towards", "sourceSystemKey": "CountDown", "value": "Knightsbridge Or Royal Albert Hall"}, {"$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": "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": "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": "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": "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": "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": "BikePoints_172"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_187"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_231"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_356"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_378"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_432"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_482"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_781"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5322"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5319"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5111"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_4645"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5577"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5757"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5805"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5817"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5706"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5666"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5790"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_4034"}], "children": [], "lat": 51.494463, "lon": -0.174815}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000212S1", "indicator": "Stop T", "stopLetter": "T", "modes": ["bus"], "icsCode": "1000212", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00212G", "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"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490000212S1", "stationAtcoCode": "490G00212G", "lineIdentifier": ["14", "360", "414"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "bus", "lineIdentifier": ["14", "360", "414"]}], "status": true, "id": "490000212S1", "commonName": "South Kensington Station", "placeType": "StopPoint", "additionalProperties": [{"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Direction", "key": "CompassPoint", "sourceSystemKey": "Naptan490", "value": "S"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Direction", "key": "Towards", "sourceSystemKey": "CountDown", "value": "Fulham Or Sloane Square"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.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": "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": "South Kensington Station,London Underground Ltd.,Pelham St,London,SW7 2NB"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, 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": "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": "Cash Machines", "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": "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": "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": "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": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_150"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_163"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_172"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_187"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_231"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_356"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_378"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_432"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_482"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_781"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5322"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5319"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5111"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_4645"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5577"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5757"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5805"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5817"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5706"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5666"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5790"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_4034"}], "children": [], "lat": 51.494423, "lon": -0.174586}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000212E1", "indicator": "Stop D", "stopLetter": "D", "modes": [], "icsCode": "1000212", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00212G", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000212E1", "commonName": "South Kensington Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 51.494167, "lon": -0.175461}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "490000212S", "indicator": "Stop S", "stopLetter": "S", "modes": [], "icsCode": "1000212", "stopType": "NaptanPublicBusCoachTram", "stationNaptan": "490G00212G", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "490000212S", "commonName": "South Kensington Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 0.0, "lon": 0.0}], "lat": 51.494167, "lon": -0.175461}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUSKS1", "modes": [], "icsCode": "1000212", "stationNaptan": "940GZZLUSKS", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "9400ZZLUSKS1", "commonName": "South Kensington Underground Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 0.0, "lon": 0.0}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUSKS4", "indicator": "westbound", "modes": [], "icsCode": "1000212", "stationNaptan": "940GZZLUSKS", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "9400ZZLUSKS4", "commonName": "South Kensington Underground Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 0.0, "lon": 0.0}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUSKS2", "modes": [], "icsCode": "1000212", "stationNaptan": "940GZZLUSKS", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "9400ZZLUSKS2", "commonName": "South Kensington Underground Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 0.0, "lon": 0.0}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUSKS3", "modes": [], "icsCode": "1000212", "stationNaptan": "940GZZLUSKS", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "9400ZZLUSKS3", "commonName": "South Kensington Underground Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 0.0, "lon": 0.0}], "lat": 51.494094, "lon": -0.174138}]} \ No newline at end of file diff --git a/tests/tfl_responses/stopPointsByLineId_victoria_None_StopPoint.json b/tests/tfl_responses/stopPointsByLineId_victoria_None_StopPoint.json new file mode 100644 index 0000000..76d392c --- /dev/null +++ b/tests/tfl_responses/stopPointsByLineId_victoria_None_StopPoint.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": "7196", "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": "79316", "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": "411", "X-Cacheable": "Yes. Cacheable", "X-Frame-Options": "deny", "X-Proxy-Connection": "unset", "X-TTL": "86400.000", "X-TTL-RULE": "0", "X-Varnish": "904340247 892405295", "X-AspNet-Version": "4.0.30319", "X-Operation": "Line_StopPointsByPathIdQueryTflOperatedNationalRailStationsOnly", "X-API": "Line", "CF-Cache-Status": "DYNAMIC", "Strict-Transport-Security": "max-age=31536000", "Set-Cookie": "_cfuvid=4.B_RxbF8d8MmSedCMpHkdoMWqI69jaxTKkEEKpR47s-1721049476269-0.0.1.1-604800000; path=/; domain=.tfl.gov.uk; HttpOnly; Secure; SameSite=None", "Server": "cloudflare", "CF-RAY": "8a3a091a6aa5beb6-LHR"}, "data": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "940GZZLUBLR", "modes": ["tube"], "icsCode": "1000024", "stopType": "NaptanMetroStation", "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": "940GZZLUBLR", "commonName": "Blackhorse Road 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": "Help Points", "sourceSystemKey": "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": "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": "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": "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": "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": "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": "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": "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": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "CarParks_800466"}], "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", "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": "940GZZLUBXN", "modes": ["tube"], "icsCode": "1000031", "stopType": "NaptanMetroStation", "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": "940GZZLUBXN", "commonName": "Brixton 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": "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": "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": "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": "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": "Brixton Underground Station,London Underground Ltd.,Brixton Rd,London,SW9 8HE"}, {"$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": "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, 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": "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": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_831"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_832"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_833"}], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUBXN1", "modes": [], "icsCode": "1000031", "stationNaptan": "940GZZLUBXN", "hubNaptanCode": "HUBBRX", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "9400ZZLUBXN1", "commonName": "Brixton Underground Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 0.0, "lon": 0.0}], "lat": 51.462618, "lon": -0.114888}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "940GZZLUEUS", "modes": ["tube"], "icsCode": "1000077", "stopType": "NaptanMetroStation", "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"}, {"$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": ["northern"]}, {"$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": ["northern", "victoria"]}], "status": true, "id": "940GZZLUEUS", "commonName": "Euston 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": "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": "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": "2"}, {"$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": "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": "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": "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": "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": "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": "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_214"}, {"$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_5896"}], "children": [{"$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": "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": "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": "940GZZLUFPK", "modes": ["tube"], "icsCode": "1000083", "stopType": "NaptanMetroStation", "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"}, {"$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": ["piccadilly"]}, {"$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": ["piccadilly", "victoria"]}], "status": true, "id": "940GZZLUFPK", "commonName": "Finsbury Park 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": "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": "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": "Opening Time", "key": "MonFriTo", "sourceSystemKey": "StaticObjects", "value": "21: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": "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": "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": "MonFriFrom", "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": "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": "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": "SunTo", "sourceSystemKey": "StaticObjects", "value": "22: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": "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": "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": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5870"}], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUFPK1", "modes": [], "icsCode": "1000083", "stationNaptan": "940GZZLUFPK", "hubNaptanCode": "HUBFPK", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "9400ZZLUFPK1", "commonName": "Finsbury Park Underground Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 0.0, "lon": 0.0}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUFPK2", "modes": [], "icsCode": "1000083", "stationNaptan": "940GZZLUFPK", "hubNaptanCode": "HUBFPK", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "9400ZZLUFPK2", "commonName": "Finsbury Park Underground Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 0.0, "lon": 0.0}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUFPK3", "modes": [], "icsCode": "1000083", "stationNaptan": "940GZZLUFPK", "hubNaptanCode": "HUBFPK", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "9400ZZLUFPK3", "commonName": "Finsbury Park Underground Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 0.0, "lon": 0.0}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUFPK4", "modes": [], "icsCode": "1000083", "stationNaptan": "940GZZLUFPK", "hubNaptanCode": "HUBFPK", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "9400ZZLUFPK4", "commonName": "Finsbury Park Underground Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 0.0, "lon": 0.0}], "lat": 51.564158, "lon": -0.106825}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "940GZZLUGPK", "modes": ["tube", "bus"], "icsCode": "1000093", "stopType": "NaptanMetroStation", "stationNaptan": "940GZZLUGPK", "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"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490000093PB", "stationAtcoCode": "490G00093PE", "lineIdentifier": ["14", "19", "23", "38", "9", "n19", "n38", "n9", "n97"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490000093PE", "stationAtcoCode": "490G00093PE", "lineIdentifier": ["14", "19", "22", "23", "38", "9", "n19", "n22", "n38", "n9", "n97"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490000093PA", "stationAtcoCode": "490G00093PE", "lineIdentifier": ["22", "n22"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "940GZZLUGPK", "lineIdentifier": ["jubilee"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "940GZZLUGPK", "lineIdentifier": ["piccadilly"]}, {"$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": "bus", "lineIdentifier": ["14", "19", "22", "23", "38", "9", "n19", "n22", "n38", "n9", "n97"]}, {"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["jubilee", "piccadilly", "victoria"]}], "status": true, "id": "940GZZLUGPK", "commonName": "Green Park 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": "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"}, {"$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": "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": "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": "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"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_44"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_49"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_53"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_318"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_382"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_391"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_528"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_541"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5252"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5510"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5821"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5868"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5191"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_3451"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5014"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5862"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5778"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_4706"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5594"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_4182"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_4623"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5714"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5647"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5811"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5863"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5351"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_4875"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_4150"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5317"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_4863"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5713"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5651"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5363"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5323"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5099"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5715"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_4475"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5267"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5687"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5861"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5600"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5800"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_4949"}], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUGPK2", "modes": [], "icsCode": "1000093", "stationNaptan": "940GZZLUGPK", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "9400ZZLUGPK2", "commonName": "Green Park Underground Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 0.0, "lon": 0.0}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUGPK3", "modes": [], "icsCode": "1000093", "stationNaptan": "940GZZLUGPK", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "9400ZZLUGPK3", "commonName": "Green Park Underground Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 0.0, "lon": 0.0}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUGPK4", "modes": [], "icsCode": "1000093", "stationNaptan": "940GZZLUGPK", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "9400ZZLUGPK4", "commonName": "Green Park Underground Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 0.0, "lon": 0.0}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUGPK1", "modes": [], "icsCode": "1000093", "stationNaptan": "940GZZLUGPK", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "9400ZZLUGPK1", "commonName": "Green Park Underground Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 0.0, "lon": 0.0}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUGPK5", "modes": [], "icsCode": "1000093", "stationNaptan": "940GZZLUGPK", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "9400ZZLUGPK5", "commonName": "Green Park Underground Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 0.0, "lon": 0.0}], "lat": 51.506947, "lon": -0.142787}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "940GZZLUHAI", "modes": ["tube"], "icsCode": "1000108", "stopType": "NaptanMetroStation", "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": "940GZZLUHAI", "commonName": "Highbury & Islington 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": "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": "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": "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": "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": "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": "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": "Help Points", "sourceSystemKey": "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"}], "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": "940GZZLUKSX", "modes": ["tube"], "icsCode": "1000129", "stopType": "NaptanMetroStation", "stationNaptan": "940GZZLUKSX", "hubNaptanCode": "HUBKGX", "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"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "940GZZLUKSX", "lineIdentifier": ["circle", "hammersmith-city", "metropolitan"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "940GZZLUKSX", "lineIdentifier": ["northern"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "940GZZLUKSX", "lineIdentifier": ["piccadilly"]}, {"$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": ["circle", "hammersmith-city", "metropolitan", "northern", "piccadilly", "victoria"]}], "status": true, "id": "940GZZLUKSX", "commonName": "King's Cross St. Pancras 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": "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": "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": "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": "Help Points", "sourceSystemKey": "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": "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": "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": "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)"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_4"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_14"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_70"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_89"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_431"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_439"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_593"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_793"}, {"$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": "BikePoints_798"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_804"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5237"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5896"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5708"}], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUKSX3", "modes": [], "icsCode": "1000129", "stationNaptan": "940GZZLUKSX", "hubNaptanCode": "HUBKGX", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "9400ZZLUKSX3", "commonName": "King's Cross St. Pancras Underground Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 0.0, "lon": 0.0}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUKSX4", "modes": [], "icsCode": "1000129", "stationNaptan": "940GZZLUKSX", "hubNaptanCode": "HUBKGX", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "9400ZZLUKSX4", "commonName": "King's Cross St. Pancras Underground Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 0.0, "lon": 0.0}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUKSX5", "modes": [], "icsCode": "1000129", "stationNaptan": "940GZZLUKSX", "hubNaptanCode": "HUBKGX", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "9400ZZLUKSX5", "commonName": "King's Cross St. Pancras Underground Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 0.0, "lon": 0.0}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUKSX6", "modes": [], "icsCode": "1000129", "stationNaptan": "940GZZLUKSX", "hubNaptanCode": "HUBKGX", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "9400ZZLUKSX6", "commonName": "King's Cross St. Pancras Underground Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 0.0, "lon": 0.0}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUKSX7", "modes": [], "icsCode": "1000129", "stationNaptan": "940GZZLUKSX", "hubNaptanCode": "HUBKGX", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "9400ZZLUKSX7", "commonName": "King's Cross St. Pancras Underground Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 0.0, "lon": 0.0}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUKSX1", "modes": [], "icsCode": "1000129", "stationNaptan": "940GZZLUKSX", "hubNaptanCode": "HUBKGX", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "9400ZZLUKSX1", "commonName": "King's Cross St. Pancras Underground Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 0.0, "lon": 0.0}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUKSX2", "modes": [], "icsCode": "1000129", "stationNaptan": "940GZZLUKSX", "hubNaptanCode": "HUBKGX", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "9400ZZLUKSX2", "commonName": "King's Cross St. Pancras Underground Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 0.0, "lon": 0.0}], "lat": 51.530663, "lon": -0.123194}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "940GZZLUOXC", "modes": ["bus", "tube"], "icsCode": "1000173", "stopType": "NaptanMetroStation", "stationNaptan": "940GZZLUOXC", "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"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490000173RC", "stationAtcoCode": "490G00173RG", "lineIdentifier": ["12", "159", "22", "88", "94", "n15", "n22", "n3"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490000173RG", "stationAtcoCode": "490G00173RG", "lineIdentifier": ["139", "159", "22", "94", "n109", "n113", "n136", "n15", "n18", "n22"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "940GZZLUOXC", "lineIdentifier": ["bakerloo"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "940GZZLUOXC", "lineIdentifier": ["central"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490000173Z", "stationAtcoCode": "490G00173OQ", "lineIdentifier": ["n137"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "940GZZLUOXC", "lineIdentifier": ["victoria"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "bus", "lineIdentifier": ["12", "139", "159", "22", "88", "94", "n109", "n113", "n136", "n137", "n15", "n18", "n22", "n3"]}, {"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["bakerloo", "central", "victoria"]}], "status": true, "id": "940GZZLUOXC", "commonName": "Oxford Circus 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": "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": "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": "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": "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": "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": "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": "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": "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": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_6"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_106"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_116"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_141"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_260"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_301"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_311"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_313"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_349"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5683"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5576"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5379"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_4334"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5580"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5500"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_4787"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5866"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5677"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5074"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5195"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5660"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5015"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_4603"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5627"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5065"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5816"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5611"}], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUOXC3", "modes": [], "icsCode": "1000173", "stationNaptan": "940GZZLUOXC", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "9400ZZLUOXC3", "commonName": "Oxford Circus Underground Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 0.0, "lon": 0.0}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUOXC4", "modes": [], "icsCode": "1000173", "stationNaptan": "940GZZLUOXC", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "9400ZZLUOXC4", "commonName": "Oxford Circus Underground Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 0.0, "lon": 0.0}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUOXC1", "modes": [], "icsCode": "1000173", "stationNaptan": "940GZZLUOXC", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "9400ZZLUOXC1", "commonName": "Oxford Circus Underground Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 0.0, "lon": 0.0}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUOXC5", "modes": [], "icsCode": "1000173", "stationNaptan": "940GZZLUOXC", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "9400ZZLUOXC5", "commonName": "Oxford Circus Underground Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 0.0, "lon": 0.0}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUOXC2", "modes": [], "icsCode": "1000173", "stationNaptan": "940GZZLUOXC", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "9400ZZLUOXC2", "commonName": "Oxford Circus Underground Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 0.0, "lon": 0.0}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUOXC6", "modes": [], "icsCode": "1000173", "stationNaptan": "940GZZLUOXC", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "9400ZZLUOXC6", "commonName": "Oxford Circus Underground Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 0.0, "lon": 0.0}], "lat": 51.515224, "lon": -0.141903}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "940GZZLUPCO", "modes": ["tube", "bus"], "icsCode": "1000180", "stopType": "NaptanMetroStation", "stationNaptan": "940GZZLUPCO", "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"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490000180A", "stationAtcoCode": "490G00180A", "lineIdentifier": ["185", "2", "36", "n136", "n2"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490000180D", "stationAtcoCode": "490G00180A", "lineIdentifier": ["185", "2", "36", "n136", "n2"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490000180H", "stationAtcoCode": "490G00180H", "lineIdentifier": ["360", "c10"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490000180J", "stationAtcoCode": "490G00180H", "lineIdentifier": ["360", "c10"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "940GZZLUPCO", "lineIdentifier": ["victoria"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "bus", "lineIdentifier": ["185", "2", "36", "360", "c10", "n136", "n2"]}, {"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["victoria"]}], "status": true, "id": "940GZZLUPCO", "commonName": "Pimlico 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": "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": "4 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": "Lifts", "sourceSystemKey": "StaticObjects", "value": "0"}, {"$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": "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."}, {"$type": "Tfl.Api.Presentation.Entities.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": "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": "Waiting Room", "sourceSystemKey": "StaticObjects", "value": "no"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_146"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_148"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_185"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_190"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_243"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_267"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_294"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5495"}], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUPCO1", "modes": [], "icsCode": "1000180", "stationNaptan": "940GZZLUPCO", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "9400ZZLUPCO1", "commonName": "Pimlico Underground Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 0.0, "lon": 0.0}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUPCO2", "modes": [], "icsCode": "1000180", "stationNaptan": "940GZZLUPCO", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "9400ZZLUPCO2", "commonName": "Pimlico Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 0.0, "lon": 0.0}], "lat": 51.489097, "lon": -0.133761}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "940GZZLUSKW", "modes": ["bus", "tube"], "icsCode": "1000223", "stopType": "NaptanMetroStation", "stationNaptan": "940GZZLUSKW", "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"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490000223G", "stationAtcoCode": "490G00223G", "lineIdentifier": ["155", "345", "n155"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "940GZZLUSKW", "lineIdentifier": ["northern"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "940GZZLUSKW", "lineIdentifier": ["victoria"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "bus", "lineIdentifier": ["155", "345", "n155"]}, {"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["northern", "victoria"]}], "status": true, "id": "940GZZLUSKW", "commonName": "Stockwell 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": "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": "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": "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": "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": "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": "Stockwell Station,London Underground Ltd.,Clapham Rd,London,SW9 9AE"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "Facility", "key": "Help Points", "sourceSystemKey": "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": "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": "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": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_630"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_669"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_772"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_814"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_830"}], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUSKW1", "modes": [], "icsCode": "1000223", "stationNaptan": "940GZZLUSKW", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "9400ZZLUSKW1", "commonName": "Stockwell Underground Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 0.0, "lon": 0.0}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUSKW2", "modes": [], "icsCode": "1000223", "stationNaptan": "940GZZLUSKW", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "9400ZZLUSKW2", "commonName": "Stockwell Underground Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 0.0, "lon": 0.0}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUSKW3", "modes": [], "icsCode": "1000223", "stationNaptan": "940GZZLUSKW", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "9400ZZLUSKW3", "commonName": "Stockwell Underground Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 0.0, "lon": 0.0}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUSKW4", "modes": [], "icsCode": "1000223", "stationNaptan": "940GZZLUSKW", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "9400ZZLUSKW4", "commonName": "Stockwell Underground Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 0.0, "lon": 0.0}], "lat": 51.472184, "lon": -0.122644}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "940GZZLUSVS", "modes": ["tube"], "icsCode": "1000201", "stopType": "NaptanMetroStation", "stationNaptan": "940GZZLUSVS", "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"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "940GZZLUSVS", "lineIdentifier": ["victoria"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["victoria"]}], "status": true, "id": "940GZZLUSVS", "commonName": "Seven Sisters 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": "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": "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": "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": "Gates", "sourceSystemKey": "StaticObjects", "value": "13"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.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": "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": "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": "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": [{"$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": "940GZZLUTMH", "modes": ["tube"], "icsCode": "1000236", "stopType": "NaptanMetroStation", "stationNaptan": "940GZZLUTMH", "hubNaptanCode": "HUBTOM", "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": "940GZZLUTMH", "lineIdentifier": ["victoria"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["victoria"]}], "status": true, "id": "940GZZLUTMH", "commonName": "Tottenham Hale 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": "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": "Tottenham Hale Underground Station,London Underground Ltd.,Station Rd,London,N17 9LR"}, {"$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": "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": "6 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": "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": "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": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "CarParks_800494"}], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUTMH1", "modes": [], "icsCode": "1000236", "stationNaptan": "940GZZLUTMH", "hubNaptanCode": "HUBTOM", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "9400ZZLUTMH1", "commonName": "Tottenham Hale Underground Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 0.0, "lon": 0.0}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUTMH2", "modes": [], "icsCode": "1000236", "stationNaptan": "940GZZLUTMH", "hubNaptanCode": "HUBTOM", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "9400ZZLUTMH2", "commonName": "Tottenham Hale", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 0.0, "lon": 0.0}], "lat": 51.588108, "lon": -0.060241}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "940GZZLUVIC", "modes": ["tube"], "icsCode": "1000248", "stopType": "NaptanMetroStation", "stationNaptan": "940GZZLUVIC", "hubNaptanCode": "HUBVIC", "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"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "940GZZLUVIC", "lineIdentifier": ["circle", "district"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "940GZZLUVIC", "lineIdentifier": ["victoria"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["circle", "district", "victoria"]}], "status": true, "id": "940GZZLUVIC", "commonName": "Victoria 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": "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": "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": "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": "Boarding Ramps", "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": "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": "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": "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": "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": "Lifts", "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": "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_161"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_167"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_177"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_268"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_316"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_320"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_360"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_646"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_799"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_826"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5970"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5744"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5654"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5773"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5743"}], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUVIC1", "modes": [], "icsCode": "1000248", "stationNaptan": "940GZZLUVIC", "hubNaptanCode": "HUBVIC", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "9400ZZLUVIC1", "commonName": "Victoria Underground Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 0.0, "lon": 0.0}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUVIC4", "modes": [], "icsCode": "1000248", "stationNaptan": "940GZZLUVIC", "hubNaptanCode": "HUBVIC", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "9400ZZLUVIC4", "commonName": "Victoria Underground Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 0.0, "lon": 0.0}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUVIC2", "modes": [], "icsCode": "1000248", "stationNaptan": "940GZZLUVIC", "hubNaptanCode": "HUBVIC", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "9400ZZLUVIC2", "commonName": "Victoria Underground Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 0.0, "lon": 0.0}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUVIC3", "modes": [], "icsCode": "1000248", "stationNaptan": "940GZZLUVIC", "hubNaptanCode": "HUBVIC", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "9400ZZLUVIC3", "commonName": "Victoria Underground Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 0.0, "lon": 0.0}], "lat": 51.496359, "lon": -0.143102}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "940GZZLUVXL", "modes": ["tube"], "icsCode": "1000247", "stopType": "NaptanMetroStation", "stationNaptan": "940GZZLUVXL", "hubNaptanCode": "HUBVXH", "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": "940GZZLUVXL", "lineIdentifier": ["victoria"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["victoria"]}], "status": true, "id": "940GZZLUVXL", "commonName": "Vauxhall 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": "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": "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": "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": "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": "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": "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": "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": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_74"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_146"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_270"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_437"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_600"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_813"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5533"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5490"}], "children": [{"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUVXL1", "modes": [], "icsCode": "1000247", "stationNaptan": "940GZZLUVXL", "hubNaptanCode": "HUBVXH", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "9400ZZLUVXL1", "commonName": "Vauxhall Underground Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 0.0, "lon": 0.0}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUVXL2", "modes": [], "icsCode": "1000247", "stationNaptan": "940GZZLUVXL", "hubNaptanCode": "HUBVXH", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "9400ZZLUVXL2", "commonName": "Vauxhall", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 0.0, "lon": 0.0}], "lat": 51.485743, "lon": -0.124204}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "940GZZLUWRR", "modes": ["tube", "bus"], "icsCode": "1000252", "stopType": "NaptanMetroStation", "stationNaptan": "940GZZLUWRR", "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"}], "lineGroup": [{"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490000252X", "stationAtcoCode": "490G00252X", "lineIdentifier": ["134", "24", "29", "390", "73", "n20", "n253", "n279", "n29", "n5", "n73"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490000252KA", "stationAtcoCode": "490G00252KA", "lineIdentifier": ["18", "205", "30", "n205"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "naptanIdReference": "490000252V", "stationAtcoCode": "490G00252KA", "lineIdentifier": ["18", "205", "27", "30", "n205", "n27"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "940GZZLUWRR", "lineIdentifier": ["northern"]}, {"$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", "stationAtcoCode": "940GZZLUWRR", "lineIdentifier": ["victoria"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "bus", "lineIdentifier": ["134", "18", "205", "24", "27", "29", "30", "390", "73", "n20", "n205", "n253", "n27", "n279", "n29", "n5", "n73"]}, {"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["northern", "victoria"]}], "status": true, "id": "940GZZLUWRR", "commonName": "Warren Street 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": "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": "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": "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": "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": "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": "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": "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": "Toilets", "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": "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_28"}, {"$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_76"}, {"$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_239"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "BikePoints_357"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5405"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5592"}, {"$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_5399"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", "category": "NearestPlaces", "key": "SourceSystemPlaceId", "sourceSystemKey": "StaticObjects", "value": "TaxiRank_5638"}, {"$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": "9400ZZLUWRR1", "modes": [], "icsCode": "1000252", "stationNaptan": "940GZZLUWRR", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "9400ZZLUWRR1", "commonName": "Warren Street Underground Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 0.0, "lon": 0.0}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUWRR2", "modes": [], "icsCode": "1000252", "stationNaptan": "940GZZLUWRR", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "9400ZZLUWRR2", "commonName": "Warren Street Underground Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 0.0, "lon": 0.0}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUWRR3", "modes": [], "icsCode": "1000252", "stationNaptan": "940GZZLUWRR", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "9400ZZLUWRR3", "commonName": "Warren Street Underground Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 0.0, "lon": 0.0}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "9400ZZLUWRR4", "modes": [], "icsCode": "1000252", "stationNaptan": "940GZZLUWRR", "lines": [], "lineGroup": [], "lineModeGroups": [], "status": true, "id": "9400ZZLUWRR4", "commonName": "Warren Street Underground Station", "placeType": "StopPoint", "additionalProperties": [], "children": [], "lat": 0.0, "lon": 0.0}], "lat": 51.524951, "lon": -0.138321}, {"$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", "naptanId": "940GZZLUWWL", "modes": ["tube"], "icsCode": "1000249", "stopType": "NaptanMetroStation", "stationNaptan": "940GZZLUWWL", "hubNaptanCode": "HUBWHC", "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": "940GZZLUWWL", "lineIdentifier": ["victoria"]}], "lineModeGroups": [{"$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", "modeName": "tube", "lineIdentifier": ["victoria"]}], "status": true, "id": "940GZZLUWWL", "commonName": "Walthamstow Central 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": "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"}, {"$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.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": "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": "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": "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": "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": "Help 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": "Geo", "key": "Zone", "sourceSystemKey": "StaticObjects", "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": "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}]} \ No newline at end of file