From 8ec8b9a13e5dd9985bad30450f60c4f643709e81 Mon Sep 17 00:00:00 2001 From: kenneth Date: Fri, 16 Jan 2026 23:57:29 +0000 Subject: [PATCH] Add @aris/data-source-tfl package TfL data source for tube, overground, and Elizabeth line alerts. - Fetches line statuses and filters to minor/major delays and closures - Sorts alerts by severity, then by proximity to user location - Caches station data after first fetch - Uses arktype for API response validation - Supports API injection for testing Co-authored-by: Ona --- README.md | 21 +- bun.lock | 22 +- .../fixtures/tfl-responses.json | 40509 ++++++++++++++++ packages/aris-data-source-tfl/package.json | 15 + .../scripts/fetch-fixtures.ts | 35 + .../aris-data-source-tfl/src/data-source.ts | 103 + packages/aris-data-source-tfl/src/index.ts | 11 + .../src/integration.test.ts | 206 + packages/aris-data-source-tfl/src/tfl-api.ts | 183 + packages/aris-data-source-tfl/src/types.ts | 32 + 10 files changed, 41132 insertions(+), 5 deletions(-) create mode 100644 packages/aris-data-source-tfl/fixtures/tfl-responses.json create mode 100644 packages/aris-data-source-tfl/package.json create mode 100644 packages/aris-data-source-tfl/scripts/fetch-fixtures.ts create mode 100644 packages/aris-data-source-tfl/src/data-source.ts create mode 100644 packages/aris-data-source-tfl/src/index.ts create mode 100644 packages/aris-data-source-tfl/src/integration.test.ts create mode 100644 packages/aris-data-source-tfl/src/tfl-api.ts create mode 100644 packages/aris-data-source-tfl/src/types.ts diff --git a/README.md b/README.md index baa03c9..3f165ce 100644 --- a/README.md +++ b/README.md @@ -6,10 +6,25 @@ To install dependencies: bun install ``` -To run: +## Packages + +### @aris/data-source-tfl + +TfL (Transport for London) data source for tube, overground, and Elizabeth line alerts. + +#### Testing ```bash -bun run index.ts +cd packages/aris-data-source-tfl +bun run test ``` -This project was created using `bun init` in bun v1.3.6. [Bun](https://bun.com) is a fast all-in-one JavaScript runtime. +#### Fixtures + +Tests use fixture data from real TfL API responses stored in `fixtures/tfl-responses.json`. + +To refresh fixtures: + +```bash +bun run fetch-fixtures +``` diff --git a/bun.lock b/bun.lock index 1690925..18298d6 100644 --- a/bun.lock +++ b/bun.lock @@ -14,11 +14,27 @@ }, }, "packages/aris-core": { - "name": "aris-core", + "name": "@aris/core", "version": "0.0.0", }, + "packages/aris-data-source-tfl": { + "name": "@aris/data-source-tfl", + "version": "0.0.0", + "dependencies": { + "@aris/core": "workspace:*", + "arktype": "^2.1.0", + }, + }, }, "packages": { + "@aris/core": ["@aris/core@workspace:packages/aris-core"], + + "@aris/data-source-tfl": ["@aris/data-source-tfl@workspace:packages/aris-data-source-tfl"], + + "@ark/schema": ["@ark/schema@0.56.0", "", { "dependencies": { "@ark/util": "0.56.0" } }, "sha512-ECg3hox/6Z/nLajxXqNhgPtNdHWC9zNsDyskwO28WinoFEnWow4IsERNz9AnXRhTZJnYIlAJ4uGn3nlLk65vZA=="], + + "@ark/util": ["@ark/util@0.56.0", "", {}, "sha512-BghfRC8b9pNs3vBoDJhcta0/c1J1rsoS1+HgVUreMFPdhz/CRAKReAu57YEllNaSy98rWAdY1gE+gFup7OXpgA=="], + "@oxfmt/darwin-arm64": ["@oxfmt/darwin-arm64@0.24.0", "", { "os": "darwin", "cpu": "arm64" }, "sha512-aYXuGf/yq8nsyEcHindGhiz9I+GEqLkVq8CfPbd+6VE259CpPEH+CaGHEO1j6vIOmNr8KHRq+IAjeRO2uJpb8A=="], "@oxfmt/darwin-x64": ["@oxfmt/darwin-x64@0.24.0", "", { "os": "darwin", "cpu": "x64" }, "sha512-vs3b8Bs53hbiNvcNeBilzE/+IhDTWKjSBB3v/ztr664nZk65j0xr+5IHMBNz3CFppmX7o/aBta2PxY+t+4KoPg=="], @@ -55,7 +71,9 @@ "@types/node": ["@types/node@25.0.9", "", { "dependencies": { "undici-types": "~7.16.0" } }, "sha512-/rpCXHlCWeqClNBwUhDcusJxXYDjZTyE8v5oTO7WbL8eij2nKhUeU89/6xgjU7N4/Vh3He0BtyhJdQbDyhiXAw=="], - "aris-core": ["aris-core@workspace:packages/aris-core"], + "arkregex": ["arkregex@0.0.5", "", { "dependencies": { "@ark/util": "0.56.0" } }, "sha512-ncYjBdLlh5/QnVsAA8De16Tc9EqmYM7y/WU9j+236KcyYNUXogpz3sC4ATIZYzzLxwI+0sEOaQLEmLmRleaEXw=="], + + "arktype": ["arktype@2.1.29", "", { "dependencies": { "@ark/schema": "0.56.0", "@ark/util": "0.56.0", "arkregex": "0.0.5" } }, "sha512-jyfKk4xIOzvYNayqnD8ZJQqOwcrTOUbIU4293yrzAjA3O1dWh61j71ArMQ6tS/u4pD7vabSPe7nG3RCyoXW6RQ=="], "bun-types": ["bun-types@1.3.6", "", { "dependencies": { "@types/node": "*" } }, "sha512-OlFwHcnNV99r//9v5IIOgQ9Uk37gZqrNMCcqEaExdkVq3Avwqok1bJFmvGMCkCE0FqzdY8VMOZpfpR3lwI+CsQ=="], diff --git a/packages/aris-data-source-tfl/fixtures/tfl-responses.json b/packages/aris-data-source-tfl/fixtures/tfl-responses.json new file mode 100644 index 0000000..72262ac --- /dev/null +++ b/packages/aris-data-source-tfl/fixtures/tfl-responses.json @@ -0,0 +1,40509 @@ +{ + "fetchedAt": "2026-01-16T23:30:06.641Z", + "lineStatuses": [ + { + "$type": "Tfl.Api.Presentation.Entities.Line, Tfl.Api.Presentation.Entities", + "id": "central", + "name": "Central", + "modeName": "tube", + "disruptions": [], + "created": "2026-01-13T16:47:17.277Z", + "modified": "2026-01-13T16:47:17.277Z", + "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 due to train cancellations. ", + "created": "0001-01-01T00:00:00", + "validityPeriods": [ + { + "$type": "Tfl.Api.Presentation.Entities.ValidityPeriod, Tfl.Api.Presentation.Entities", + "fromDate": "2026-01-16T18:57:41Z", + "toDate": "2026-01-17T01:29:00Z", + "isNow": true + } + ], + "disruption": { + "$type": "Tfl.Api.Presentation.Entities.Disruption, Tfl.Api.Presentation.Entities", + "category": "RealTime", + "categoryDescription": "RealTime", + "description": "Central Line: Minor delays due to train cancellations. ", + "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": "elizabeth", + "name": "Elizabeth line", + "modeName": "elizabeth-line", + "disruptions": [], + "created": "2026-01-13T16:47:17.277Z", + "modified": "2026-01-13T16:47:17.277Z", + "lineStatuses": [ + { + "$type": "Tfl.Api.Presentation.Entities.LineStatus, Tfl.Api.Presentation.Entities", + "id": 0, + "statusSeverity": 10, + "statusSeverityDescription": "Good Service", + "created": "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": "northern", + "name": "Northern", + "modeName": "tube", + "disruptions": [], + "created": "2026-01-13T16:47:17.277Z", + "modified": "2026-01-13T16:47:17.277Z", + "lineStatuses": [ + { + "$type": "Tfl.Api.Presentation.Entities.LineStatus, Tfl.Api.Presentation.Entities", + "id": 0, + "statusSeverity": 10, + "statusSeverityDescription": "Good Service", + "created": "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" + } + } + ], + "stopPoints": { + "northern": [ + { + "$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", + "naptanId": "940GZZBPSUST", + "modes": [ + "tube" + ], + "icsCode": "1002195", + "stopType": "NaptanMetroStation", + "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": "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_834" + } + ], + "children": [ + { + "$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", + "naptanId": "9400ZZBPSUST", + "indicator": "N/A", + "stopLetter": "N/A", + "modes": [], + "icsCode": "1002195", + "stationNaptan": "940GZZBPSUST", + "lines": [], + "lineGroup": [], + "lineModeGroups": [], + "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": "940GZZLUACY", + "modes": [ + "tube" + ], + "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" + } + ], + "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": "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": "9400ZZLUACY1", + "modes": [], + "icsCode": "1000008", + "stationNaptan": "940GZZLUACY", + "lines": [], + "lineGroup": [], + "lineModeGroups": [], + "status": true, + "id": "9400ZZLUACY1", + "commonName": "Archway Underground Station", + "placeType": "StopPoint", + "additionalProperties": [], + "children": [], + "lat": 0, + "lon": 0 + }, + { + "$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", + "naptanId": "9400ZZLUACY2", + "modes": [], + "icsCode": "1000008", + "stationNaptan": "940GZZLUACY", + "lines": [], + "lineGroup": [], + "lineModeGroups": [], + "status": true, + "id": "9400ZZLUACY2", + "commonName": "Archway Station", + "placeType": "StopPoint", + "additionalProperties": [], + "children": [], + "lat": 0, + "lon": 0 + } + ], + "lat": 51.565478, + "lon": -0.134819 + }, + { + "$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", + "naptanId": "940GZZLUAGL", + "modes": [ + "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" + } + ], + "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": "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_170" + }, + { + "$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_326" + }, + { + "$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_872" + }, + { + "$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": "9400ZZLUAGL1", + "modes": [], + "icsCode": "1000007", + "stationNaptan": "940GZZLUAGL", + "lines": [], + "lineGroup": [], + "lineModeGroups": [], + "status": true, + "id": "9400ZZLUAGL1", + "commonName": "Angel Underground Station", + "placeType": "StopPoint", + "additionalProperties": [], + "children": [], + "lat": 0, + "lon": 0 + }, + { + "$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", + "naptanId": "9400ZZLUAGL2", + "modes": [], + "icsCode": "1000007", + "stationNaptan": "940GZZLUAGL", + "lines": [], + "lineGroup": [], + "lineModeGroups": [], + "status": true, + "id": "9400ZZLUAGL2", + "commonName": "Angel Station", + "placeType": "StopPoint", + "additionalProperties": [], + "children": [], + "lat": 0, + "lon": 0 + } + ], + "lat": 51.53184, + "lon": -0.10635 + }, + { + "$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": "9400ZZLUBLM1", + "modes": [], + "icsCode": "1000012", + "stationNaptan": "940GZZLUBLM", + "hubNaptanCode": "HUBBAL", + "lines": [], + "lineGroup": [], + "lineModeGroups": [], + "status": true, + "id": "9400ZZLUBLM1", + "commonName": "Balham Underground Station", + "placeType": "StopPoint", + "additionalProperties": [], + "children": [], + "lat": 0, + "lon": 0 + }, + { + "$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", + "naptanId": "9400ZZLUBLM2", + "modes": [], + "icsCode": "1000012", + "stationNaptan": "940GZZLUBLM", + "hubNaptanCode": "HUBBAL", + "lines": [], + "lineGroup": [], + "lineModeGroups": [], + "status": true, + "id": "9400ZZLUBLM2", + "commonName": "Balham Station", + "placeType": "StopPoint", + "additionalProperties": [], + "children": [], + "lat": 0, + "lon": 0 + } + ], + "lat": 51.443288, + "lon": -0.152997 + }, + { + "$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": "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" + } + ], + "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": [ + "northern" + ] + }, + { + "$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": [ + "central", + "northern", + "waterloo-city" + ] + } + ], + "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": "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": "9400ZZLUBNK1", + "modes": [], + "icsCode": "1000013", + "stationNaptan": "940GZZLUBNK", + "hubNaptanCode": "HUBBAN", + "lines": [], + "lineGroup": [], + "lineModeGroups": [], + "status": true, + "id": "9400ZZLUBNK1", + "commonName": "Bank Underground Station", + "placeType": "StopPoint", + "additionalProperties": [], + "children": [], + "lat": 51.513356, + "lon": -0.088899 + }, + { + "$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", + "naptanId": "9400ZZLUBNK2", + "modes": [], + "icsCode": "1000013", + "stationNaptan": "940GZZLUBNK", + "hubNaptanCode": "HUBBAN", + "lines": [], + "lineGroup": [], + "lineModeGroups": [], + "status": true, + "id": "9400ZZLUBNK2", + "commonName": "Bank Underground Station", + "placeType": "StopPoint", + "additionalProperties": [], + "children": [], + "lat": 0, + "lon": 0 + }, + { + "$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", + "naptanId": "9400ZZLUBNK4", + "modes": [], + "icsCode": "1000013", + "stationNaptan": "940GZZLUBNK", + "hubNaptanCode": "HUBBAN", + "lines": [], + "lineGroup": [], + "lineModeGroups": [], + "status": true, + "id": "9400ZZLUBNK4", + "commonName": "Bank Underground Station", + "placeType": "StopPoint", + "additionalProperties": [], + "children": [], + "lat": 0, + "lon": 0 + }, + { + "$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", + "naptanId": "9400ZZLUBNK5", + "modes": [], + "icsCode": "1000013", + "stationNaptan": "940GZZLUBNK", + "hubNaptanCode": "HUBBAN", + "lines": [], + "lineGroup": [], + "lineModeGroups": [], + "status": true, + "id": "9400ZZLUBNK5", + "commonName": "Bank Underground Station", + "placeType": "StopPoint", + "additionalProperties": [], + "children": [], + "lat": 0, + "lon": 0 + }, + { + "$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", + "naptanId": "9400ZZLUBNK3", + "modes": [], + "icsCode": "1000013", + "stationNaptan": "940GZZLUBNK", + "hubNaptanCode": "HUBBAN", + "lines": [], + "lineGroup": [], + "lineModeGroups": [], + "status": true, + "id": "9400ZZLUBNK3", + "commonName": "Bank Underground Station", + "placeType": "StopPoint", + "additionalProperties": [], + "children": [], + "lat": 0, + "lon": 0 + }, + { + "$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", + "naptanId": "9400ZZLUBNK8", + "modes": [], + "icsCode": "1000013", + "stationNaptan": "940GZZLUBNK", + "hubNaptanCode": "HUBBAN", + "lines": [], + "lineGroup": [], + "lineModeGroups": [], + "status": true, + "id": "9400ZZLUBNK8", + "commonName": "Bank Underground Station", + "placeType": "StopPoint", + "additionalProperties": [], + "children": [], + "lat": 0, + "lon": 0 + } + ], + "lat": 51.513356, + "lon": -0.088899 + }, + { + "$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", + "naptanId": "940GZZLUBOR", + "modes": [ + "tube" + ], + "icsCode": "1000026", + "stopType": "NaptanMetroStation", + "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": "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": "9400ZZLUBOR1", + "modes": [], + "icsCode": "1000026", + "stationNaptan": "940GZZLUBOR", + "lines": [], + "lineGroup": [], + "lineModeGroups": [], + "status": true, + "id": "9400ZZLUBOR1", + "commonName": "Borough Underground Station", + "placeType": "StopPoint", + "additionalProperties": [], + "children": [], + "lat": 0, + "lon": 0 + }, + { + "$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", + "naptanId": "9400ZZLUBOR2", + "modes": [], + "icsCode": "1000026", + "stationNaptan": "940GZZLUBOR", + "lines": [], + "lineGroup": [], + "lineModeGroups": [], + "status": true, + "id": "9400ZZLUBOR2", + "commonName": "Borough Underground Station", + "placeType": "StopPoint", + "additionalProperties": [], + "children": [], + "lat": 0, + "lon": 0 + } + ], + "lat": 51.501199, + "lon": -0.09337 + }, + { + "$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", + "naptanId": "940GZZLUBTK", + "modes": [ + "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" + } + ], + "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": "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": "9400ZZLUBTK1", + "modes": [], + "icsCode": "1000034", + "stationNaptan": "940GZZLUBTK", + "lines": [], + "lineGroup": [], + "lineModeGroups": [], + "status": true, + "id": "9400ZZLUBTK1", + "commonName": "Burnt Oak Underground Station", + "placeType": "StopPoint", + "additionalProperties": [], + "children": [], + "lat": 0, + "lon": 0 + }, + { + "$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", + "naptanId": "9400ZZLUBTK2", + "modes": [], + "icsCode": "1000034", + "stationNaptan": "940GZZLUBTK", + "lines": [], + "lineGroup": [], + "lineModeGroups": [], + "status": true, + "id": "9400ZZLUBTK2", + "commonName": "Burnt Oak Station", + "placeType": "StopPoint", + "additionalProperties": [], + "children": [], + "lat": 0, + "lon": 0 + } + ], + "lat": 51.602774, + "lon": -0.264048 + }, + { + "$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", + "naptanId": "940GZZLUBTX", + "modes": [ + "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" + } + ], + "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": "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": "9400ZZLUBTX1", + "modes": [], + "icsCode": "1000030", + "stationNaptan": "940GZZLUBTX", + "lines": [], + "lineGroup": [], + "lineModeGroups": [], + "status": true, + "id": "9400ZZLUBTX1", + "commonName": "Brent Cross Underground Station", + "placeType": "StopPoint", + "additionalProperties": [], + "children": [], + "lat": 0, + "lon": 0 + }, + { + "$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", + "naptanId": "9400ZZLUBTX2", + "modes": [], + "icsCode": "1000030", + "stationNaptan": "940GZZLUBTX", + "lines": [], + "lineGroup": [], + "lineModeGroups": [], + "status": true, + "id": "9400ZZLUBTX2", + "commonName": "Brent Cross Station", + "placeType": "StopPoint", + "additionalProperties": [], + "children": [], + "lat": 0, + "lon": 0 + } + ], + "lat": 51.57665, + "lon": -0.213622 + }, + { + "$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", + "naptanId": "940GZZLUBZP", + "modes": [ + "tube" + ], + "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" + } + ], + "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": "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": "9400ZZLUBZP1", + "indicator": "Northbound", + "modes": [], + "icsCode": "1000020", + "stationNaptan": "940GZZLUBZP", + "lines": [], + "lineGroup": [], + "lineModeGroups": [], + "status": true, + "id": "9400ZZLUBZP1", + "commonName": "Belsize Park Underground Station", + "placeType": "StopPoint", + "additionalProperties": [], + "children": [], + "lat": 0, + "lon": 0 + }, + { + "$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", + "naptanId": "9400ZZLUBZP2", + "indicator": "Southbound", + "modes": [], + "icsCode": "1000020", + "stationNaptan": "940GZZLUBZP", + "lines": [], + "lineGroup": [], + "lineModeGroups": [], + "status": true, + "id": "9400ZZLUBZP2", + "commonName": "Belsize Park Underground Station", + "placeType": "StopPoint", + "additionalProperties": [], + "children": [], + "lat": 0, + "lon": 0 + } + ], + "lat": 51.550311, + "lon": -0.164648 + }, + { + "$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", + "naptanId": "940GZZLUCFM", + "modes": [ + "tube" + ], + "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" + } + ], + "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": "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": "9400ZZLUCFM1", + "modes": [], + "icsCode": "1000043", + "stationNaptan": "940GZZLUCFM", + "lines": [], + "lineGroup": [], + "lineModeGroups": [], + "status": true, + "id": "9400ZZLUCFM1", + "commonName": "Chalk Farm Underground Station", + "placeType": "StopPoint", + "additionalProperties": [], + "children": [], + "lat": 0, + "lon": 0 + }, + { + "$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", + "naptanId": "9400ZZLUCFM2", + "modes": [], + "icsCode": "1000043", + "stationNaptan": "940GZZLUCFM", + "lines": [], + "lineGroup": [], + "lineModeGroups": [], + "status": true, + "id": "9400ZZLUCFM2", + "commonName": "Chalk Farm Station", + "placeType": "StopPoint", + "additionalProperties": [], + "children": [], + "lat": 0, + "lon": 0 + } + ], + "lat": 51.544118, + "lon": -0.153388 + }, + { + "$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": "9400ZZLUCHX1", + "modes": [], + "icsCode": "1000045", + "stationNaptan": "940GZZLUCHX", + "hubNaptanCode": "HUBCHX", + "lines": [], + "lineGroup": [], + "lineModeGroups": [], + "status": true, + "id": "9400ZZLUCHX1", + "commonName": "Charing Cross Underground Station", + "placeType": "StopPoint", + "additionalProperties": [], + "children": [], + "lat": 0, + "lon": 0 + }, + { + "$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", + "naptanId": "9400ZZLUCHX2", + "modes": [], + "icsCode": "1000045", + "stationNaptan": "940GZZLUCHX", + "hubNaptanCode": "HUBCHX", + "lines": [], + "lineGroup": [], + "lineModeGroups": [], + "status": true, + "id": "9400ZZLUCHX2", + "commonName": "Charing Cross Underground Station", + "placeType": "StopPoint", + "additionalProperties": [], + "children": [], + "lat": 0, + "lon": 0 + }, + { + "$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", + "naptanId": "9400ZZLUCHX4", + "modes": [], + "icsCode": "1000045", + "stationNaptan": "940GZZLUCHX", + "hubNaptanCode": "HUBCHX", + "lines": [], + "lineGroup": [], + "lineModeGroups": [], + "status": true, + "id": "9400ZZLUCHX4", + "commonName": "Charing Cross Underground Station", + "placeType": "StopPoint", + "additionalProperties": [], + "children": [], + "lat": 0, + "lon": 0 + }, + { + "$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", + "naptanId": "9400ZZLUCHX5", + "modes": [], + "icsCode": "1000045", + "stationNaptan": "940GZZLUCHX", + "hubNaptanCode": "HUBCHX", + "lines": [], + "lineGroup": [], + "lineModeGroups": [], + "status": true, + "id": "9400ZZLUCHX5", + "commonName": "Charing Cross Underground Station", + "placeType": "StopPoint", + "additionalProperties": [], + "children": [], + "lat": 0, + "lon": 0 + } + ], + "lat": 51.50741, + "lon": -0.127277 + }, + { + "$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", + "naptanId": "940GZZLUCND", + "modes": [ + "tube" + ], + "icsCode": "1000054", + "stopType": "NaptanMetroStation", + "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": "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": "9400ZZLUCND1", + "modes": [], + "icsCode": "1000054", + "stationNaptan": "940GZZLUCND", + "lines": [], + "lineGroup": [], + "lineModeGroups": [], + "status": true, + "id": "9400ZZLUCND1", + "commonName": "Colindale Underground Station", + "placeType": "StopPoint", + "additionalProperties": [], + "children": [], + "lat": 0, + "lon": 0 + }, + { + "$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", + "naptanId": "9400ZZLUCND2", + "modes": [], + "icsCode": "1000054", + "stationNaptan": "940GZZLUCND", + "lines": [], + "lineGroup": [], + "lineModeGroups": [], + "status": true, + "id": "9400ZZLUCND2", + "commonName": "Colindale Station", + "placeType": "StopPoint", + "additionalProperties": [], + "children": [], + "lat": 0, + "lon": 0 + } + ], + "lat": 51.595424, + "lon": -0.249919 + }, + { + "$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", + "naptanId": "940GZZLUCPC", + "modes": [ + "tube" + ], + "icsCode": "1000050", + "stopType": "NaptanMetroStation", + "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": "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": "9400ZZLUCPC1", + "modes": [], + "icsCode": "1000050", + "stationNaptan": "940GZZLUCPC", + "lines": [], + "lineGroup": [], + "lineModeGroups": [], + "status": true, + "id": "9400ZZLUCPC1", + "commonName": "Clapham Common Underground Station", + "placeType": "StopPoint", + "additionalProperties": [], + "children": [], + "lat": 0, + "lon": 0 + }, + { + "$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", + "naptanId": "9400ZZLUCPC2", + "modes": [], + "icsCode": "1000050", + "stationNaptan": "940GZZLUCPC", + "lines": [], + "lineGroup": [], + "lineModeGroups": [], + "status": true, + "id": "9400ZZLUCPC2", + "commonName": "Clapham Common", + "placeType": "StopPoint", + "additionalProperties": [], + "children": [], + "lat": 0, + "lon": 0 + } + ], + "lat": 51.461742, + "lon": -0.138317 + }, + { + "$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", + "naptanId": "940GZZLUCPN", + "modes": [ + "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" + } + ], + "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": "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": "9400ZZLUCPN1", + "modes": [], + "icsCode": "1000051", + "stationNaptan": "940GZZLUCPN", + "lines": [], + "lineGroup": [], + "lineModeGroups": [], + "status": true, + "id": "9400ZZLUCPN1", + "commonName": "Clapham North Underground Station", + "placeType": "StopPoint", + "additionalProperties": [], + "children": [], + "lat": 0, + "lon": 0 + }, + { + "$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", + "naptanId": "9400ZZLUCPN2", + "modes": [], + "icsCode": "1000051", + "stationNaptan": "940GZZLUCPN", + "lines": [], + "lineGroup": [], + "lineModeGroups": [], + "status": true, + "id": "9400ZZLUCPN2", + "commonName": "Clapham North", + "placeType": "StopPoint", + "additionalProperties": [], + "children": [], + "lat": 0, + "lon": 0 + } + ], + "lat": 51.465135, + "lon": -0.130016 + }, + { + "$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", + "naptanId": "940GZZLUCPS", + "modes": [ + "tube" + ], + "icsCode": "1000052", + "stopType": "NaptanMetroStation", + "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": "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": "9400ZZLUCPS1", + "modes": [], + "icsCode": "1000052", + "stationNaptan": "940GZZLUCPS", + "lines": [], + "lineGroup": [], + "lineModeGroups": [], + "status": true, + "id": "9400ZZLUCPS1", + "commonName": "Clapham South Underground Station", + "placeType": "StopPoint", + "additionalProperties": [], + "children": [], + "lat": 0, + "lon": 0 + }, + { + "$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", + "naptanId": "9400ZZLUCPS2", + "modes": [], + "icsCode": "1000052", + "stationNaptan": "940GZZLUCPS", + "lines": [], + "lineGroup": [], + "lineModeGroups": [], + "status": true, + "id": "9400ZZLUCPS2", + "commonName": "Clapham South", + "placeType": "StopPoint", + "additionalProperties": [], + "children": [], + "lat": 0, + "lon": 0 + } + ], + "lat": 51.452654, + "lon": -0.147582 + }, + { + "$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", + "naptanId": "940GZZLUCSD", + "modes": [ + "tube" + ], + "icsCode": "1000055", + "stopType": "NaptanMetroStation", + "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": "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": "9400ZZLUCSD1", + "modes": [], + "icsCode": "1000055", + "stationNaptan": "940GZZLUCSD", + "lines": [], + "lineGroup": [], + "lineModeGroups": [], + "status": true, + "id": "9400ZZLUCSD1", + "commonName": "Colliers Wood Underground Station", + "placeType": "StopPoint", + "additionalProperties": [], + "children": [], + "lat": 0, + "lon": 0 + }, + { + "$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", + "naptanId": "9400ZZLUCSD2", + "modes": [], + "icsCode": "1000055", + "stationNaptan": "940GZZLUCSD", + "lines": [], + "lineGroup": [], + "lineModeGroups": [], + "status": true, + "id": "9400ZZLUCSD2", + "commonName": "Colliers Wood Station", + "placeType": "StopPoint", + "additionalProperties": [], + "children": [], + "lat": 0, + "lon": 0 + } + ], + "lat": 51.41816, + "lon": -0.178086 + }, + { + "$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", + "naptanId": "940GZZLUCTN", + "modes": [ + "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" + } + ], + "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": "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_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": "BikePoints_885" + }, + { + "$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": "9400ZZLUCTN1", + "modes": [], + "icsCode": "1000036", + "stationNaptan": "940GZZLUCTN", + "lines": [], + "lineGroup": [], + "lineModeGroups": [], + "status": true, + "id": "9400ZZLUCTN1", + "commonName": "Camden Town Underground Station", + "placeType": "StopPoint", + "additionalProperties": [], + "children": [], + "lat": 0, + "lon": 0 + }, + { + "$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", + "naptanId": "9400ZZLUCTN2", + "modes": [], + "icsCode": "1000036", + "stationNaptan": "940GZZLUCTN", + "lines": [], + "lineGroup": [], + "lineModeGroups": [], + "status": true, + "id": "9400ZZLUCTN2", + "commonName": "Camden Town Underground Station", + "placeType": "StopPoint", + "additionalProperties": [], + "children": [], + "lat": 0, + "lon": 0 + }, + { + "$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", + "naptanId": "9400ZZLUCTN3", + "modes": [], + "icsCode": "1000036", + "stationNaptan": "940GZZLUCTN", + "lines": [], + "lineGroup": [], + "lineModeGroups": [], + "status": true, + "id": "9400ZZLUCTN3", + "commonName": "Camden Town Underground Station", + "placeType": "StopPoint", + "additionalProperties": [], + "children": [], + "lat": 0, + "lon": 0 + }, + { + "$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", + "naptanId": "9400ZZLUCTN4", + "modes": [], + "icsCode": "1000036", + "stationNaptan": "940GZZLUCTN", + "lines": [], + "lineGroup": [], + "lineModeGroups": [], + "status": true, + "id": "9400ZZLUCTN4", + "commonName": "Camden Town Underground Station", + "placeType": "StopPoint", + "additionalProperties": [], + "children": [], + "lat": 0, + "lon": 0 + } + ], + "lat": 51.539292, + "lon": -0.14274 + }, + { + "$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": "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" + }, + { + "$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", + "category": "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": "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": "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" + } + ], + "children": [ + { + "$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", + "naptanId": "9400ZZLUEAC1", + "modes": [], + "icsCode": "1000073", + "stationNaptan": "940GZZLUEAC", + "hubNaptanCode": "HUBEPH", + "lines": [], + "lineGroup": [], + "lineModeGroups": [], + "status": true, + "id": "9400ZZLUEAC1", + "commonName": "Elephant & Castle Underground Station", + "placeType": "StopPoint", + "additionalProperties": [], + "children": [], + "lat": 0, + "lon": 0 + }, + { + "$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", + "naptanId": "9400ZZLUEAC2", + "modes": [], + "icsCode": "1000073", + "stationNaptan": "940GZZLUEAC", + "hubNaptanCode": "HUBEPH", + "lines": [], + "lineGroup": [], + "lineModeGroups": [], + "status": true, + "id": "9400ZZLUEAC2", + "commonName": "Elephant & Castle Underground Station", + "placeType": "StopPoint", + "additionalProperties": [], + "children": [], + "lat": 0, + "lon": 0 + }, + { + "$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", + "naptanId": "9400ZZLUEAC3", + "modes": [], + "icsCode": "1000073", + "stationNaptan": "940GZZLUEAC", + "hubNaptanCode": "HUBEPH", + "lines": [], + "lineGroup": [], + "lineModeGroups": [], + "status": true, + "id": "9400ZZLUEAC3", + "commonName": "Elephant & Castle Underground Station", + "placeType": "StopPoint", + "additionalProperties": [], + "children": [], + "lat": 0, + "lon": 0 + }, + { + "$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", + "naptanId": "9400ZZLUEAC4", + "modes": [], + "icsCode": "1000073", + "stationNaptan": "940GZZLUEAC", + "hubNaptanCode": "HUBEPH", + "lines": [], + "lineGroup": [], + "lineModeGroups": [], + "status": true, + "id": "9400ZZLUEAC4", + "commonName": "Elephant & Castle Underground Station", + "placeType": "StopPoint", + "additionalProperties": [], + "children": [], + "lat": 0, + "lon": 0 + } + ], + "lat": 51.494536, + "lon": -0.100606 + }, + { + "$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", + "naptanId": "940GZZLUEFY", + "modes": [ + "tube" + ], + "icsCode": "1000067", + "stopType": "NaptanMetroStation", + "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": "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": "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": "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": "Help Points", + "sourceSystemKey": "StaticObjects", + "value": "0 on 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": "9400ZZLUEFY1", + "modes": [], + "icsCode": "1000067", + "stationNaptan": "940GZZLUEFY", + "lines": [], + "lineGroup": [], + "lineModeGroups": [], + "status": true, + "id": "9400ZZLUEFY1", + "commonName": "East Finchley Underground Station", + "placeType": "StopPoint", + "additionalProperties": [], + "children": [], + "lat": 0, + "lon": 0 + }, + { + "$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", + "naptanId": "9400ZZLUEFY2", + "modes": [], + "icsCode": "1000067", + "stationNaptan": "940GZZLUEFY", + "lines": [], + "lineGroup": [], + "lineModeGroups": [], + "status": true, + "id": "9400ZZLUEFY2", + "commonName": "East Finchley Underground Station", + "placeType": "StopPoint", + "additionalProperties": [], + "children": [], + "lat": 0, + "lon": 0 + } + ], + "lat": 51.587131, + "lon": -0.165012 + }, + { + "$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", + "naptanId": "940GZZLUEGW", + "modes": [ + "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" + } + ], + "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": "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": "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": "Geo", + "key": "Zone", + "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": "LimitedCapacityLift", + "sourceSystemKey": "LRAD", + "value": "No" + }, + { + "$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", + "category": "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_5645" + } + ], + "children": [ + { + "$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", + "naptanId": "9400ZZLUEGW1", + "modes": [], + "icsCode": "1000070", + "stationNaptan": "940GZZLUEGW", + "lines": [], + "lineGroup": [], + "lineModeGroups": [], + "status": true, + "id": "9400ZZLUEGW1", + "commonName": "Edgware Underground Station", + "placeType": "StopPoint", + "additionalProperties": [], + "children": [], + "lat": 0, + "lon": 0 + } + ], + "lat": 51.613653, + "lon": -0.274928 + }, + { + "$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": "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" + } + ], + "lineGroup": [ + { + "$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": [ + "circle", + "district" + ] + }, + { + "$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": [ + "bakerloo", + "circle", + "district", + "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": "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": "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": "9400ZZLUEMB1", + "modes": [], + "icsCode": "1000075", + "stationNaptan": "940GZZLUEMB", + "lines": [], + "lineGroup": [], + "lineModeGroups": [], + "status": true, + "id": "9400ZZLUEMB1", + "commonName": "Embankment Underground Station", + "placeType": "StopPoint", + "additionalProperties": [], + "children": [], + "lat": 0, + "lon": 0 + }, + { + "$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", + "naptanId": "9400ZZLUEMB2", + "modes": [], + "icsCode": "1000075", + "stationNaptan": "940GZZLUEMB", + "lines": [], + "lineGroup": [], + "lineModeGroups": [], + "status": true, + "id": "9400ZZLUEMB2", + "commonName": "Embankment Underground Station", + "placeType": "StopPoint", + "additionalProperties": [], + "children": [], + "lat": 0, + "lon": 0 + }, + { + "$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", + "naptanId": "9400ZZLUEMB3", + "modes": [], + "icsCode": "1000075", + "stationNaptan": "940GZZLUEMB", + "lines": [], + "lineGroup": [], + "lineModeGroups": [], + "status": true, + "id": "9400ZZLUEMB3", + "commonName": "Embankment Underground Station", + "placeType": "StopPoint", + "additionalProperties": [], + "children": [], + "lat": 0, + "lon": 0 + }, + { + "$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", + "naptanId": "9400ZZLUEMB4", + "modes": [], + "icsCode": "1000075", + "stationNaptan": "940GZZLUEMB", + "lines": [], + "lineGroup": [], + "lineModeGroups": [], + "status": true, + "id": "9400ZZLUEMB4", + "commonName": "Embankment Underground Station", + "placeType": "StopPoint", + "additionalProperties": [], + "children": [], + "lat": 0, + "lon": 0 + }, + { + "$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", + "naptanId": "9400ZZLUEMB5", + "modes": [], + "icsCode": "1000075", + "stationNaptan": "940GZZLUEMB", + "lines": [], + "lineGroup": [], + "lineModeGroups": [], + "status": true, + "id": "9400ZZLUEMB5", + "commonName": "Embankment Underground Station", + "placeType": "StopPoint", + "additionalProperties": [], + "children": [], + "lat": 0, + "lon": 0 + }, + { + "$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", + "naptanId": "9400ZZLUEMB6", + "modes": [], + "icsCode": "1000075", + "stationNaptan": "940GZZLUEMB", + "lines": [], + "lineGroup": [], + "lineModeGroups": [], + "status": true, + "id": "9400ZZLUEMB6", + "commonName": "Embankment Underground Station", + "placeType": "StopPoint", + "additionalProperties": [], + "children": [], + "lat": 0, + "lon": 0 + } + ], + "lat": 51.507058, + "lon": -0.122666 + }, + { + "$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" + }, + { + "$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", + "category": "NearestPlaces", + "key": "SourceSystemPlaceId", + "sourceSystemKey": "StaticObjects", + "value": "TaxiRank_4557" + } + ], + "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": 51.527824, + "lon": -0.131846 + }, + { + "$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": 0, + "lon": 0 + }, + { + "$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, + "lon": 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, + "lon": 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, + "lon": 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, + "lon": 0 + } + ], + "lat": 51.527824, + "lon": -0.131846 + }, + { + "$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", + "naptanId": "940GZZLUFYC", + "modes": [ + "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" + } + ], + "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": "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": "9400ZZLUFYC1", + "modes": [], + "icsCode": "1000081", + "stationNaptan": "940GZZLUFYC", + "lines": [], + "lineGroup": [], + "lineModeGroups": [], + "status": true, + "id": "9400ZZLUFYC1", + "commonName": "Finchley Central Underground Station", + "placeType": "StopPoint", + "additionalProperties": [], + "children": [], + "lat": 0, + "lon": 0 + }, + { + "$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", + "naptanId": "9400ZZLUFYC2", + "modes": [], + "icsCode": "1000081", + "stationNaptan": "940GZZLUFYC", + "lines": [], + "lineGroup": [], + "lineModeGroups": [], + "status": true, + "id": "9400ZZLUFYC2", + "commonName": "Finchley Central Underground Station", + "placeType": "StopPoint", + "additionalProperties": [], + "children": [], + "lat": 0, + "lon": 0 + } + ], + "lat": 51.600921, + "lon": -0.192527 + }, + { + "$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", + "naptanId": "940GZZLUGDG", + "modes": [ + "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" + } + ], + "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": "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": "BikePoints_776" + }, + { + "$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": "9400ZZLUGDG1", + "modes": [], + "icsCode": "1000089", + "stationNaptan": "940GZZLUGDG", + "lines": [], + "lineGroup": [], + "lineModeGroups": [], + "status": true, + "id": "9400ZZLUGDG1", + "commonName": "Goodge Street Underground Station", + "placeType": "StopPoint", + "additionalProperties": [], + "children": [], + "lat": 0, + "lon": 0 + }, + { + "$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", + "naptanId": "9400ZZLUGDG2", + "modes": [], + "icsCode": "1000089", + "stationNaptan": "940GZZLUGDG", + "lines": [], + "lineGroup": [], + "lineModeGroups": [], + "status": true, + "id": "9400ZZLUGDG2", + "commonName": "Goodge Street Station", + "placeType": "StopPoint", + "additionalProperties": [], + "children": [], + "lat": 0, + "lon": 0 + } + ], + "lat": 51.520599, + "lon": -0.134361 + }, + { + "$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", + "naptanId": "940GZZLUGGN", + "modes": [ + "tube" + ], + "icsCode": "1000087", + "stopType": "NaptanMetroStation", + "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": "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": "9400ZZLUGGN1", + "modes": [], + "icsCode": "1000087", + "stationNaptan": "940GZZLUGGN", + "lines": [], + "lineGroup": [], + "lineModeGroups": [], + "status": true, + "id": "9400ZZLUGGN1", + "commonName": "Golders Green Underground Station", + "placeType": "StopPoint", + "additionalProperties": [], + "children": [], + "lat": 0, + "lon": 0 + }, + { + "$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", + "naptanId": "9400ZZLUGGN2", + "modes": [], + "icsCode": "1000087", + "stationNaptan": "940GZZLUGGN", + "lines": [], + "lineGroup": [], + "lineModeGroups": [], + "status": true, + "id": "9400ZZLUGGN2", + "commonName": "Golders Green Underground Station", + "placeType": "StopPoint", + "additionalProperties": [], + "children": [], + "lat": 0, + "lon": 0 + } + ], + "lat": 51.572259, + "lon": -0.194039 + }, + { + "$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", + "naptanId": "940GZZLUHBT", + "modes": [ + "tube" + ], + "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" + } + ], + "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": "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": "9400ZZLUHBT1", + "modes": [], + "icsCode": "1000107", + "stationNaptan": "940GZZLUHBT", + "lines": [], + "lineGroup": [], + "lineModeGroups": [], + "status": true, + "id": "9400ZZLUHBT1", + "commonName": "High Barnet Underground Station", + "placeType": "StopPoint", + "additionalProperties": [], + "children": [], + "lat": 0, + "lon": 0 + } + ], + "lat": 51.650541, + "lon": -0.194298 + }, + { + "$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", + "naptanId": "940GZZLUHCL", + "modes": [ + "tube" + ], + "icsCode": "1000106", + "stopType": "NaptanMetroStation", + "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": "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": "9400ZZLUHCL1", + "modes": [], + "icsCode": "1000106", + "stationNaptan": "940GZZLUHCL", + "lines": [], + "lineGroup": [], + "lineModeGroups": [], + "status": true, + "id": "9400ZZLUHCL1", + "commonName": "Hendon Central Underground Station", + "placeType": "StopPoint", + "additionalProperties": [], + "children": [], + "lat": 0, + "lon": 0 + }, + { + "$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", + "naptanId": "9400ZZLUHCL2", + "modes": [], + "icsCode": "1000106", + "stationNaptan": "940GZZLUHCL", + "lines": [], + "lineGroup": [], + "lineModeGroups": [], + "status": true, + "id": "9400ZZLUHCL2", + "commonName": "Hendon Central Station", + "placeType": "StopPoint", + "additionalProperties": [], + "children": [], + "lat": 0, + "lon": 0 + } + ], + "lat": 51.583301, + "lon": -0.226424 + }, + { + "$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", + "naptanId": "940GZZLUHGT", + "modes": [ + "tube" + ], + "icsCode": "1000109", + "stopType": "NaptanMetroStation", + "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": "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": "Address", + "key": "Address", + "sourceSystemKey": "StaticObjects", + "value": "Highgate Station,London Underground Ltd.,Archway Rd,London,N6 5UA" + }, + { + "$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.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": "Facility", + "key": "Help Points", + "sourceSystemKey": "StaticObjects", + "value": "0 on platforms, 0 in ticket halls, 0 elsewhere" + }, + { + "$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", + "category": "Facility", + "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": "9400ZZLUHGT1", + "modes": [], + "icsCode": "1000109", + "stationNaptan": "940GZZLUHGT", + "lines": [], + "lineGroup": [], + "lineModeGroups": [], + "status": true, + "id": "9400ZZLUHGT1", + "commonName": "Highgate Underground Station", + "placeType": "StopPoint", + "additionalProperties": [], + "children": [], + "lat": 0, + "lon": 0 + }, + { + "$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", + "naptanId": "9400ZZLUHGT2", + "modes": [], + "icsCode": "1000109", + "stationNaptan": "940GZZLUHGT", + "lines": [], + "lineGroup": [], + "lineModeGroups": [], + "status": true, + "id": "9400ZZLUHGT2", + "commonName": "Highgate", + "placeType": "StopPoint", + "additionalProperties": [], + "children": [], + "lat": 0, + "lon": 0 + } + ], + "lat": 51.577532, + "lon": -0.145857 + }, + { + "$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", + "naptanId": "940GZZLUHTD", + "modes": [ + "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" + } + ], + "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": "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": "9400ZZLUHTD1", + "indicator": "Northbound", + "modes": [], + "icsCode": "1000098", + "stationNaptan": "940GZZLUHTD", + "lines": [], + "lineGroup": [], + "lineModeGroups": [], + "status": true, + "id": "9400ZZLUHTD1", + "commonName": "Hampstead Underground Station", + "placeType": "StopPoint", + "additionalProperties": [], + "children": [], + "lat": 0, + "lon": 0 + }, + { + "$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", + "naptanId": "9400ZZLUHTD2", + "indicator": "Southbound", + "modes": [], + "icsCode": "1000098", + "stationNaptan": "940GZZLUHTD", + "lines": [], + "lineGroup": [], + "lineModeGroups": [], + "status": true, + "id": "9400ZZLUHTD2", + "commonName": "Hampstead Underground Station", + "placeType": "StopPoint", + "additionalProperties": [], + "children": [], + "lat": 51.556239, + "lon": -0.177464 + } + ], + "lat": 51.556239, + "lon": -0.177464 + }, + { + "$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", + "naptanId": "940GZZLUKNG", + "modes": [ + "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" + } + ], + "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": "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": "9400ZZLUKNG1", + "modes": [], + "icsCode": "1000121", + "stationNaptan": "940GZZLUKNG", + "lines": [], + "lineGroup": [], + "lineModeGroups": [], + "status": true, + "id": "9400ZZLUKNG1", + "commonName": "Kennington Underground Station", + "placeType": "StopPoint", + "additionalProperties": [], + "children": [], + "lat": 0, + "lon": 0 + }, + { + "$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", + "naptanId": "9400ZZLUKNG2", + "modes": [], + "icsCode": "1000121", + "stationNaptan": "940GZZLUKNG", + "lines": [], + "lineGroup": [], + "lineModeGroups": [], + "status": true, + "id": "9400ZZLUKNG2", + "commonName": "Kennington Underground Station", + "placeType": "StopPoint", + "additionalProperties": [], + "children": [], + "lat": 0, + "lon": 0 + } + ], + "lat": 51.488337, + "lon": -0.105963 + }, + { + "$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": "9400ZZLUKSH1", + "modes": [], + "icsCode": "1000123", + "stationNaptan": "940GZZLUKSH", + "hubNaptanCode": "HUBKTN", + "lines": [], + "lineGroup": [], + "lineModeGroups": [], + "status": true, + "id": "9400ZZLUKSH1", + "commonName": "Kentish Town Underground Station", + "placeType": "StopPoint", + "additionalProperties": [], + "children": [], + "lat": 0, + "lon": 0 + }, + { + "$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", + "naptanId": "9400ZZLUKSH2", + "modes": [], + "icsCode": "1000123", + "stationNaptan": "940GZZLUKSH", + "hubNaptanCode": "HUBKTN", + "lines": [], + "lineGroup": [], + "lineModeGroups": [], + "status": true, + "id": "9400ZZLUKSH2", + "commonName": "Kentish Town Underground Station", + "placeType": "StopPoint", + "additionalProperties": [], + "children": [], + "lat": 0, + "lon": 0 + } + ], + "lat": 51.550312, + "lon": -0.140733 + }, + { + "$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, + "lon": 0 + }, + { + "$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", + "naptanId": "9400ZZLUKSX8", + "modes": [], + "icsCode": "1000129", + "stationNaptan": "940GZZLUKSX", + "hubNaptanCode": "HUBKGX", + "lines": [], + "lineGroup": [], + "lineModeGroups": [], + "status": true, + "id": "9400ZZLUKSX8", + "commonName": "King's Cross St. Pancras Underground Station", + "placeType": "StopPoint", + "additionalProperties": [], + "children": [], + "lat": 0, + "lon": 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, + "lon": 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, + "lon": 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, + "lon": 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, + "lon": 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, + "lon": 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, + "lon": 0 + } + ], + "lat": 51.530663, + "lon": -0.123194 + }, + { + "$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": "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": "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": "9400ZZLULNB2", + "modes": [], + "icsCode": "1000139", + "stationNaptan": "940GZZLULNB", + "hubNaptanCode": "HUBLBG", + "lines": [], + "lineGroup": [], + "lineModeGroups": [], + "status": true, + "id": "9400ZZLULNB2", + "commonName": "London Bridge Underground Station", + "placeType": "StopPoint", + "additionalProperties": [], + "children": [], + "lat": 0, + "lon": 0 + }, + { + "$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", + "naptanId": "9400ZZLULNB3", + "modes": [], + "icsCode": "1000139", + "stationNaptan": "940GZZLULNB", + "hubNaptanCode": "HUBLBG", + "lines": [], + "lineGroup": [], + "lineModeGroups": [], + "status": true, + "id": "9400ZZLULNB3", + "commonName": "London Bridge Station", + "placeType": "StopPoint", + "additionalProperties": [], + "children": [], + "lat": 0, + "lon": 0 + }, + { + "$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", + "naptanId": "9400ZZLULNB1", + "modes": [], + "icsCode": "1000139", + "stationNaptan": "940GZZLULNB", + "hubNaptanCode": "HUBLBG", + "lines": [], + "lineGroup": [], + "lineModeGroups": [], + "status": true, + "id": "9400ZZLULNB1", + "commonName": "London Bridge Underground Station", + "placeType": "StopPoint", + "additionalProperties": [], + "children": [], + "lat": 0, + "lon": 0 + }, + { + "$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", + "naptanId": "9400ZZLULNB4", + "modes": [], + "icsCode": "1000139", + "stationNaptan": "940GZZLULNB", + "hubNaptanCode": "HUBLBG", + "lines": [], + "lineGroup": [], + "lineModeGroups": [], + "status": true, + "id": "9400ZZLULNB4", + "commonName": "London Bridge Station", + "placeType": "StopPoint", + "additionalProperties": [], + "children": [], + "lat": 0, + "lon": 0 + } + ], + "lat": 51.505721, + "lon": -0.088873 + }, + { + "$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", + "naptanId": "940GZZLULSQ", + "modes": [ + "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": "piccadilly", + "name": "Piccadilly", + "uri": "/Line/piccadilly", + "type": "Line", + "crowding": { + "$type": "Tfl.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", + "stationAtcoCode": "940GZZLULSQ", + "lineIdentifier": [ + "piccadilly" + ] + } + ], + "lineModeGroups": [ + { + "$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": "9400ZZLULSQ1", + "modes": [], + "icsCode": "1000135", + "stationNaptan": "940GZZLULSQ", + "lines": [], + "lineGroup": [], + "lineModeGroups": [], + "status": true, + "id": "9400ZZLULSQ1", + "commonName": "Leicester Square Underground Station", + "placeType": "StopPoint", + "additionalProperties": [], + "children": [], + "lat": 0, + "lon": 0 + }, + { + "$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", + "naptanId": "9400ZZLULSQ2", + "modes": [], + "icsCode": "1000135", + "stationNaptan": "940GZZLULSQ", + "lines": [], + "lineGroup": [], + "lineModeGroups": [], + "status": true, + "id": "9400ZZLULSQ2", + "commonName": "Leicester Square Underground Station", + "placeType": "StopPoint", + "additionalProperties": [], + "children": [], + "lat": 0, + "lon": 0 + }, + { + "$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", + "naptanId": "9400ZZLULSQ3", + "modes": [], + "icsCode": "1000135", + "stationNaptan": "940GZZLULSQ", + "lines": [], + "lineGroup": [], + "lineModeGroups": [], + "status": true, + "id": "9400ZZLULSQ3", + "commonName": "Leicester Square Underground Station", + "placeType": "StopPoint", + "additionalProperties": [], + "children": [], + "lat": 0, + "lon": 0 + }, + { + "$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", + "naptanId": "9400ZZLULSQ4", + "modes": [], + "icsCode": "1000135", + "stationNaptan": "940GZZLULSQ", + "lines": [], + "lineGroup": [], + "lineModeGroups": [], + "status": true, + "id": "9400ZZLULSQ4", + "commonName": "Leicester Square Underground Station", + "placeType": "StopPoint", + "additionalProperties": [], + "children": [], + "lat": 0, + "lon": 0 + } + ], + "lat": 51.511386, + "lon": -0.128426 + }, + { + "$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", + "naptanId": "940GZZLUMDN", + "modes": [ + "tube" + ], + "icsCode": "1000151", + "stopType": "NaptanMetroStation", + "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": "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": "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": "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": "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": "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": "Facility", + "key": "Cash Machines", + "sourceSystemKey": "StaticObjects", + "value": "0" + }, + { + "$type": "Tfl.Api.Presentation.Entities.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": "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": "9400ZZLUMDN2", + "modes": [], + "icsCode": "1000151", + "stationNaptan": "940GZZLUMDN", + "lines": [], + "lineGroup": [], + "lineModeGroups": [], + "status": true, + "id": "9400ZZLUMDN2", + "commonName": "Morden Underground Station", + "placeType": "StopPoint", + "additionalProperties": [], + "children": [], + "lat": 0, + "lon": 0 + } + ], + "lat": 51.402142, + "lon": -0.194839 + }, + { + "$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": "circle", + "name": "Circle", + "uri": "/Line/circle", + "type": "Line", + "crowding": { + "$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities" + }, + "routeType": "Unknown", + "status": "Unknown" + }, + { + "$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", + "id": "hammersmith-city", + "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" + } + ], + "lineGroup": [ + { + "$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", + "stationAtcoCode": "940GZZLUMGT", + "lineIdentifier": [ + "circle", + "hammersmith-city", + "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": [ + "circle", + "hammersmith-city", + "metropolitan", + "northern" + ] + } + ], + "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": "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": "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": "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": "9400ZZLUMGT1", + "modes": [], + "icsCode": "1000149", + "stationNaptan": "940GZZLUMGT", + "hubNaptanCode": "HUBZMG", + "lines": [], + "lineGroup": [], + "lineModeGroups": [], + "status": true, + "id": "9400ZZLUMGT1", + "commonName": "Moorgate Underground Station", + "placeType": "StopPoint", + "additionalProperties": [], + "children": [], + "lat": 0, + "lon": 0 + }, + { + "$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", + "naptanId": "9400ZZLUMGT2", + "modes": [], + "icsCode": "1000149", + "stationNaptan": "940GZZLUMGT", + "hubNaptanCode": "HUBZMG", + "lines": [], + "lineGroup": [], + "lineModeGroups": [], + "status": true, + "id": "9400ZZLUMGT2", + "commonName": "Moorgate Underground Station", + "placeType": "StopPoint", + "additionalProperties": [], + "children": [], + "lat": 0, + "lon": 0 + }, + { + "$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", + "naptanId": "9400ZZLUMGT3", + "modes": [], + "icsCode": "1000149", + "stationNaptan": "940GZZLUMGT", + "hubNaptanCode": "HUBZMG", + "lines": [], + "lineGroup": [], + "lineModeGroups": [], + "status": true, + "id": "9400ZZLUMGT3", + "commonName": "Moorgate Underground Station", + "placeType": "StopPoint", + "additionalProperties": [], + "children": [], + "lat": 0, + "lon": 0 + }, + { + "$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", + "naptanId": "9400ZZLUMGT4", + "modes": [], + "icsCode": "1000149", + "stationNaptan": "940GZZLUMGT", + "hubNaptanCode": "HUBZMG", + "lines": [], + "lineGroup": [], + "lineModeGroups": [], + "status": true, + "id": "9400ZZLUMGT4", + "commonName": "Moorgate Underground Station", + "placeType": "StopPoint", + "additionalProperties": [], + "children": [], + "lat": 0, + "lon": 0 + } + ], + "lat": 51.518176, + "lon": -0.088322 + }, + { + "$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", + "naptanId": "940GZZLUMHL", + "modes": [ + "tube" + ], + "icsCode": "1000147", + "stopType": "NaptanMetroStation", + "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": "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": "9400ZZLUMHL1", + "modes": [], + "icsCode": "1000147", + "stationNaptan": "940GZZLUMHL", + "lines": [], + "lineGroup": [], + "lineModeGroups": [], + "status": true, + "id": "9400ZZLUMHL1", + "commonName": "Mill Hill East Underground Station", + "placeType": "StopPoint", + "additionalProperties": [], + "children": [], + "lat": 0, + "lon": 0 + } + ], + "lat": 51.608229, + "lon": -0.209986 + }, + { + "$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", + "naptanId": "940GZZLUMTC", + "modes": [ + "tube" + ], + "icsCode": "1000152", + "stopType": "NaptanMetroStation", + "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": "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": "BikePoints_873" + }, + { + "$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": "9400ZZLUMTC1", + "modes": [], + "icsCode": "1000152", + "stationNaptan": "940GZZLUMTC", + "lines": [], + "lineGroup": [], + "lineModeGroups": [], + "status": true, + "id": "9400ZZLUMTC1", + "commonName": "Mornington Crescent Underground Station", + "placeType": "StopPoint", + "additionalProperties": [], + "children": [], + "lat": 0, + "lon": 0 + }, + { + "$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", + "naptanId": "9400ZZLUMTC2", + "modes": [], + "icsCode": "1000152", + "stationNaptan": "940GZZLUMTC", + "lines": [], + "lineGroup": [], + "lineModeGroups": [], + "status": true, + "id": "9400ZZLUMTC2", + "commonName": "Mornington Crescent", + "placeType": "StopPoint", + "additionalProperties": [], + "children": [], + "lat": 0, + "lon": 0 + } + ], + "lat": 51.534679, + "lon": -0.138789 + }, + { + "$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_50" + }, + { + "$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": "BikePoints_865" + }, + { + "$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": "9400ZZLUODS1", + "modes": [], + "icsCode": "1000169", + "stationNaptan": "940GZZLUODS", + "hubNaptanCode": "HUBOLD", + "lines": [], + "lineGroup": [], + "lineModeGroups": [], + "status": true, + "id": "9400ZZLUODS1", + "commonName": "Old Street Underground Station", + "placeType": "StopPoint", + "additionalProperties": [], + "children": [], + "lat": 0, + "lon": 0 + }, + { + "$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", + "naptanId": "9400ZZLUODS2", + "modes": [], + "icsCode": "1000169", + "stationNaptan": "940GZZLUODS", + "hubNaptanCode": "HUBOLD", + "lines": [], + "lineGroup": [], + "lineModeGroups": [], + "status": true, + "id": "9400ZZLUODS2", + "commonName": "Old Street Station", + "placeType": "StopPoint", + "additionalProperties": [], + "children": [], + "lat": 0, + "lon": 0 + } + ], + "lat": 51.525864, + "lon": -0.08777 + }, + { + "$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", + "naptanId": "940GZZLUOVL", + "modes": [ + "tube" + ], + "icsCode": "1000172", + "stopType": "NaptanMetroStation", + "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": "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": "9400ZZLUOVL1", + "modes": [], + "icsCode": "1000172", + "stationNaptan": "940GZZLUOVL", + "lines": [], + "lineGroup": [], + "lineModeGroups": [], + "status": true, + "id": "9400ZZLUOVL1", + "commonName": "Oval Underground Station", + "placeType": "StopPoint", + "additionalProperties": [], + "children": [], + "lat": 0, + "lon": 0 + }, + { + "$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", + "naptanId": "9400ZZLUOVL2", + "modes": [], + "icsCode": "1000172", + "stationNaptan": "940GZZLUOVL", + "lines": [], + "lineGroup": [], + "lineModeGroups": [], + "status": true, + "id": "9400ZZLUOVL2", + "commonName": "Oval Underground Station", + "placeType": "StopPoint", + "additionalProperties": [], + "children": [], + "lat": 0, + "lon": 0 + } + ], + "lat": 51.48185, + "lon": -0.112439 + }, + { + "$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", + "naptanId": "940GZZLUSKW", + "modes": [ + "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": "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", + "stationAtcoCode": "940GZZLUSKW", + "lineIdentifier": [ + "victoria" + ] + } + ], + "lineModeGroups": [ + { + "$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, + "lon": 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, + "lon": 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, + "lon": 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, + "lon": 0 + } + ], + "lat": 51.472184, + "lon": -0.122644 + }, + { + "$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", + "naptanId": "940GZZLUSWN", + "modes": [ + "tube" + ], + "icsCode": "1000216", + "stopType": "NaptanMetroStation", + "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": "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": "9400ZZLUSWN1", + "modes": [], + "icsCode": "1000216", + "stationNaptan": "940GZZLUSWN", + "lines": [], + "lineGroup": [], + "lineModeGroups": [], + "status": true, + "id": "9400ZZLUSWN1", + "commonName": "South Wimbledon Underground Station", + "placeType": "StopPoint", + "additionalProperties": [], + "children": [], + "lat": 0, + "lon": 0 + }, + { + "$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", + "naptanId": "9400ZZLUSWN2", + "modes": [], + "icsCode": "1000216", + "stationNaptan": "940GZZLUSWN", + "lines": [], + "lineGroup": [], + "lineModeGroups": [], + "status": true, + "id": "9400ZZLUSWN2", + "commonName": "South Wimbledon Station", + "placeType": "StopPoint", + "additionalProperties": [], + "children": [], + "lat": 0, + "lon": 0 + } + ], + "lat": 51.415309, + "lon": -0.192005 + }, + { + "$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", + "naptanId": "940GZZLUTAW", + "modes": [ + "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" + } + ], + "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": "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": "9400ZZLUTAW1", + "modes": [], + "icsCode": "1000237", + "stationNaptan": "940GZZLUTAW", + "lines": [], + "lineGroup": [], + "lineModeGroups": [], + "status": true, + "id": "9400ZZLUTAW1", + "commonName": "Totteridge & Whetstone Underground Station", + "placeType": "StopPoint", + "additionalProperties": [], + "children": [], + "lat": 0, + "lon": 0 + }, + { + "$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", + "naptanId": "9400ZZLUTAW2", + "modes": [], + "icsCode": "1000237", + "stationNaptan": "940GZZLUTAW", + "lines": [], + "lineGroup": [], + "lineModeGroups": [], + "status": true, + "id": "9400ZZLUTAW2", + "commonName": "Totteridge & Whetstone Underground Station", + "placeType": "StopPoint", + "additionalProperties": [], + "children": [], + "lat": 0, + "lon": 0 + } + ], + "lat": 51.630597, + "lon": -0.17921 + }, + { + "$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", + "naptanId": "940GZZLUTBC", + "modes": [ + "tube" + ], + "icsCode": "1000233", + "stopType": "NaptanMetroStation", + "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": "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": "9400ZZLUTBC1", + "modes": [], + "icsCode": "1000233", + "stationNaptan": "940GZZLUTBC", + "lines": [], + "lineGroup": [], + "lineModeGroups": [], + "status": true, + "id": "9400ZZLUTBC1", + "commonName": "Tooting Bec Underground Station", + "placeType": "StopPoint", + "additionalProperties": [], + "children": [], + "lat": 0, + "lon": 0 + }, + { + "$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", + "naptanId": "9400ZZLUTBC2", + "modes": [], + "icsCode": "1000233", + "stationNaptan": "940GZZLUTBC", + "lines": [], + "lineGroup": [], + "lineModeGroups": [], + "status": true, + "id": "9400ZZLUTBC2", + "commonName": "Tooting Bec Station", + "placeType": "StopPoint", + "additionalProperties": [], + "children": [], + "lat": 0, + "lon": 0 + } + ], + "lat": 51.435678, + "lon": -0.159736 + }, + { + "$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", + "naptanId": "940GZZLUTBY", + "modes": [ + "tube" + ], + "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" + } + ], + "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": "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": "9400ZZLUTBY1", + "modes": [], + "icsCode": "1000234", + "stationNaptan": "940GZZLUTBY", + "lines": [], + "lineGroup": [], + "lineModeGroups": [], + "status": true, + "id": "9400ZZLUTBY1", + "commonName": "Tooting Broadway Underground Station", + "placeType": "StopPoint", + "additionalProperties": [], + "children": [], + "lat": 0, + "lon": 0 + }, + { + "$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", + "naptanId": "9400ZZLUTBY2", + "modes": [], + "icsCode": "1000234", + "stationNaptan": "940GZZLUTBY", + "lines": [], + "lineGroup": [], + "lineModeGroups": [], + "status": true, + "id": "9400ZZLUTBY2", + "commonName": "Tooting Broadway Station", + "placeType": "StopPoint", + "additionalProperties": [], + "children": [], + "lat": 0, + "lon": 0 + } + ], + "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": "Address", + "key": "Address", + "sourceSystemKey": "StaticObjects", + "value": "Tottenham Court Road Station,London Underground Ltd.,Oxford St,London,W1D 2DH" + }, + { + "$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", + "category": "Facility", + "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": "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": "BikePoints_776" + }, + { + "$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": "9400ZZLUTCR1", + "modes": [], + "icsCode": "1000235", + "stationNaptan": "940GZZLUTCR", + "hubNaptanCode": "HUBTCR", + "lines": [], + "lineGroup": [], + "lineModeGroups": [], + "status": true, + "id": "9400ZZLUTCR1", + "commonName": "Tottenham Court Road Underground Station", + "placeType": "StopPoint", + "additionalProperties": [], + "children": [], + "lat": 0, + "lon": 0 + }, + { + "$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", + "naptanId": "9400ZZLUTCR4", + "modes": [], + "icsCode": "1000235", + "stationNaptan": "940GZZLUTCR", + "hubNaptanCode": "HUBTCR", + "lines": [], + "lineGroup": [], + "lineModeGroups": [], + "status": true, + "id": "9400ZZLUTCR4", + "commonName": "Tottenham Court Road Underground Station", + "placeType": "StopPoint", + "additionalProperties": [], + "children": [], + "lat": 0, + "lon": 0 + }, + { + "$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", + "naptanId": "9400ZZLUTCR2", + "modes": [], + "icsCode": "1000235", + "stationNaptan": "940GZZLUTCR", + "hubNaptanCode": "HUBTCR", + "lines": [], + "lineGroup": [], + "lineModeGroups": [], + "status": true, + "id": "9400ZZLUTCR2", + "commonName": "Tottenham Court Road Underground Station", + "placeType": "StopPoint", + "additionalProperties": [], + "children": [], + "lat": 0, + "lon": 0 + }, + { + "$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", + "naptanId": "9400ZZLUTCR3", + "modes": [], + "icsCode": "1000235", + "stationNaptan": "940GZZLUTCR", + "hubNaptanCode": "HUBTCR", + "lines": [], + "lineGroup": [], + "lineModeGroups": [], + "status": true, + "id": "9400ZZLUTCR3", + "commonName": "Tottenham Court Road Underground Station", + "placeType": "StopPoint", + "additionalProperties": [], + "children": [], + "lat": 0, + "lon": 0 + } + ], + "lat": 51.516426, + "lon": -0.13041 + }, + { + "$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", + "naptanId": "940GZZLUTFP", + "modes": [ + "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" + } + ], + "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": "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": "Waiting Room", + "sourceSystemKey": "StaticObjects", + "value": "no" + }, + { + "$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", + "category": "Facility", + "key": "Car park", + "sourceSystemKey": "StaticObjects", + "value": "no" + }, + { + "$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", + "category": "Facility", + "key": "Escalators", + "sourceSystemKey": "StaticObjects", + "value": "0" + }, + { + "$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.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": "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": "9400ZZLUTFP1", + "modes": [], + "icsCode": "1000239", + "stationNaptan": "940GZZLUTFP", + "lines": [], + "lineGroup": [], + "lineModeGroups": [], + "status": true, + "id": "9400ZZLUTFP1", + "commonName": "Tufnell Park Underground Station", + "placeType": "StopPoint", + "additionalProperties": [], + "children": [], + "lat": 0, + "lon": 0 + }, + { + "$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", + "naptanId": "9400ZZLUTFP2", + "modes": [], + "icsCode": "1000239", + "stationNaptan": "940GZZLUTFP", + "lines": [], + "lineGroup": [], + "lineModeGroups": [], + "status": true, + "id": "9400ZZLUTFP2", + "commonName": "Tufnell Park Underground Station", + "placeType": "StopPoint", + "additionalProperties": [], + "children": [], + "lat": 0, + "lon": 0 + } + ], + "lat": 51.556822, + "lon": -0.138433 + }, + { + "$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", + "naptanId": "940GZZLUWFN", + "modes": [ + "tube" + ], + "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" + } + ], + "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": "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 – 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": "9400ZZLUWFN1", + "modes": [], + "icsCode": "1000261", + "stationNaptan": "940GZZLUWFN", + "lines": [], + "lineGroup": [], + "lineModeGroups": [], + "status": true, + "id": "9400ZZLUWFN1", + "commonName": "West Finchley Underground Station", + "placeType": "StopPoint", + "additionalProperties": [], + "children": [], + "lat": 0, + "lon": 0 + }, + { + "$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", + "naptanId": "9400ZZLUWFN2", + "modes": [], + "icsCode": "1000261", + "stationNaptan": "940GZZLUWFN", + "lines": [], + "lineGroup": [], + "lineModeGroups": [], + "status": true, + "id": "9400ZZLUWFN2", + "commonName": "West Finchley Underground Station", + "placeType": "StopPoint", + "additionalProperties": [], + "children": [], + "lat": 0, + "lon": 0 + } + ], + "lat": 51.609426, + "lon": -0.188362 + }, + { + "$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": "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" + } + ], + "lineGroup": [ + { + "$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": [ + "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", + "stationAtcoCode": "940GZZLUWLO", + "lineIdentifier": [ + "waterloo-city" + ] + } + ], + "lineModeGroups": [ + { + "$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", + "modeName": "tube", + "lineIdentifier": [ + "bakerloo", + "jubilee", + "northern", + "waterloo-city" + ] + } + ], + "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": "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_336" + }, + { + "$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": "BikePoints_870" + }, + { + "$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": "9400ZZLUWLO1", + "modes": [], + "icsCode": "1000254", + "stationNaptan": "940GZZLUWLO", + "hubNaptanCode": "HUBWAT", + "lines": [], + "lineGroup": [], + "lineModeGroups": [], + "status": true, + "id": "9400ZZLUWLO1", + "commonName": "Waterloo Underground Station", + "placeType": "StopPoint", + "additionalProperties": [], + "children": [], + "lat": 0, + "lon": 0 + }, + { + "$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", + "naptanId": "9400ZZLUWLO2", + "modes": [], + "icsCode": "1000254", + "stationNaptan": "940GZZLUWLO", + "hubNaptanCode": "HUBWAT", + "lines": [], + "lineGroup": [], + "lineModeGroups": [], + "status": true, + "id": "9400ZZLUWLO2", + "commonName": "Waterloo Underground Station", + "placeType": "StopPoint", + "additionalProperties": [], + "children": [], + "lat": 0, + "lon": 0 + }, + { + "$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", + "naptanId": "9400ZZLUWLO4", + "modes": [], + "icsCode": "1000254", + "stationNaptan": "940GZZLUWLO", + "hubNaptanCode": "HUBWAT", + "lines": [], + "lineGroup": [], + "lineModeGroups": [], + "status": true, + "id": "9400ZZLUWLO4", + "commonName": "Waterloo Underground Station", + "placeType": "StopPoint", + "additionalProperties": [], + "children": [], + "lat": 0, + "lon": 0 + }, + { + "$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", + "naptanId": "9400ZZLUWLO8", + "modes": [], + "icsCode": "1000254", + "stationNaptan": "940GZZLUWLO", + "hubNaptanCode": "HUBWAT", + "lines": [], + "lineGroup": [], + "lineModeGroups": [], + "status": true, + "id": "9400ZZLUWLO8", + "commonName": "Waterloo Station", + "placeType": "StopPoint", + "additionalProperties": [], + "children": [], + "lat": 0, + "lon": 0 + }, + { + "$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", + "naptanId": "9400ZZLUWLO3", + "modes": [], + "icsCode": "1000254", + "stationNaptan": "940GZZLUWLO", + "hubNaptanCode": "HUBWAT", + "lines": [], + "lineGroup": [], + "lineModeGroups": [], + "status": true, + "id": "9400ZZLUWLO3", + "commonName": "Waterloo Underground Station", + "placeType": "StopPoint", + "additionalProperties": [], + "children": [], + "lat": 0, + "lon": 0 + }, + { + "$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", + "naptanId": "9400ZZLUWLO7", + "modes": [], + "icsCode": "1000254", + "stationNaptan": "940GZZLUWLO", + "hubNaptanCode": "HUBWAT", + "lines": [], + "lineGroup": [], + "lineModeGroups": [], + "status": true, + "id": "9400ZZLUWLO7", + "commonName": "Waterloo Station", + "placeType": "StopPoint", + "additionalProperties": [], + "children": [], + "lat": 0, + "lon": 0 + }, + { + "$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", + "naptanId": "9400ZZLUWLO5", + "modes": [], + "icsCode": "1000254", + "stationNaptan": "940GZZLUWLO", + "hubNaptanCode": "HUBWAT", + "lines": [], + "lineGroup": [], + "lineModeGroups": [], + "status": true, + "id": "9400ZZLUWLO5", + "commonName": "Waterloo Underground Station", + "placeType": "StopPoint", + "additionalProperties": [], + "children": [], + "lat": 0, + "lon": 0 + }, + { + "$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", + "naptanId": "9400ZZLUWLO6", + "modes": [], + "icsCode": "1000254", + "stationNaptan": "940GZZLUWLO", + "hubNaptanCode": "HUBWAT", + "lines": [], + "lineGroup": [], + "lineModeGroups": [], + "status": true, + "id": "9400ZZLUWLO6", + "commonName": "Waterloo Underground Station", + "placeType": "StopPoint", + "additionalProperties": [], + "children": [], + "lat": 0, + "lon": 0 + } + ], + "lat": 51.503299, + "lon": -0.11478 + }, + { + "$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", + "naptanId": "940GZZLUWOP", + "modes": [ + "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" + } + ], + "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": "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 – 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": "9400ZZLUWOP1", + "modes": [], + "icsCode": "1000276", + "stationNaptan": "940GZZLUWOP", + "lines": [], + "lineGroup": [], + "lineModeGroups": [], + "status": true, + "id": "9400ZZLUWOP1", + "commonName": "Woodside Park Underground Station", + "placeType": "StopPoint", + "additionalProperties": [], + "children": [], + "lat": 0, + "lon": 0 + }, + { + "$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", + "naptanId": "9400ZZLUWOP2", + "modes": [], + "icsCode": "1000276", + "stationNaptan": "940GZZLUWOP", + "lines": [], + "lineGroup": [], + "lineModeGroups": [], + "status": true, + "id": "9400ZZLUWOP2", + "commonName": "Woodside Park Underground Station", + "placeType": "StopPoint", + "additionalProperties": [], + "children": [], + "lat": 0, + "lon": 0 + } + ], + "lat": 51.618014, + "lon": -0.18542 + }, + { + "$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", + "naptanId": "940GZZLUWRR", + "modes": [ + "tube" + ], + "icsCode": "1000252", + "stopType": "NaptanMetroStation", + "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" + }, + { + "$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", + "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": [ + "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": "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": "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": "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": "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, + "lon": 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, + "lon": 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, + "lon": 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, + "lon": 0 + } + ], + "lat": 51.524951, + "lon": -0.138321 + }, + { + "$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", + "naptanId": "940GZZNEUGST", + "modes": [ + "tube" + ], + "icsCode": "1002196", + "stopType": "NaptanMetroStation", + "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": "940GZZNEUGST", + "commonName": "Nine Elms Underground Station", + "placeType": "StopPoint", + "additionalProperties": [ + { + "$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", + "category": "Facility", + "key": "Cash Machines", + "sourceSystemKey": "StaticObjects", + "value": "0" + }, + { + "$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", + "category": "Facility", + "key": "Waiting Room", + "sourceSystemKey": "StaticObjects", + "value": "no" + }, + { + "$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", + "category": "Address", + "key": "Address", + "sourceSystemKey": "StaticObjects", + "value": "Nine Elms Station,London Underground Ltd.,Wandsworth Road,London,SW8 2GE" + }, + { + "$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.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": "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": "2" + }, + { + "$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", + "category": "Facility", + "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": "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": "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_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": "9400ZZNEUGST", + "indicator": "N/A", + "stopLetter": "N/A", + "modes": [], + "icsCode": "1002196", + "stationNaptan": "940GZZNEUGST", + "lines": [], + "lineGroup": [], + "lineModeGroups": [], + "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 + } + ], + "central": [ + { + "$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", + "naptanId": "940GZZLUBKE", + "modes": [ + "tube" + ], + "icsCode": "1000016", + "stopType": "NaptanMetroStation", + "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": "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": "9400ZZLUBKE1", + "modes": [], + "icsCode": "1000016", + "stationNaptan": "940GZZLUBKE", + "lines": [], + "lineGroup": [], + "lineModeGroups": [], + "status": true, + "id": "9400ZZLUBKE1", + "commonName": "Barkingside Underground Station", + "placeType": "StopPoint", + "additionalProperties": [], + "children": [], + "lat": 0, + "lon": 0 + }, + { + "$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", + "naptanId": "9400ZZLUBKE2", + "modes": [], + "icsCode": "1000016", + "stationNaptan": "940GZZLUBKE", + "lines": [], + "lineGroup": [], + "lineModeGroups": [], + "status": true, + "id": "9400ZZLUBKE2", + "commonName": "Barkingside Underground Station", + "placeType": "StopPoint", + "additionalProperties": [], + "children": [], + "lat": 0, + "lon": 0 + } + ], + "lat": 51.585689, + "lon": 0.088585 + }, + { + "$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": "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" + }, + { + "$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": "1500IM359", + "stationAtcoCode": "150G00003292", + "lineIdentifier": [ + "167", + "677", + "w14" + ] + }, + { + "$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": [ + "167", + "677", + "w14" + ] + }, + { + "$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": "9400ZZLUBKH1", + "modes": [], + "icsCode": "1000033", + "stationNaptan": "940GZZLUBKH", + "lines": [], + "lineGroup": [], + "lineModeGroups": [], + "status": true, + "id": "9400ZZLUBKH1", + "commonName": "Buckhurst Hill Underground Station", + "placeType": "StopPoint", + "additionalProperties": [], + "children": [], + "lat": 0, + "lon": 0 + }, + { + "$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", + "naptanId": "9400ZZLUBKH2", + "modes": [], + "icsCode": "1000033", + "stationNaptan": "940GZZLUBKH", + "lines": [], + "lineGroup": [], + "lineModeGroups": [], + "status": true, + "id": "9400ZZLUBKH2", + "commonName": "Buckhurst Hill Underground Station", + "placeType": "StopPoint", + "additionalProperties": [], + "children": [], + "lat": 0, + "lon": 0 + } + ], + "lat": 51.626605, + "lon": 0.046757 + }, + { + "$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", + "naptanId": "940GZZLUBLG", + "modes": [ + "tube" + ], + "icsCode": "1000022", + "stopType": "NaptanMetroStation", + "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": "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": "9400ZZLUBLG1", + "modes": [], + "icsCode": "1000022", + "stationNaptan": "940GZZLUBLG", + "lines": [], + "lineGroup": [], + "lineModeGroups": [], + "status": true, + "id": "9400ZZLUBLG1", + "commonName": "Bethnal Green Underground Station", + "placeType": "StopPoint", + "additionalProperties": [], + "children": [], + "lat": 0, + "lon": 0 + }, + { + "$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", + "naptanId": "9400ZZLUBLG2", + "modes": [], + "icsCode": "1000022", + "stationNaptan": "940GZZLUBLG", + "lines": [], + "lineGroup": [], + "lineModeGroups": [], + "status": true, + "id": "9400ZZLUBLG2", + "commonName": "Bethnal Green", + "placeType": "StopPoint", + "additionalProperties": [], + "children": [], + "lat": 0, + "lon": 0 + } + ], + "lat": 51.527222, + "lon": -0.055506 + }, + { + "$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": "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": "940GZZLUBND", + "lineIdentifier": [ + "central" + ] + }, + { + "$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": [ + "central", + "jubilee" + ] + } + ], + "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": "9400ZZLUBND1", + "modes": [], + "icsCode": "1000025", + "stationNaptan": "940GZZLUBND", + "hubNaptanCode": "HUBBDS", + "lines": [], + "lineGroup": [], + "lineModeGroups": [], + "status": true, + "id": "9400ZZLUBND1", + "commonName": "Bond Street Underground Station", + "placeType": "StopPoint", + "additionalProperties": [], + "children": [], + "lat": 0, + "lon": 0 + }, + { + "$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", + "naptanId": "9400ZZLUBND4", + "modes": [], + "icsCode": "1000025", + "stationNaptan": "940GZZLUBND", + "hubNaptanCode": "HUBBDS", + "lines": [], + "lineGroup": [], + "lineModeGroups": [], + "status": true, + "id": "9400ZZLUBND4", + "commonName": "Bond Street Station", + "placeType": "StopPoint", + "additionalProperties": [], + "children": [], + "lat": 0, + "lon": 0 + }, + { + "$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", + "naptanId": "9400ZZLUBND2", + "modes": [], + "icsCode": "1000025", + "stationNaptan": "940GZZLUBND", + "hubNaptanCode": "HUBBDS", + "lines": [], + "lineGroup": [], + "lineModeGroups": [], + "status": true, + "id": "9400ZZLUBND2", + "commonName": "Bond Street Underground Station", + "placeType": "StopPoint", + "additionalProperties": [], + "children": [], + "lat": 0, + "lon": 0 + }, + { + "$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", + "naptanId": "9400ZZLUBND3", + "modes": [], + "icsCode": "1000025", + "stationNaptan": "940GZZLUBND", + "hubNaptanCode": "HUBBDS", + "lines": [], + "lineGroup": [], + "lineModeGroups": [], + "status": true, + "id": "9400ZZLUBND3", + "commonName": "Bond Street Underground Station", + "placeType": "StopPoint", + "additionalProperties": [], + "children": [], + "lat": 0, + "lon": 0 + } + ], + "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": "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" + } + ], + "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": [ + "northern" + ] + }, + { + "$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": [ + "central", + "northern", + "waterloo-city" + ] + } + ], + "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": "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": "9400ZZLUBNK1", + "modes": [], + "icsCode": "1000013", + "stationNaptan": "940GZZLUBNK", + "hubNaptanCode": "HUBBAN", + "lines": [], + "lineGroup": [], + "lineModeGroups": [], + "status": true, + "id": "9400ZZLUBNK1", + "commonName": "Bank Underground Station", + "placeType": "StopPoint", + "additionalProperties": [], + "children": [], + "lat": 51.513356, + "lon": -0.088899 + }, + { + "$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", + "naptanId": "9400ZZLUBNK2", + "modes": [], + "icsCode": "1000013", + "stationNaptan": "940GZZLUBNK", + "hubNaptanCode": "HUBBAN", + "lines": [], + "lineGroup": [], + "lineModeGroups": [], + "status": true, + "id": "9400ZZLUBNK2", + "commonName": "Bank Underground Station", + "placeType": "StopPoint", + "additionalProperties": [], + "children": [], + "lat": 0, + "lon": 0 + }, + { + "$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", + "naptanId": "9400ZZLUBNK4", + "modes": [], + "icsCode": "1000013", + "stationNaptan": "940GZZLUBNK", + "hubNaptanCode": "HUBBAN", + "lines": [], + "lineGroup": [], + "lineModeGroups": [], + "status": true, + "id": "9400ZZLUBNK4", + "commonName": "Bank Underground Station", + "placeType": "StopPoint", + "additionalProperties": [], + "children": [], + "lat": 0, + "lon": 0 + }, + { + "$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", + "naptanId": "9400ZZLUBNK5", + "modes": [], + "icsCode": "1000013", + "stationNaptan": "940GZZLUBNK", + "hubNaptanCode": "HUBBAN", + "lines": [], + "lineGroup": [], + "lineModeGroups": [], + "status": true, + "id": "9400ZZLUBNK5", + "commonName": "Bank Underground Station", + "placeType": "StopPoint", + "additionalProperties": [], + "children": [], + "lat": 0, + "lon": 0 + }, + { + "$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", + "naptanId": "9400ZZLUBNK3", + "modes": [], + "icsCode": "1000013", + "stationNaptan": "940GZZLUBNK", + "hubNaptanCode": "HUBBAN", + "lines": [], + "lineGroup": [], + "lineModeGroups": [], + "status": true, + "id": "9400ZZLUBNK3", + "commonName": "Bank Underground Station", + "placeType": "StopPoint", + "additionalProperties": [], + "children": [], + "lat": 0, + "lon": 0 + }, + { + "$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", + "naptanId": "9400ZZLUBNK8", + "modes": [], + "icsCode": "1000013", + "stationNaptan": "940GZZLUBNK", + "hubNaptanCode": "HUBBAN", + "lines": [], + "lineGroup": [], + "lineModeGroups": [], + "status": true, + "id": "9400ZZLUBNK8", + "commonName": "Bank Underground Station", + "placeType": "StopPoint", + "additionalProperties": [], + "children": [], + "lat": 0, + "lon": 0 + } + ], + "lat": 51.513356, + "lon": -0.088899 + }, + { + "$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", + "naptanId": "940GZZLUCHL", + "modes": [ + "tube" + ], + "icsCode": "1000044", + "stopType": "NaptanMetroStation", + "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": "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": "9400ZZLUCHL1", + "modes": [], + "icsCode": "1000044", + "stationNaptan": "940GZZLUCHL", + "lines": [], + "lineGroup": [], + "lineModeGroups": [], + "status": true, + "id": "9400ZZLUCHL1", + "commonName": "Chancery Lane Underground Station", + "placeType": "StopPoint", + "additionalProperties": [], + "children": [], + "lat": 0, + "lon": 0 + }, + { + "$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", + "naptanId": "9400ZZLUCHL2", + "modes": [], + "icsCode": "1000044", + "stationNaptan": "940GZZLUCHL", + "lines": [], + "lineGroup": [], + "lineModeGroups": [], + "status": true, + "id": "9400ZZLUCHL2", + "commonName": "Chancery Lane Underground Station", + "placeType": "StopPoint", + "additionalProperties": [], + "children": [], + "lat": 0, + "lon": 0 + } + ], + "lat": 51.518247, + "lon": -0.111583 + }, + { + "$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": [ + "167", + "677" + ] + }, + { + "$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", + "stationAtcoCode": "940GZZLUCWL", + "lineIdentifier": [ + "central" + ] + } + ], + "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": "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": "9400ZZLUCWL1", + "modes": [], + "icsCode": "1000047", + "stationNaptan": "940GZZLUCWL", + "lines": [], + "lineGroup": [], + "lineModeGroups": [], + "status": true, + "id": "9400ZZLUCWL1", + "commonName": "Chigwell Underground Station", + "placeType": "StopPoint", + "additionalProperties": [], + "children": [], + "lat": 0, + "lon": 0 + }, + { + "$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", + "naptanId": "9400ZZLUCWL2", + "modes": [], + "icsCode": "1000047", + "stationNaptan": "940GZZLUCWL", + "lines": [], + "lineGroup": [], + "lineModeGroups": [], + "status": true, + "id": "9400ZZLUCWL2", + "commonName": "Chigwell Underground Station", + "placeType": "StopPoint", + "additionalProperties": [], + "children": [], + "lat": 0, + "lon": 0 + } + ], + "lat": 51.617916, + "lon": 0.075041 + }, + { + "$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": "Facility", + "key": "Lifts", + "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": "Facility", + "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": "Address", + "key": "PhoneNo", + "sourceSystemKey": "StaticObjects", + "value": "0845 330 9880" + }, + { + "$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", + "category": "Facility", + "key": "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": "9400ZZLUDBN1", + "modes": [], + "icsCode": "1000060", + "stationNaptan": "940GZZLUDBN", + "lines": [], + "lineGroup": [], + "lineModeGroups": [], + "status": true, + "id": "9400ZZLUDBN1", + "commonName": "Debden Underground Station", + "placeType": "StopPoint", + "additionalProperties": [], + "children": [], + "lat": 0, + "lon": 0 + }, + { + "$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", + "naptanId": "9400ZZLUDBN2", + "modes": [], + "icsCode": "1000060", + "stationNaptan": "940GZZLUDBN", + "lines": [], + "lineGroup": [], + "lineModeGroups": [], + "status": true, + "id": "9400ZZLUDBN2", + "commonName": "Debden Underground Station", + "placeType": "StopPoint", + "additionalProperties": [], + "children": [], + "lat": 0, + "lon": 0 + } + ], + "lat": 51.645386, + "lon": 0.083782 + }, + { + "$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", + "naptanId": "940GZZLUEAN", + "modes": [ + "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" + } + ], + "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": "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": "Escalators", + "sourceSystemKey": "StaticObjects", + "value": "0" + }, + { + "$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", + "category": "Facility", + "key": "Help Points", + "sourceSystemKey": "StaticObjects", + "value": "0 on 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": "0" + }, + { + "$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", + "category": "Facility", + "key": "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": "9400ZZLUEAN1", + "modes": [], + "icsCode": "1000065", + "stationNaptan": "940GZZLUEAN", + "lines": [], + "lineGroup": [], + "lineModeGroups": [], + "status": true, + "id": "9400ZZLUEAN1", + "commonName": "East Acton Underground Station", + "placeType": "StopPoint", + "additionalProperties": [], + "children": [], + "lat": 0, + "lon": 0 + }, + { + "$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", + "naptanId": "9400ZZLUEAN2", + "modes": [], + "icsCode": "1000065", + "stationNaptan": "940GZZLUEAN", + "lines": [], + "lineGroup": [], + "lineModeGroups": [], + "status": true, + "id": "9400ZZLUEAN2", + "commonName": "East Acton Underground Station", + "placeType": "StopPoint", + "additionalProperties": [], + "children": [], + "lat": 0, + "lon": 0 + } + ], + "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": "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": "Facility", + "key": "Help 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_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": "9400ZZLUEBY1", + "modes": [], + "icsCode": "1000062", + "stationNaptan": "940GZZLUEBY", + "hubNaptanCode": "HUBEAL", + "lines": [], + "lineGroup": [], + "lineModeGroups": [], + "status": true, + "id": "9400ZZLUEBY1", + "commonName": "Ealing Broadway Underground Station", + "placeType": "StopPoint", + "additionalProperties": [], + "children": [], + "lat": 0, + "lon": 0 + }, + { + "$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", + "naptanId": "9400ZZLUEBY3", + "modes": [], + "icsCode": "1000062", + "stationNaptan": "940GZZLUEBY", + "hubNaptanCode": "HUBEAL", + "lines": [], + "lineGroup": [], + "lineModeGroups": [], + "status": true, + "id": "9400ZZLUEBY3", + "commonName": "Ealing Broadway Underground Station", + "placeType": "StopPoint", + "additionalProperties": [], + "children": [], + "lat": 0, + "lon": 0 + }, + { + "$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", + "naptanId": "9400ZZLUEBY4", + "modes": [], + "icsCode": "1000062", + "stationNaptan": "940GZZLUEBY", + "hubNaptanCode": "HUBEAL", + "lines": [], + "lineGroup": [], + "lineModeGroups": [], + "status": true, + "id": "9400ZZLUEBY4", + "commonName": "Ealing Broadway Underground Station", + "placeType": "StopPoint", + "additionalProperties": [], + "children": [], + "lat": 0, + "lon": 0 + } + ], + "lat": 51.515017, + "lon": -0.301457 + }, + { + "$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": "NearestPlaces", + "key": "SourceSystemPlaceId", + "sourceSystemKey": "StaticObjects", + "value": "CarParks_800474" + } + ], + "children": [ + { + "$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", + "naptanId": "9400ZZLUEPG1", + "modes": [], + "icsCode": "1000076", + "stationNaptan": "940GZZLUEPG", + "lines": [], + "lineGroup": [], + "lineModeGroups": [], + "status": true, + "id": "9400ZZLUEPG1", + "commonName": "Epping Underground Station", + "placeType": "StopPoint", + "additionalProperties": [], + "children": [], + "lat": 0, + "lon": 0 + } + ], + "lat": 51.69368, + "lon": 0.113767 + }, + { + "$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", + "naptanId": "940GZZLUFLP", + "modes": [ + "tube" + ], + "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" + } + ], + "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": "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": "9400ZZLUFLP1", + "modes": [], + "icsCode": "1000079", + "stationNaptan": "940GZZLUFLP", + "lines": [], + "lineGroup": [], + "lineModeGroups": [], + "status": true, + "id": "9400ZZLUFLP1", + "commonName": "Fairlop Underground Station", + "placeType": "StopPoint", + "additionalProperties": [], + "children": [], + "lat": 0, + "lon": 0 + }, + { + "$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", + "naptanId": "9400ZZLUFLP2", + "modes": [], + "icsCode": "1000079", + "stationNaptan": "940GZZLUFLP", + "lines": [], + "lineGroup": [], + "lineModeGroups": [], + "status": true, + "id": "9400ZZLUFLP2", + "commonName": "Fairlop Underground Station", + "placeType": "StopPoint", + "additionalProperties": [], + "children": [], + "lat": 0, + "lon": 0 + } + ], + "lat": 51.595618, + "lon": 0.091004 + }, + { + "$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": "9400ZZLUGFD1", + "modes": [], + "icsCode": "1000092", + "stationNaptan": "940GZZLUGFD", + "hubNaptanCode": "HUBGFD", + "lines": [], + "lineGroup": [], + "lineModeGroups": [], + "status": true, + "id": "9400ZZLUGFD1", + "commonName": "Greenford Underground Station", + "placeType": "StopPoint", + "additionalProperties": [], + "children": [], + "lat": 0, + "lon": 0 + }, + { + "$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", + "naptanId": "9400ZZLUGFD2", + "modes": [], + "icsCode": "1000092", + "stationNaptan": "940GZZLUGFD", + "hubNaptanCode": "HUBGFD", + "lines": [], + "lineGroup": [], + "lineModeGroups": [], + "status": true, + "id": "9400ZZLUGFD2", + "commonName": "Greenford Underground Station", + "placeType": "StopPoint", + "additionalProperties": [], + "children": [], + "lat": 0, + "lon": 0 + } + ], + "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": "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", + "naptanIdReference": "1500420250Y6", + "stationAtcoCode": "150G00003280", + "lineIdentifier": [ + "462" + ] + }, + { + "$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": "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": "9400ZZLUGGH1", + "modes": [], + "icsCode": "1000090", + "stationNaptan": "940GZZLUGGH", + "lines": [], + "lineGroup": [], + "lineModeGroups": [], + "status": true, + "id": "9400ZZLUGGH1", + "commonName": "Grange Hill Underground Station", + "placeType": "StopPoint", + "additionalProperties": [], + "children": [], + "lat": 0, + "lon": 0 + }, + { + "$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", + "naptanId": "9400ZZLUGGH2", + "modes": [], + "icsCode": "1000090", + "stationNaptan": "940GZZLUGGH", + "lines": [], + "lineGroup": [], + "lineModeGroups": [], + "status": true, + "id": "9400ZZLUGGH2", + "commonName": "Grange Hill Underground Station", + "placeType": "StopPoint", + "additionalProperties": [], + "children": [], + "lat": 0, + "lon": 0 + } + ], + "lat": 51.613378, + "lon": 0.092066 + }, + { + "$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", + "naptanId": "940GZZLUGTH", + "modes": [ + "tube" + ], + "icsCode": "1000085", + "stopType": "NaptanMetroStation", + "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": "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": "9400ZZLUGTH1", + "modes": [], + "icsCode": "1000085", + "stationNaptan": "940GZZLUGTH", + "lines": [], + "lineGroup": [], + "lineModeGroups": [], + "status": true, + "id": "9400ZZLUGTH1", + "commonName": "Gants Hill Underground Station", + "placeType": "StopPoint", + "additionalProperties": [], + "children": [], + "lat": 0, + "lon": 0 + }, + { + "$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", + "naptanId": "9400ZZLUGTH2", + "modes": [], + "icsCode": "1000085", + "stationNaptan": "940GZZLUGTH", + "lines": [], + "lineGroup": [], + "lineModeGroups": [], + "status": true, + "id": "9400ZZLUGTH2", + "commonName": "Gants Hill Station", + "placeType": "StopPoint", + "additionalProperties": [], + "children": [], + "lat": 0, + "lon": 0 + } + ], + "lat": 51.576544, + "lon": 0.066185 + }, + { + "$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", + "naptanId": "940GZZLUHBN", + "modes": [ + "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": "piccadilly", + "name": "Piccadilly", + "uri": "/Line/piccadilly", + "type": "Line", + "crowding": { + "$type": "Tfl.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", + "stationAtcoCode": "940GZZLUHBN", + "lineIdentifier": [ + "piccadilly" + ] + } + ], + "lineModeGroups": [ + { + "$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", + "modeName": "tube", + "lineIdentifier": [ + "central", + "piccadilly" + ] + } + ], + "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_372" + }, + { + "$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": "9400ZZLUHBN1", + "modes": [], + "icsCode": "1000112", + "stationNaptan": "940GZZLUHBN", + "lines": [], + "lineGroup": [], + "lineModeGroups": [], + "status": true, + "id": "9400ZZLUHBN1", + "commonName": "Holborn Underground Station", + "placeType": "StopPoint", + "additionalProperties": [], + "children": [], + "lat": 0, + "lon": 0 + }, + { + "$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", + "naptanId": "9400ZZLUHBN2", + "modes": [], + "icsCode": "1000112", + "stationNaptan": "940GZZLUHBN", + "lines": [], + "lineGroup": [], + "lineModeGroups": [], + "status": true, + "id": "9400ZZLUHBN2", + "commonName": "Holborn Underground Station", + "placeType": "StopPoint", + "additionalProperties": [], + "children": [], + "lat": 0, + "lon": 0 + }, + { + "$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", + "naptanId": "9400ZZLUHBN3", + "modes": [], + "icsCode": "1000112", + "stationNaptan": "940GZZLUHBN", + "lines": [], + "lineGroup": [], + "lineModeGroups": [], + "status": true, + "id": "9400ZZLUHBN3", + "commonName": "Holborn Underground Station", + "placeType": "StopPoint", + "additionalProperties": [], + "children": [], + "lat": 0, + "lon": 0 + }, + { + "$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", + "naptanId": "9400ZZLUHBN4", + "modes": [], + "icsCode": "1000112", + "stationNaptan": "940GZZLUHBN", + "lines": [], + "lineGroup": [], + "lineModeGroups": [], + "status": true, + "id": "9400ZZLUHBN4", + "commonName": "Holborn Underground Station", + "placeType": "StopPoint", + "additionalProperties": [], + "children": [], + "lat": 0, + "lon": 0 + } + ], + "lat": 51.51758, + "lon": -0.120475 + }, + { + "$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", + "naptanId": "940GZZLUHGR", + "modes": [ + "tube" + ], + "icsCode": "1000099", + "stopType": "NaptanMetroStation", + "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": "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": "9400ZZLUHGR1", + "modes": [], + "icsCode": "1000099", + "stationNaptan": "940GZZLUHGR", + "lines": [], + "lineGroup": [], + "lineModeGroups": [], + "status": true, + "id": "9400ZZLUHGR1", + "commonName": "Hanger Lane Underground Station", + "placeType": "StopPoint", + "additionalProperties": [], + "children": [], + "lat": 0, + "lon": 0 + }, + { + "$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", + "naptanId": "9400ZZLUHGR2", + "modes": [], + "icsCode": "1000099", + "stationNaptan": "940GZZLUHGR", + "lines": [], + "lineGroup": [], + "lineModeGroups": [], + "status": true, + "id": "9400ZZLUHGR2", + "commonName": "Hanger Lane Station", + "placeType": "StopPoint", + "additionalProperties": [], + "children": [], + "lat": 0, + "lon": 0 + } + ], + "lat": 51.530177, + "lon": -0.292704 + }, + { + "$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", + "naptanId": "940GZZLUHLT", + "modes": [ + "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" + } + ], + "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": "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": "9400ZZLUHLT1", + "modes": [], + "icsCode": "1000095", + "stationNaptan": "940GZZLUHLT", + "lines": [], + "lineGroup": [], + "lineModeGroups": [], + "status": true, + "id": "9400ZZLUHLT1", + "commonName": "Hainault Underground Station", + "placeType": "StopPoint", + "additionalProperties": [], + "children": [], + "lat": 0, + "lon": 0 + }, + { + "$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", + "naptanId": "9400ZZLUHLT2", + "indicator": "eastbound", + "modes": [], + "icsCode": "1000095", + "stationNaptan": "940GZZLUHLT", + "lines": [], + "lineGroup": [], + "lineModeGroups": [], + "status": true, + "id": "9400ZZLUHLT2", + "commonName": "Hainault Underground Station", + "placeType": "StopPoint", + "additionalProperties": [], + "children": [], + "lat": 0, + "lon": 0 + } + ], + "lat": 51.603659, + "lon": 0.093482 + }, + { + "$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", + "naptanId": "940GZZLUHPK", + "modes": [ + "tube" + ], + "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" + } + ], + "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": "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": "9400ZZLUHPK1", + "modes": [], + "icsCode": "1000113", + "stationNaptan": "940GZZLUHPK", + "lines": [], + "lineGroup": [], + "lineModeGroups": [], + "status": true, + "id": "9400ZZLUHPK1", + "commonName": "Holland Park Underground Station", + "placeType": "StopPoint", + "additionalProperties": [], + "children": [], + "lat": 0, + "lon": 0 + }, + { + "$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", + "naptanId": "9400ZZLUHPK2", + "modes": [], + "icsCode": "1000113", + "stationNaptan": "940GZZLUHPK", + "lines": [], + "lineGroup": [], + "lineModeGroups": [], + "status": true, + "id": "9400ZZLUHPK2", + "commonName": "Holland Park Underground Station", + "placeType": "StopPoint", + "additionalProperties": [], + "children": [], + "lat": 0, + "lon": 0 + } + ], + "lat": 51.507143, + "lon": -0.205679 + }, + { + "$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": "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": "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": "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": "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" + }, + { + "$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": "150042015007", + "stationAtcoCode": "150G00000960", + "lineIdentifier": [ + "167", + "20", + "397", + "677" + ] + }, + { + "$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", + "naptanIdReference": "1500IM358", + "stationAtcoCode": "150G00000960", + "lineIdentifier": [ + "167", + "w14" + ] + }, + { + "$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", + "naptanIdReference": "150042015006", + "stationAtcoCode": "150G00000960", + "lineIdentifier": [ + "20", + "397", + "w14" + ] + }, + { + "$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": [ + "167", + "20", + "397", + "677", + "w14" + ] + }, + { + "$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": "9400ZZLULGN1", + "modes": [], + "icsCode": "1000140", + "stationNaptan": "940GZZLULGN", + "lines": [], + "lineGroup": [], + "lineModeGroups": [], + "status": true, + "id": "9400ZZLULGN1", + "commonName": "Loughton Underground Station", + "placeType": "StopPoint", + "additionalProperties": [], + "children": [], + "lat": 0, + "lon": 0 + }, + { + "$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", + "naptanId": "9400ZZLULGN2", + "modes": [], + "icsCode": "1000140", + "stationNaptan": "940GZZLULGN", + "lines": [], + "lineGroup": [], + "lineModeGroups": [], + "status": true, + "id": "9400ZZLULGN2", + "commonName": "Loughton Underground Station", + "placeType": "StopPoint", + "additionalProperties": [], + "children": [], + "lat": 0, + "lon": 0 + } + ], + "lat": 51.641443, + "lon": 0.055476 + }, + { + "$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", + "naptanId": "940GZZLULGT", + "modes": [ + "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" + } + ], + "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": "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": "Address", + "key": "Address", + "sourceSystemKey": "StaticObjects", + "value": "Lancaster Gate Station,London Underground Ltd.,Bayswater Rd,London,W2E 2UE" + }, + { + "$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", + "category": "Facility", + "key": "Help Points", + "sourceSystemKey": "StaticObjects", + "value": "0 on 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": "Facility", + "key": "Photo Booths", + "sourceSystemKey": "StaticObjects", + "value": "0" + }, + { + "$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", + "category": "Facility", + "key": "WiFi", + "sourceSystemKey": "StaticObjects", + "value": "yes" + }, + { + "$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.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": "9400ZZLULGT1", + "modes": [], + "icsCode": "1000133", + "stationNaptan": "940GZZLULGT", + "lines": [], + "lineGroup": [], + "lineModeGroups": [], + "status": true, + "id": "9400ZZLULGT1", + "commonName": "Lancaster Gate Underground Station", + "placeType": "StopPoint", + "additionalProperties": [], + "children": [], + "lat": 0, + "lon": 0 + }, + { + "$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", + "naptanId": "9400ZZLULGT2", + "modes": [], + "icsCode": "1000133", + "stationNaptan": "940GZZLULGT", + "lines": [], + "lineGroup": [], + "lineModeGroups": [], + "status": true, + "id": "9400ZZLULGT2", + "commonName": "Lancaster Gate Station", + "placeType": "StopPoint", + "additionalProperties": [], + "children": [], + "lat": 0, + "lon": 0 + } + ], + "lat": 51.511723, + "lon": -0.175494 + }, + { + "$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": "circle", + "name": "Circle", + "uri": "/Line/circle", + "type": "Line", + "crowding": { + "$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities" + }, + "routeType": "Unknown", + "status": "Unknown" + }, + { + "$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", + "id": "hammersmith-city", + "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": [ + "central" + ] + }, + { + "$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": [ + "central", + "circle", + "hammersmith-city", + "metropolitan" + ] + } + ], + "status": true, + "id": "940GZZLULVT", + "commonName": "Liverpool 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": "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" + }, + { + "$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" + } + ], + "children": [ + { + "$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, + "lon": 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, + "lon": 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, + "lon": 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, + "lon": 0 + } + ], + "lat": 51.517372, + "lon": -0.083182 + }, + { + "$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", + "naptanId": "940GZZLULYN", + "modes": [ + "tube" + ], + "icsCode": "1000136", + "stopType": "NaptanMetroStation", + "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": "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": "9400ZZLULYN1", + "modes": [], + "icsCode": "1000136", + "stationNaptan": "940GZZLULYN", + "lines": [], + "lineGroup": [], + "lineModeGroups": [], + "status": true, + "id": "9400ZZLULYN1", + "commonName": "Leyton Underground Station", + "placeType": "StopPoint", + "additionalProperties": [], + "children": [], + "lat": 0, + "lon": 0 + }, + { + "$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", + "naptanId": "9400ZZLULYN2", + "modes": [], + "icsCode": "1000136", + "stationNaptan": "940GZZLULYN", + "lines": [], + "lineGroup": [], + "lineModeGroups": [], + "status": true, + "id": "9400ZZLULYN2", + "commonName": "Leyton Underground Station", + "placeType": "StopPoint", + "additionalProperties": [], + "children": [], + "lat": 0, + "lon": 0 + } + ], + "lat": 51.556589, + "lon": -0.005523 + }, + { + "$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", + "naptanId": "940GZZLULYS", + "modes": [ + "tube" + ], + "icsCode": "1000137", + "stopType": "NaptanMetroStation", + "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": "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": "9400ZZLULYS1", + "modes": [], + "icsCode": "1000137", + "stationNaptan": "940GZZLULYS", + "lines": [], + "lineGroup": [], + "lineModeGroups": [], + "status": true, + "id": "9400ZZLULYS1", + "commonName": "Leytonstone Underground Station", + "placeType": "StopPoint", + "additionalProperties": [], + "children": [], + "lat": 0, + "lon": 0 + }, + { + "$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", + "naptanId": "9400ZZLULYS2", + "modes": [], + "icsCode": "1000137", + "stationNaptan": "940GZZLULYS", + "lines": [], + "lineGroup": [], + "lineModeGroups": [], + "status": true, + "id": "9400ZZLULYS2", + "commonName": "Leytonstone Underground Station", + "placeType": "StopPoint", + "additionalProperties": [], + "children": [], + "lat": 0, + "lon": 0 + } + ], + "lat": 51.568324, + "lon": 0.008194 + }, + { + "$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", + "naptanId": "940GZZLUMBA", + "modes": [ + "tube" + ], + "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" + } + ], + "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": "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 1LX" + }, + { + "$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.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_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": "BikePoints_876" + }, + { + "$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_5203" + }, + { + "$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": "9400ZZLUMBA1", + "modes": [], + "icsCode": "1000144", + "stationNaptan": "940GZZLUMBA", + "lines": [], + "lineGroup": [], + "lineModeGroups": [], + "status": true, + "id": "9400ZZLUMBA1", + "commonName": "Marble Arch Underground Station", + "placeType": "StopPoint", + "additionalProperties": [], + "children": [], + "lat": 0, + "lon": 0 + }, + { + "$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", + "naptanId": "9400ZZLUMBA2", + "modes": [], + "icsCode": "1000144", + "stationNaptan": "940GZZLUMBA", + "lines": [], + "lineGroup": [], + "lineModeGroups": [], + "status": true, + "id": "9400ZZLUMBA2", + "commonName": "Marble Arch", + "placeType": "StopPoint", + "additionalProperties": [], + "children": [], + "lat": 0, + "lon": 0 + } + ], + "lat": 51.513424, + "lon": -0.158953 + }, + { + "$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", + "naptanId": "940GZZLUMED", + "modes": [ + "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": "district", + "name": "District", + "uri": "/Line/district", + "type": "Line", + "crowding": { + "$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities" + }, + "routeType": "Unknown", + "status": "Unknown" + }, + { + "$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", + "id": "hammersmith-city", + "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": [ + "central" + ] + }, + { + "$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": [ + "central", + "district", + "hammersmith-city" + ] + } + ], + "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": "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": "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": "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_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": "BikePoints_882" + }, + { + "$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": "9400ZZLUMED1", + "modes": [], + "icsCode": "1000146", + "stationNaptan": "940GZZLUMED", + "lines": [], + "lineGroup": [], + "lineModeGroups": [], + "status": true, + "id": "9400ZZLUMED1", + "commonName": "Mile End Underground Station", + "placeType": "StopPoint", + "additionalProperties": [], + "children": [], + "lat": 0, + "lon": 0 + }, + { + "$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", + "naptanId": "9400ZZLUMED2", + "modes": [], + "icsCode": "1000146", + "stationNaptan": "940GZZLUMED", + "lines": [], + "lineGroup": [], + "lineModeGroups": [], + "status": true, + "id": "9400ZZLUMED2", + "commonName": "Mile End Underground Station", + "placeType": "StopPoint", + "additionalProperties": [], + "children": [], + "lat": 0, + "lon": 0 + }, + { + "$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", + "naptanId": "9400ZZLUMED3", + "modes": [], + "icsCode": "1000146", + "stationNaptan": "940GZZLUMED", + "lines": [], + "lineGroup": [], + "lineModeGroups": [], + "status": true, + "id": "9400ZZLUMED3", + "commonName": "Mile End Underground Station", + "placeType": "StopPoint", + "additionalProperties": [], + "children": [], + "lat": 0, + "lon": 0 + }, + { + "$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", + "naptanId": "9400ZZLUMED4", + "modes": [], + "icsCode": "1000146", + "stationNaptan": "940GZZLUMED", + "lines": [], + "lineGroup": [], + "lineModeGroups": [], + "status": true, + "id": "9400ZZLUMED4", + "commonName": "Mile End Underground Station", + "placeType": "StopPoint", + "additionalProperties": [], + "children": [], + "lat": 0, + "lon": 0 + } + ], + "lat": 51.525122, + "lon": -0.03364 + }, + { + "$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", + "naptanId": "940GZZLUNAN", + "modes": [ + "tube" + ], + "icsCode": "1000157", + "stopType": "NaptanMetroStation", + "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": "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": "9400ZZLUNAN1", + "modes": [], + "icsCode": "1000157", + "stationNaptan": "940GZZLUNAN", + "lines": [], + "lineGroup": [], + "lineModeGroups": [], + "status": true, + "id": "9400ZZLUNAN1", + "commonName": "North Acton Underground Station", + "placeType": "StopPoint", + "additionalProperties": [], + "children": [], + "lat": 0, + "lon": 0 + }, + { + "$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", + "naptanId": "9400ZZLUNAN2", + "modes": [], + "icsCode": "1000157", + "stationNaptan": "940GZZLUNAN", + "lines": [], + "lineGroup": [], + "lineModeGroups": [], + "status": true, + "id": "9400ZZLUNAN2", + "commonName": "North Acton Underground Station", + "placeType": "StopPoint", + "additionalProperties": [], + "children": [], + "lat": 0, + "lon": 0 + } + ], + "lat": 51.523524, + "lon": -0.259755 + }, + { + "$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", + "naptanId": "940GZZLUNBP", + "modes": [ + "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" + } + ], + "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": "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": "9400ZZLUNBP1", + "modes": [], + "icsCode": "1000154", + "stationNaptan": "940GZZLUNBP", + "lines": [], + "lineGroup": [], + "lineModeGroups": [], + "status": true, + "id": "9400ZZLUNBP1", + "commonName": "Newbury Park Underground Station", + "placeType": "StopPoint", + "additionalProperties": [], + "children": [], + "lat": 0, + "lon": 0 + }, + { + "$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", + "naptanId": "9400ZZLUNBP2", + "modes": [], + "icsCode": "1000154", + "stationNaptan": "940GZZLUNBP", + "lines": [], + "lineGroup": [], + "lineModeGroups": [], + "status": true, + "id": "9400ZZLUNBP2", + "commonName": "Newbury Park Underground Station", + "placeType": "StopPoint", + "additionalProperties": [], + "children": [], + "lat": 0, + "lon": 0 + } + ], + "lat": 51.575726, + "lon": 0.090004 + }, + { + "$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", + "naptanId": "940GZZLUNHG", + "modes": [ + "tube" + ], + "icsCode": "1000167", + "stopType": "NaptanMetroStation", + "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" + }, + { + "$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", + "id": "circle", + "name": "Circle", + "uri": "/Line/circle", + "type": "Line", + "crowding": { + "$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities" + }, + "routeType": "Unknown", + "status": "Unknown" + }, + { + "$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", + "id": "district", + "name": "District", + "uri": "/Line/district", + "type": "Line", + "crowding": { + "$type": "Tfl.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" + ] + }, + { + "$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": [ + "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": "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" + }, + { + "$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", + "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": "9400ZZLUNHG1", + "modes": [], + "icsCode": "1000167", + "stationNaptan": "940GZZLUNHG", + "lines": [], + "lineGroup": [], + "lineModeGroups": [], + "status": true, + "id": "9400ZZLUNHG1", + "commonName": "Notting Hill Gate Underground Station", + "placeType": "StopPoint", + "additionalProperties": [], + "children": [], + "lat": 0, + "lon": 0 + }, + { + "$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", + "naptanId": "9400ZZLUNHG2", + "modes": [], + "icsCode": "1000167", + "stationNaptan": "940GZZLUNHG", + "lines": [], + "lineGroup": [], + "lineModeGroups": [], + "status": true, + "id": "9400ZZLUNHG2", + "commonName": "Notting Hill Gate Underground Station", + "placeType": "StopPoint", + "additionalProperties": [], + "children": [], + "lat": 0, + "lon": 0 + }, + { + "$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", + "naptanId": "9400ZZLUNHG3", + "modes": [], + "icsCode": "1000167", + "stationNaptan": "940GZZLUNHG", + "lines": [], + "lineGroup": [], + "lineModeGroups": [], + "status": true, + "id": "9400ZZLUNHG3", + "commonName": "Notting Hill Gate Underground Station", + "placeType": "StopPoint", + "additionalProperties": [], + "children": [], + "lat": 0, + "lon": 0 + }, + { + "$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", + "naptanId": "9400ZZLUNHG4", + "modes": [], + "icsCode": "1000167", + "stationNaptan": "940GZZLUNHG", + "lines": [], + "lineGroup": [], + "lineModeGroups": [], + "status": true, + "id": "9400ZZLUNHG4", + "commonName": "Notting Hill Gate Underground Station", + "placeType": "StopPoint", + "additionalProperties": [], + "children": [], + "lat": 0, + "lon": 0 + } + ], + "lat": 51.509128, + "lon": -0.196104 + }, + { + "$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", + "naptanId": "940GZZLUNHT", + "modes": [ + "tube" + ], + "icsCode": "1000162", + "stopType": "NaptanMetroStation", + "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": "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": "9400ZZLUNHT1", + "modes": [], + "icsCode": "1000162", + "stationNaptan": "940GZZLUNHT", + "lines": [], + "lineGroup": [], + "lineModeGroups": [], + "status": true, + "id": "9400ZZLUNHT1", + "commonName": "Northolt Underground Station", + "placeType": "StopPoint", + "additionalProperties": [], + "children": [], + "lat": 0, + "lon": 0 + }, + { + "$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", + "naptanId": "9400ZZLUNHT2", + "modes": [], + "icsCode": "1000162", + "stationNaptan": "940GZZLUNHT", + "lines": [], + "lineGroup": [], + "lineModeGroups": [], + "status": true, + "id": "9400ZZLUNHT2", + "commonName": "Northolt Station", + "placeType": "StopPoint", + "additionalProperties": [], + "children": [], + "lat": 0, + "lon": 0 + } + ], + "lat": 51.548236, + "lon": -0.368699 + }, + { + "$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", + "naptanId": "940GZZLUOXC", + "modes": [ + "tube" + ], + "icsCode": "1000173", + "stopType": "NaptanMetroStation", + "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" + }, + { + "$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", + "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": "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": [ + "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", + "stationAtcoCode": "940GZZLUOXC", + "lineIdentifier": [ + "victoria" + ] + } + ], + "lineModeGroups": [ + { + "$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, + "lon": 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, + "lon": 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, + "lon": 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, + "lon": 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, + "lon": 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, + "lon": 0 + } + ], + "lat": 51.515224, + "lon": -0.141903 + }, + { + "$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", + "naptanId": "940GZZLUPVL", + "modes": [ + "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" + } + ], + "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": "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": "Address", + "key": "Address", + "sourceSystemKey": "StaticObjects", + "value": "Perivale Station,London Underground Ltd.,Horsenden Lane,Greenford,Middx,UB6 8AE" + }, + { + "$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", + "category": "Facility", + "key": "Escalators", + "sourceSystemKey": "StaticObjects", + "value": "0" + }, + { + "$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", + "category": "Facility", + "key": "Help Points", + "sourceSystemKey": "StaticObjects", + "value": "0 on platforms, 0 in ticket halls, 0 elsewhere" + }, + { + "$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", + "category": "Facility", + "key": "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": "Facility", + "key": "Lifts", + "sourceSystemKey": "StaticObjects", + "value": "0" + }, + { + "$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.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": "9400ZZLUPVL1", + "modes": [], + "icsCode": "1000178", + "stationNaptan": "940GZZLUPVL", + "lines": [], + "lineGroup": [], + "lineModeGroups": [], + "status": true, + "id": "9400ZZLUPVL1", + "commonName": "Perivale Underground Station", + "placeType": "StopPoint", + "additionalProperties": [], + "children": [], + "lat": 0, + "lon": 0 + }, + { + "$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", + "naptanId": "9400ZZLUPVL2", + "modes": [], + "icsCode": "1000178", + "stationNaptan": "940GZZLUPVL", + "lines": [], + "lineGroup": [], + "lineModeGroups": [], + "status": true, + "id": "9400ZZLUPVL2", + "commonName": "Perivale", + "placeType": "StopPoint", + "additionalProperties": [], + "children": [], + "lat": 0, + "lon": 0 + } + ], + "lat": 51.536717, + "lon": -0.323446 + }, + { + "$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", + "naptanId": "940GZZLUQWY", + "modes": [ + "tube" + ], + "icsCode": "1000187", + "stopType": "NaptanMetroStation", + "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": "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": "9400ZZLUQWY1", + "modes": [], + "icsCode": "1000187", + "stationNaptan": "940GZZLUQWY", + "lines": [], + "lineGroup": [], + "lineModeGroups": [], + "status": true, + "id": "9400ZZLUQWY1", + "commonName": "Queensway Underground Station", + "placeType": "StopPoint", + "additionalProperties": [], + "children": [], + "lat": 0, + "lon": 0 + }, + { + "$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", + "naptanId": "9400ZZLUQWY2", + "modes": [], + "icsCode": "1000187", + "stationNaptan": "940GZZLUQWY", + "lines": [], + "lineGroup": [], + "lineModeGroups": [], + "status": true, + "id": "9400ZZLUQWY2", + "commonName": "Queensway Station", + "placeType": "StopPoint", + "additionalProperties": [], + "children": [], + "lat": 0, + "lon": 0 + } + ], + "lat": 51.510312, + "lon": -0.187152 + }, + { + "$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", + "naptanId": "940GZZLURBG", + "modes": [ + "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" + } + ], + "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": "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": "9400ZZLURBG1", + "modes": [], + "icsCode": "1000190", + "stationNaptan": "940GZZLURBG", + "lines": [], + "lineGroup": [], + "lineModeGroups": [], + "status": true, + "id": "9400ZZLURBG1", + "commonName": "Redbridge Underground Station", + "placeType": "StopPoint", + "additionalProperties": [], + "children": [], + "lat": 0, + "lon": 0 + }, + { + "$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", + "naptanId": "9400ZZLURBG2", + "modes": [], + "icsCode": "1000190", + "stationNaptan": "940GZZLURBG", + "lines": [], + "lineGroup": [], + "lineModeGroups": [], + "status": true, + "id": "9400ZZLURBG2", + "commonName": "Redbridge Station", + "placeType": "StopPoint", + "additionalProperties": [], + "children": [], + "lat": 0, + "lon": 0 + } + ], + "lat": 51.576243, + "lon": 0.04536 + }, + { + "$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", + "naptanId": "940GZZLURSG", + "modes": [ + "tube" + ], + "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" + } + ], + "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": "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": "9400ZZLURSG1", + "modes": [], + "icsCode": "1000198", + "stationNaptan": "940GZZLURSG", + "lines": [], + "lineGroup": [], + "lineModeGroups": [], + "status": true, + "id": "9400ZZLURSG1", + "commonName": "Ruislip Gardens Underground Station", + "placeType": "StopPoint", + "additionalProperties": [], + "children": [], + "lat": 0, + "lon": 0 + }, + { + "$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", + "naptanId": "9400ZZLURSG2", + "modes": [], + "icsCode": "1000198", + "stationNaptan": "940GZZLURSG", + "lines": [], + "lineGroup": [], + "lineModeGroups": [], + "status": true, + "id": "9400ZZLURSG2", + "commonName": "Ruislip Gardens", + "placeType": "StopPoint", + "additionalProperties": [], + "children": [], + "lat": 0, + "lon": 0 + } + ], + "lat": 51.560736, + "lon": -0.41071 + }, + { + "$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": "9400ZZLURVY1", + "modes": [], + "icsCode": "1000194", + "stationNaptan": "940GZZLURVY", + "lines": [], + "lineGroup": [], + "lineModeGroups": [], + "status": true, + "id": "9400ZZLURVY1", + "commonName": "Roding Valley Underground Station", + "placeType": "StopPoint", + "additionalProperties": [], + "children": [], + "lat": 0, + "lon": 0 + }, + { + "$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", + "naptanId": "9400ZZLURVY2", + "modes": [], + "icsCode": "1000194", + "stationNaptan": "940GZZLURVY", + "lines": [], + "lineGroup": [], + "lineModeGroups": [], + "status": true, + "id": "9400ZZLURVY2", + "commonName": "Roding Valley Underground Station", + "placeType": "StopPoint", + "additionalProperties": [], + "children": [], + "lat": 0, + "lon": 0 + } + ], + "lat": 51.617199, + "lon": 0.043647 + }, + { + "$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": "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, + "lon": 0 + }, + { + "$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", + "naptanId": "9400ZZLUSBC2", + "modes": [], + "icsCode": "1000203", + "stationNaptan": "940GZZLUSBC", + "hubNaptanCode": "HUBSPB", + "lines": [], + "lineGroup": [], + "lineModeGroups": [], + "status": true, + "id": "9400ZZLUSBC2", + "commonName": "Shepherd's Bush (Central Line)", + "placeType": "StopPoint", + "additionalProperties": [], + "children": [], + "lat": 0, + "lon": 0 + } + ], + "lat": 51.504376, + "lon": -0.218813 + }, + { + "$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", + "naptanId": "940GZZLUSNB", + "modes": [ + "tube" + ], + "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" + } + ], + "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": "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": "9400ZZLUSNB1", + "modes": [], + "icsCode": "1000207", + "stationNaptan": "940GZZLUSNB", + "lines": [], + "lineGroup": [], + "lineModeGroups": [], + "status": true, + "id": "9400ZZLUSNB1", + "commonName": "Snaresbrook Underground Station", + "placeType": "StopPoint", + "additionalProperties": [], + "children": [], + "lat": 0, + "lon": 0 + }, + { + "$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", + "naptanId": "9400ZZLUSNB2", + "modes": [], + "icsCode": "1000207", + "stationNaptan": "940GZZLUSNB", + "lines": [], + "lineGroup": [], + "lineModeGroups": [], + "status": true, + "id": "9400ZZLUSNB2", + "commonName": "Snaresbrook Underground Station", + "placeType": "StopPoint", + "additionalProperties": [], + "children": [], + "lat": 0, + "lon": 0 + } + ], + "lat": 51.580678, + "lon": 0.02144 + }, + { + "$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", + "naptanId": "940GZZLUSPU", + "modes": [ + "tube" + ], + "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" + } + ], + "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": "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": "Address", + "key": "Address", + "sourceSystemKey": "StaticObjects", + "value": "St. Paul's,London Underground Ltd.,Cheapside,London,EC2V 6AA" + }, + { + "$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", + "category": "Facility", + "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": "Facility", + "key": "Ticket Halls", + "sourceSystemKey": "StaticObjects", + "value": "1" + }, + { + "$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", + "category": "Facility", + "key": "WiFi", + "sourceSystemKey": "StaticObjects", + "value": "yes" + }, + { + "$type": "Tfl.Api.Presentation.Entities.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": "BikePoints_703" + }, + { + "$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": "9400ZZLUSPU1", + "modes": [], + "icsCode": "1000225", + "stationNaptan": "940GZZLUSPU", + "lines": [], + "lineGroup": [], + "lineModeGroups": [], + "status": true, + "id": "9400ZZLUSPU1", + "commonName": "St. Paul's Underground Station", + "placeType": "StopPoint", + "additionalProperties": [], + "children": [], + "lat": 0, + "lon": 0 + }, + { + "$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", + "naptanId": "9400ZZLUSPU2", + "modes": [], + "icsCode": "1000225", + "stationNaptan": "940GZZLUSPU", + "lines": [], + "lineGroup": [], + "lineModeGroups": [], + "status": true, + "id": "9400ZZLUSPU2", + "commonName": "St. Paul's Underground Station", + "placeType": "StopPoint", + "additionalProperties": [], + "children": [], + "lat": 0, + "lon": 0 + } + ], + "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": "9400ZZLUSRP1", + "modes": [], + "icsCode": "1000214", + "stationNaptan": "940GZZLUSRP", + "hubNaptanCode": "HUBSRU", + "lines": [], + "lineGroup": [], + "lineModeGroups": [], + "status": true, + "id": "9400ZZLUSRP1", + "commonName": "South Ruislip Underground Station", + "placeType": "StopPoint", + "additionalProperties": [], + "children": [], + "lat": 0, + "lon": 0 + }, + { + "$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", + "naptanId": "9400ZZLUSRP2", + "modes": [], + "icsCode": "1000214", + "stationNaptan": "940GZZLUSRP", + "hubNaptanCode": "HUBSRU", + "lines": [], + "lineGroup": [], + "lineModeGroups": [], + "status": true, + "id": "9400ZZLUSRP2", + "commonName": "South Ruislip Station", + "placeType": "StopPoint", + "additionalProperties": [], + "children": [], + "lat": 0, + "lon": 0 + } + ], + "lat": 51.556853, + "lon": -0.398915 + }, + { + "$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_785" + }, + { + "$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": "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, + "lon": 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, + "lon": 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, + "lon": 0 + } + ], + "lat": 51.541806, + "lon": -0.003458 + }, + { + "$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", + "naptanId": "940GZZLUSWF", + "modes": [ + "tube" + ], + "icsCode": "1000217", + "stopType": "NaptanMetroStation", + "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": "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 – 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": "9400ZZLUSWF1", + "modes": [], + "icsCode": "1000217", + "stationNaptan": "940GZZLUSWF", + "lines": [], + "lineGroup": [], + "lineModeGroups": [], + "status": true, + "id": "9400ZZLUSWF1", + "commonName": "South Woodford Underground Station", + "placeType": "StopPoint", + "additionalProperties": [], + "children": [], + "lat": 0, + "lon": 0 + }, + { + "$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", + "naptanId": "9400ZZLUSWF2", + "modes": [], + "icsCode": "1000217", + "stationNaptan": "940GZZLUSWF", + "lines": [], + "lineGroup": [], + "lineModeGroups": [], + "status": true, + "id": "9400ZZLUSWF2", + "commonName": "South Woodford Underground Station", + "placeType": "StopPoint", + "additionalProperties": [], + "children": [], + "lat": 0, + "lon": 0 + } + ], + "lat": 51.591907, + "lon": 0.027338 + }, + { + "$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": "Address", + "key": "Address", + "sourceSystemKey": "StaticObjects", + "value": "Tottenham Court Road Station,London Underground Ltd.,Oxford St,London,W1D 2DH" + }, + { + "$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", + "category": "Facility", + "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": "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": "BikePoints_776" + }, + { + "$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": "9400ZZLUTCR1", + "modes": [], + "icsCode": "1000235", + "stationNaptan": "940GZZLUTCR", + "hubNaptanCode": "HUBTCR", + "lines": [], + "lineGroup": [], + "lineModeGroups": [], + "status": true, + "id": "9400ZZLUTCR1", + "commonName": "Tottenham Court Road Underground Station", + "placeType": "StopPoint", + "additionalProperties": [], + "children": [], + "lat": 0, + "lon": 0 + }, + { + "$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", + "naptanId": "9400ZZLUTCR4", + "modes": [], + "icsCode": "1000235", + "stationNaptan": "940GZZLUTCR", + "hubNaptanCode": "HUBTCR", + "lines": [], + "lineGroup": [], + "lineModeGroups": [], + "status": true, + "id": "9400ZZLUTCR4", + "commonName": "Tottenham Court Road Underground Station", + "placeType": "StopPoint", + "additionalProperties": [], + "children": [], + "lat": 0, + "lon": 0 + }, + { + "$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", + "naptanId": "9400ZZLUTCR2", + "modes": [], + "icsCode": "1000235", + "stationNaptan": "940GZZLUTCR", + "hubNaptanCode": "HUBTCR", + "lines": [], + "lineGroup": [], + "lineModeGroups": [], + "status": true, + "id": "9400ZZLUTCR2", + "commonName": "Tottenham Court Road Underground Station", + "placeType": "StopPoint", + "additionalProperties": [], + "children": [], + "lat": 0, + "lon": 0 + }, + { + "$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", + "naptanId": "9400ZZLUTCR3", + "modes": [], + "icsCode": "1000235", + "stationNaptan": "940GZZLUTCR", + "hubNaptanCode": "HUBTCR", + "lines": [], + "lineGroup": [], + "lineModeGroups": [], + "status": true, + "id": "9400ZZLUTCR3", + "commonName": "Tottenham Court Road Underground Station", + "placeType": "StopPoint", + "additionalProperties": [], + "children": [], + "lat": 0, + "lon": 0 + } + ], + "lat": 51.516426, + "lon": -0.13041 + }, + { + "$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": "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": "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": "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": "9400ZZLUTHB1", + "modes": [], + "icsCode": "1000232", + "stationNaptan": "940GZZLUTHB", + "lines": [], + "lineGroup": [], + "lineModeGroups": [], + "status": true, + "id": "9400ZZLUTHB1", + "commonName": "Theydon Bois Underground Station", + "placeType": "StopPoint", + "additionalProperties": [], + "children": [], + "lat": 0, + "lon": 0 + }, + { + "$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", + "naptanId": "9400ZZLUTHB2", + "modes": [], + "icsCode": "1000232", + "stationNaptan": "940GZZLUTHB", + "lines": [], + "lineGroup": [], + "lineModeGroups": [], + "status": true, + "id": "9400ZZLUTHB2", + "commonName": "Theydon Bois Underground Station", + "placeType": "StopPoint", + "additionalProperties": [], + "children": [], + "lat": 0, + "lon": 0 + } + ], + "lat": 51.671759, + "lon": 0.103085 + }, + { + "$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", + "naptanId": "940GZZLUWCY", + "modes": [ + "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" + } + ], + "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": "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_652" + }, + { + "$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_879" + }, + { + "$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", + "category": "NearestPlaces", + "key": "SourceSystemPlaceId", + "sourceSystemKey": "StaticObjects", + "value": "BikePoints_884" + } + ], + "children": [ + { + "$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", + "naptanId": "9400ZZLUWCY1", + "modes": [], + "icsCode": "1000269", + "stationNaptan": "940GZZLUWCY", + "lines": [], + "lineGroup": [], + "lineModeGroups": [], + "status": true, + "id": "9400ZZLUWCY1", + "commonName": "White City Underground Station", + "placeType": "StopPoint", + "additionalProperties": [], + "children": [], + "lat": 0, + "lon": 0 + }, + { + "$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", + "naptanId": "9400ZZLUWCY2", + "modes": [], + "icsCode": "1000269", + "stationNaptan": "940GZZLUWCY", + "lines": [], + "lineGroup": [], + "lineModeGroups": [], + "status": true, + "id": "9400ZZLUWCY2", + "commonName": "White City Underground Station", + "placeType": "StopPoint", + "additionalProperties": [], + "children": [], + "lat": 0, + "lon": 0 + } + ], + "lat": 51.511959, + "lon": -0.224297 + }, + { + "$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", + "naptanId": "940GZZLUWOF", + "modes": [ + "tube" + ], + "icsCode": "1000274", + "stopType": "NaptanMetroStation", + "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": "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": "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": "Address", + "key": "Address", + "sourceSystemKey": "StaticObjects", + "value": "Woodford Station,London Underground Ltd.,Snakes Lane,Woodford Green,Essex,IG8 7QE" + }, + { + "$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", + "category": "Facility", + "key": "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 – 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": "9400ZZLUWOF1", + "modes": [], + "icsCode": "1000274", + "stationNaptan": "940GZZLUWOF", + "lines": [], + "lineGroup": [], + "lineModeGroups": [], + "status": true, + "id": "9400ZZLUWOF1", + "commonName": "Woodford Underground Station", + "placeType": "StopPoint", + "additionalProperties": [], + "children": [], + "lat": 0, + "lon": 0 + }, + { + "$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", + "naptanId": "9400ZZLUWOF2", + "modes": [], + "icsCode": "1000274", + "stationNaptan": "940GZZLUWOF", + "lines": [], + "lineGroup": [], + "lineModeGroups": [], + "status": true, + "id": "9400ZZLUWOF2", + "commonName": "Woodford Underground Station", + "placeType": "StopPoint", + "additionalProperties": [], + "children": [], + "lat": 0, + "lon": 0 + } + ], + "lat": 51.606899, + "lon": 0.03397 + }, + { + "$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": "Facility", + "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": "West Ruislip Station,London Underground Ltd.,Ickenham Rd,West Ruislip,Middlesex,HA4 7DW" + }, + { + "$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", + "category": "Facility", + "key": "Help Points", + "sourceSystemKey": "StaticObjects", + "value": "0 on platforms, 0 in ticket halls, 0 elsewhere" + }, + { + "$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.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": "9400ZZLUWRP1", + "modes": [], + "icsCode": "1000267", + "stationNaptan": "940GZZLUWRP", + "hubNaptanCode": "HUBWRU", + "lines": [], + "lineGroup": [], + "lineModeGroups": [], + "status": true, + "id": "9400ZZLUWRP1", + "commonName": "West Ruislip Underground Station", + "placeType": "StopPoint", + "additionalProperties": [], + "children": [], + "lat": 0, + "lon": 0 + } + ], + "lat": 51.569688, + "lon": -0.437886 + }, + { + "$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", + "naptanId": "940GZZLUWSD", + "modes": [ + "tube" + ], + "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" + } + ], + "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": "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": "Help Points", + "sourceSystemKey": "StaticObjects", + "value": "0 on platforms, 0 in ticket halls, 0 elsewhere" + }, + { + "$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", + "category": "Facility", + "key": "Photo Booths", + "sourceSystemKey": "StaticObjects", + "value": "0" + }, + { + "$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", + "category": "Facility", + "key": "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": "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": "9400ZZLUWSD1", + "modes": [], + "icsCode": "1000250", + "stationNaptan": "940GZZLUWSD", + "lines": [], + "lineGroup": [], + "lineModeGroups": [], + "status": true, + "id": "9400ZZLUWSD1", + "commonName": "Wanstead Underground Station", + "placeType": "StopPoint", + "additionalProperties": [], + "children": [], + "lat": 0, + "lon": 0 + }, + { + "$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", + "naptanId": "9400ZZLUWSD2", + "modes": [], + "icsCode": "1000250", + "stationNaptan": "940GZZLUWSD", + "lines": [], + "lineGroup": [], + "lineModeGroups": [], + "status": true, + "id": "9400ZZLUWSD2", + "commonName": "Wanstead Station", + "placeType": "StopPoint", + "additionalProperties": [], + "children": [], + "lat": 0, + "lon": 0 + } + ], + "lat": 51.575501, + "lon": 0.028527 + }, + { + "$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", + "naptanId": "940GZZLUWTA", + "modes": [ + "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" + } + ], + "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": "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": "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": "9400ZZLUWTA1", + "modes": [], + "icsCode": "1000258", + "stationNaptan": "940GZZLUWTA", + "lines": [], + "lineGroup": [], + "lineModeGroups": [], + "status": true, + "id": "9400ZZLUWTA1", + "commonName": "West Acton Underground Station", + "placeType": "StopPoint", + "additionalProperties": [], + "children": [], + "lat": 0, + "lon": 0 + }, + { + "$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", + "naptanId": "9400ZZLUWTA2", + "modes": [], + "icsCode": "1000258", + "stationNaptan": "940GZZLUWTA", + "lines": [], + "lineGroup": [], + "lineModeGroups": [], + "status": true, + "id": "9400ZZLUWTA2", + "commonName": "West Acton Underground Station", + "placeType": "StopPoint", + "additionalProperties": [], + "children": [], + "lat": 0, + "lon": 0 + } + ], + "lat": 51.518001, + "lon": -0.28098 + } + ], + "elizabeth": [ + { + "$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", + "naptanId": "910GABWDXR", + "modes": [ + "elizabeth-line" + ], + "icsCode": "1001001", + "stopType": "NaptanRailStation", + "stationNaptan": "910GABWDXR", + "hubNaptanCode": "HUBABW", + "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" + } + ], + "lineGroup": [ + { + "$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", + "stationAtcoCode": "910GABWDXR", + "lineIdentifier": [ + "elizabeth" + ] + } + ], + "lineModeGroups": [ + { + "$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", + "modeName": "elizabeth-line", + "lineIdentifier": [ + "elizabeth" + ] + } + ], + "status": true, + "id": "910GABWDXR", + "commonName": "Abbey Wood", + "placeType": "StopPoint", + "additionalProperties": [ + { + "$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", + "category": "Address", + "key": "Address", + "sourceSystemKey": "NreStationData", + "value": "Abbey Wood station,\r\n Wilton Road,\r\n Abbey Wood,\r\n Greater London,\r\n SE2 9RH" + }, + { + "$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": "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": "20:05" + }, + { + "$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", + "category": "Opening Time", + "key": "SunFrom", + "sourceSystemKey": "NreStationData", + "value": "07:30" + }, + { + "$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", + "category": "Opening Time", + "key": "SunTo", + "sourceSystemKey": "NreStationData", + "value": "19: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": "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": "9100ABWDXR0", + "modes": [], + "icsCode": "1001001", + "stationNaptan": "910GABWDXR", + "hubNaptanCode": "HUBABW", + "lines": [], + "lineGroup": [], + "lineModeGroups": [], + "status": true, + "id": "9100ABWDXR0", + "commonName": "Abbey Wood Station", + "placeType": "StopPoint", + "additionalProperties": [], + "children": [], + "lat": 51.491284, + "lon": 0.121087 + }, + { + "$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", + "naptanId": "9100ABWDXR1", + "modes": [], + "icsCode": "1001001", + "stationNaptan": "910GABWDXR", + "hubNaptanCode": "HUBABW", + "lines": [], + "lineGroup": [], + "lineModeGroups": [], + "status": true, + "id": "9100ABWDXR1", + "commonName": "Abbey Wood Station", + "placeType": "StopPoint", + "additionalProperties": [], + "children": [], + "lat": 0, + "lon": 0 + } + ], + "lat": 51.491284, + "lon": 0.121087 + }, + { + "$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", + "naptanId": "910GACTONML", + "modes": [ + "elizabeth-line", + "national-rail" + ], + "icsCode": "1001003", + "stopType": "NaptanRailStation", + "stationNaptan": "910GACTONML", + "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": "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", + "stationAtcoCode": "910GACTONML", + "lineIdentifier": [ + "elizabeth", + "great-western-railway" + ] + } + ], + "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": [ + "great-western-railway" + ] + } + ], + "status": true, + "id": "910GACTONML", + "commonName": "Acton Main Line Rail Station", + "placeType": "StopPoint", + "additionalProperties": [ + { + "$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", + "category": "Address", + "key": "Address", + "sourceSystemKey": "NreStationData", + "value": "Acton Main Line station,\r\n Horn Lane,\r\n Acton,\r\n Greater London,\r\n W3 9EH" + }, + { + "$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:40" + }, + { + "$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", + "category": "Opening Time", + "key": "MonFriTo", + "sourceSystemKey": "NreStationData", + "value": "10:40" + }, + { + "$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": "08:00" + }, + { + "$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": "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": "StationOwnedByTfl", + "key": "OwnedByTfl", + "sourceSystemKey": "NreStationData", + "value": "true" + }, + { + "$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": "9100ACTONML0", + "modes": [], + "icsCode": "1001003", + "stationNaptan": "910GACTONML", + "lines": [], + "lineGroup": [], + "lineModeGroups": [], + "status": true, + "id": "9100ACTONML0", + "commonName": "Acton Main Line Station", + "placeType": "StopPoint", + "additionalProperties": [], + "children": [], + "lat": 0, + "lon": 0 + } + ], + "lat": 51.51718, + "lon": -0.266756 + }, + { + "$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", + "naptanId": "910GBNHAM", + "modes": [ + "elizabeth-line", + "national-rail" + ], + "icsCode": "1000860", + "stopType": "NaptanRailStation", + "stationNaptan": "910GBNHAM", + "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": "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", + "stationAtcoCode": "910GBNHAM", + "lineIdentifier": [ + "elizabeth" + ] + }, + { + "$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", + "stationAtcoCode": "910GBNHAM", + "lineIdentifier": [ + "great-western-railway" + ] + } + ], + "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": [ + "great-western-railway" + ] + } + ], + "status": true, + "id": "910GBNHAM", + "commonName": "Burnham (Berks) Rail Station", + "placeType": "StopPoint", + "additionalProperties": [ + { + "$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", + "category": "Address", + "key": "Address", + "sourceSystemKey": "NreStationData", + "value": "Burnham station,\r\n Station Road,\r\n Burnham,\r\n Buckinghamshire,\r\n SL1 6JT" + }, + { + "$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:15" + }, + { + "$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": "no" + }, + { + "$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: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: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": "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": "StationOwnedByTfl", + "key": "OwnedByTfl", + "sourceSystemKey": "NreStationData", + "value": "true" + } + ], + "children": [ + { + "$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", + "naptanId": "9100BNHAM0", + "modes": [], + "icsCode": "1000860", + "stationNaptan": "910GBNHAM", + "lines": [], + "lineGroup": [], + "lineModeGroups": [], + "status": true, + "id": "9100BNHAM0", + "commonName": "Burnham (Berks) Rail Station", + "placeType": "StopPoint", + "additionalProperties": [], + "children": [], + "lat": 51.523506, + "lon": -0.646374 + }, + { + "$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", + "naptanId": "9100BNHAM1", + "modes": [], + "icsCode": "1000860", + "stationNaptan": "910GBNHAM", + "lines": [], + "lineGroup": [], + "lineModeGroups": [], + "status": true, + "id": "9100BNHAM1", + "commonName": "Burnham (Berks) Rail Station", + "placeType": "StopPoint", + "additionalProperties": [], + "children": [], + "lat": 0, + "lon": 0 + }, + { + "$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", + "naptanId": "9100BNHAM2", + "modes": [], + "icsCode": "1000860", + "stationNaptan": "910GBNHAM", + "lines": [], + "lineGroup": [], + "lineModeGroups": [], + "status": true, + "id": "9100BNHAM2", + "commonName": "Burnham (Berks) Rail Station", + "placeType": "StopPoint", + "additionalProperties": [], + "children": [], + "lat": 0, + "lon": 0 + } + ], + "lat": 51.523506, + "lon": -0.646374 + }, + { + "$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", + "naptanId": "910GBONDST", + "modes": [ + "elizabeth-line" + ], + "icsCode": "1000025", + "stopType": "NaptanRailStation", + "stationNaptan": "910GBONDST", + "hubNaptanCode": "HUBBDS", + "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" + } + ], + "lineGroup": [ + { + "$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", + "stationAtcoCode": "910GBONDST", + "lineIdentifier": [ + "elizabeth" + ] + } + ], + "lineModeGroups": [ + { + "$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", + "modeName": "elizabeth-line", + "lineIdentifier": [ + "elizabeth" + ] + } + ], + "status": true, + "id": "910GBONDST", + "commonName": "Bond Street", + "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": "Gates", + "sourceSystemKey": "StaticObjects", + "value": "12" + }, + { + "$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", + "category": "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": "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": "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": "Photo Booths", + "sourceSystemKey": "StaticObjects", + "value": "0" + }, + { + "$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", + "category": "Facility", + "key": "Waiting Room", + "sourceSystemKey": "StaticObjects", + "value": "no" + }, + { + "$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", + "category": "Facility", + "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": "Help Points", + "sourceSystemKey": "StaticObjects", + "value": "0 on platforms, 0 in ticket halls, 0 elsewhere" + }, + { + "$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.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": "Ticket Halls", + "sourceSystemKey": "StaticObjects", + "value": "1" + }, + { + "$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", + "category": "Facility", + "key": "Toilets", + "sourceSystemKey": "StaticObjects", + "value": "no" + }, + { + "$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", + "category": "Address", + "key": "Address", + "sourceSystemKey": "NreStationData", + "value": "Bond Street station,\r\n Oxford Street,\r\n London,\r\n W1C 2JT" + }, + { + "$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" + } + ], + "children": [ + { + "$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", + "naptanId": "9100BONDST0", + "modes": [], + "icsCode": "1000025", + "stationNaptan": "910GBONDST", + "hubNaptanCode": "HUBBDS", + "lines": [], + "lineGroup": [], + "lineModeGroups": [], + "status": true, + "id": "9100BONDST0", + "commonName": "Bond Street Station", + "placeType": "StopPoint", + "additionalProperties": [], + "children": [], + "lat": 0, + "lon": 0 + }, + { + "$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", + "naptanId": "9100BONDST1", + "modes": [], + "icsCode": "1000025", + "stationNaptan": "910GBONDST", + "hubNaptanCode": "HUBBDS", + "lines": [], + "lineGroup": [], + "lineModeGroups": [], + "status": true, + "id": "9100BONDST1", + "commonName": "Bond Street Station", + "placeType": "StopPoint", + "additionalProperties": [], + "children": [], + "lat": 51.513282, + "lon": -0.149317 + } + ], + "lat": 51.513282, + "lon": -0.149317 + }, + { + "$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", + "naptanId": "910GBRTWOOD", + "modes": [ + "elizabeth-line" + ], + "icsCode": "1000292", + "stopType": "NaptanRailStation", + "stationNaptan": "910GBRTWOOD", + "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" + } + ], + "lineGroup": [ + { + "$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", + "stationAtcoCode": "910GBRTWOOD", + "lineIdentifier": [ + "elizabeth" + ] + } + ], + "lineModeGroups": [ + { + "$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", + "modeName": "elizabeth-line", + "lineIdentifier": [ + "elizabeth" + ] + } + ], + "status": true, + "id": "910GBRTWOOD", + "commonName": "Brentwood Rail Station", + "placeType": "StopPoint", + "additionalProperties": [ + { + "$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", + "category": "Address", + "key": "Address", + "sourceSystemKey": "NreStationData", + "value": "Brentwood station,\r\n Warley Hill,\r\n Brentwood,\r\n Essex,\r\n CM14 4EW" + }, + { + "$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: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": "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": "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": "9" + } + ], + "children": [ + { + "$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", + "naptanId": "9100BRTWOOD1", + "modes": [], + "icsCode": "1000292", + "stationNaptan": "910GBRTWOOD", + "lines": [], + "lineGroup": [], + "lineModeGroups": [], + "status": true, + "id": "9100BRTWOOD1", + "commonName": "Brentwood Rail Station", + "placeType": "StopPoint", + "additionalProperties": [], + "children": [], + "lat": 0, + "lon": 0 + }, + { + "$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", + "naptanId": "9100BRTWOOD2", + "modes": [], + "icsCode": "1000292", + "stationNaptan": "910GBRTWOOD", + "lines": [], + "lineGroup": [], + "lineModeGroups": [], + "status": true, + "id": "9100BRTWOOD2", + "commonName": "Brentwood Rail Station", + "placeType": "StopPoint", + "additionalProperties": [], + "children": [], + "lat": 0, + "lon": 0 + } + ], + "lat": 51.613605, + "lon": 0.299586 + }, + { + "$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", + "naptanId": "910GCANWHRF", + "modes": [ + "elizabeth-line" + ], + "icsCode": "1002163", + "stopType": "NaptanRailStation", + "stationNaptan": "910GCANWHRF", + "hubNaptanCode": "HUBCAW", + "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" + } + ], + "lineGroup": [ + { + "$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": "elizabeth-line", + "lineIdentifier": [ + "elizabeth" + ] + } + ], + "status": true, + "id": "910GCANWHRF", + "commonName": "Canary Wharf", + "placeType": "StopPoint", + "additionalProperties": [ + { + "$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", + "category": "Address", + "key": "Address", + "sourceSystemKey": "NreStationData", + "value": "Canary Wharf station,\r\n Crossrail Place,\r\n Canary Wharf,\r\n London,\r\n E14 5AB" + }, + { + "$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": "2" + } + ], + "children": [ + { + "$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", + "naptanId": "9100CANWHRF0", + "modes": [], + "icsCode": "1002163", + "stationNaptan": "910GCANWHRF", + "hubNaptanCode": "HUBCAW", + "lines": [], + "lineGroup": [], + "lineModeGroups": [], + "status": true, + "id": "9100CANWHRF0", + "commonName": "Canary Wharf Rail Station", + "placeType": "StopPoint", + "additionalProperties": [], + "children": [], + "lat": 51.506321, + "lon": -0.018815 + }, + { + "$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", + "naptanId": "9100CANWHRF1", + "modes": [], + "icsCode": "1002163", + "stationNaptan": "910GCANWHRF", + "hubNaptanCode": "HUBCAW", + "lines": [], + "lineGroup": [], + "lineModeGroups": [], + "status": true, + "id": "9100CANWHRF1", + "commonName": "Canary Wharf Rail Station", + "placeType": "StopPoint", + "additionalProperties": [], + "children": [], + "lat": 0, + "lon": 0 + } + ], + "lat": 51.506321, + "lon": -0.018815 + }, + { + "$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", + "naptanId": "910GCHDWLHT", + "modes": [ + "elizabeth-line" + ], + "icsCode": "1001055", + "stopType": "NaptanRailStation", + "stationNaptan": "910GCHDWLHT", + "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" + } + ], + "lineGroup": [ + { + "$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", + "stationAtcoCode": "910GCHDWLHT", + "lineIdentifier": [ + "elizabeth" + ] + } + ], + "lineModeGroups": [ + { + "$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", + "modeName": "elizabeth-line", + "lineIdentifier": [ + "elizabeth" + ] + } + ], + "status": true, + "id": "910GCHDWLHT", + "commonName": "Chadwell Heath Rail Station", + "placeType": "StopPoint", + "additionalProperties": [ + { + "$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", + "category": "Address", + "key": "Address", + "sourceSystemKey": "NreStationData", + "value": "Chadwell Heath station,\r\n Station Road,\r\n Chadwell Heath,\r\n Greater London,\r\n RM6 4BU" + }, + { + "$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:10" + }, + { + "$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", + "category": "Opening Time", + "key": "MonFriTo", + "sourceSystemKey": "NreStationData", + "value": "19:40" + }, + { + "$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: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": "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": "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": "9100CHDWLHT1", + "modes": [], + "icsCode": "1001055", + "stationNaptan": "910GCHDWLHT", + "lines": [], + "lineGroup": [], + "lineModeGroups": [], + "status": true, + "id": "9100CHDWLHT1", + "commonName": "Chadwell Heath Station", + "placeType": "StopPoint", + "additionalProperties": [], + "children": [], + "lat": 0, + "lon": 0 + } + ], + "lat": 51.568039, + "lon": 0.128958 + }, + { + "$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", + "naptanId": "910GCUSTMHS", + "modes": [ + "elizabeth-line" + ], + "icsCode": "1001079", + "stopType": "NaptanRailStation", + "stationNaptan": "910GCUSTMHS", + "hubNaptanCode": "HUBCUS", + "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" + } + ], + "lineGroup": [ + { + "$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", + "stationAtcoCode": "910GCUSTMHS", + "lineIdentifier": [ + "elizabeth" + ] + } + ], + "lineModeGroups": [ + { + "$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", + "modeName": "elizabeth-line", + "lineIdentifier": [ + "elizabeth" + ] + } + ], + "status": true, + "id": "910GCUSTMHS", + "commonName": "Custom House Rail 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": "WiFi", + "sourceSystemKey": "StaticObjects", + "value": "no" + }, + { + "$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", + "category": "Address", + "key": "Address", + "sourceSystemKey": "NreStationData", + "value": "Custom House station,\r\n Victoria Dock Road,\r\n Canning Town,\r\n London,\r\n E16 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": "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": "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" + } + ], + "children": [ + { + "$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", + "naptanId": "9100CUSTMHS0", + "modes": [], + "icsCode": "1001079", + "stationNaptan": "910GCUSTMHS", + "hubNaptanCode": "HUBCUS", + "lines": [], + "lineGroup": [], + "lineModeGroups": [], + "status": true, + "id": "9100CUSTMHS0", + "commonName": "Custom House Station", + "placeType": "StopPoint", + "additionalProperties": [], + "children": [], + "lat": 0, + "lon": 0 + }, + { + "$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", + "naptanId": "9100CUSTMHS1", + "modes": [], + "icsCode": "1001079", + "stationNaptan": "910GCUSTMHS", + "hubNaptanCode": "HUBCUS", + "lines": [], + "lineGroup": [], + "lineModeGroups": [], + "status": true, + "id": "9100CUSTMHS1", + "commonName": "Custom House Station", + "placeType": "StopPoint", + "additionalProperties": [], + "children": [], + "lat": 0, + "lon": 0 + } + ], + "lat": 51.509436, + "lon": 0.027681 + }, + { + "$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", + "naptanId": "910GEALINGB", + "modes": [ + "elizabeth-line", + "national-rail" + ], + "icsCode": "1000062", + "stopType": "NaptanRailStation", + "stationNaptan": "910GEALINGB", + "hubNaptanCode": "HUBEAL", + "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": "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", + "stationAtcoCode": "910GEALINGB", + "lineIdentifier": [ + "elizabeth", + "great-western-railway" + ] + } + ], + "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": [ + "great-western-railway" + ] + } + ], + "status": true, + "id": "910GEALINGB", + "commonName": "Ealing Broadway Rail 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": "Ticket Halls", + "sourceSystemKey": "StaticObjects", + "value": "1" + }, + { + "$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": "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": "Toilets", + "sourceSystemKey": "StaticObjects", + "value": "no" + }, + { + "$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", + "category": "Facility", + "key": "Car park", + "sourceSystemKey": "StaticObjects", + "value": "no" + }, + { + "$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", + "category": "Facility", + "key": "Photo Booths", + "sourceSystemKey": "StaticObjects", + "value": "0" + }, + { + "$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.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": "Gates", + "sourceSystemKey": "StaticObjects", + "value": "0" + }, + { + "$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": "Opening Time", + "key": "SatTo", + "sourceSystemKey": "StaticObjects", + "value": "23:25" + }, + { + "$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", + "category": "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": "MonFriTo", + "sourceSystemKey": "StaticObjects", + "value": "23:25" + }, + { + "$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.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": "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": "Help 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": "05:35" + }, + { + "$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", + "category": "Address", + "key": "Address", + "sourceSystemKey": "NreStationData", + "value": "Ealing Broadway station,\r\n The Broadway,\r\n Ealing,\r\n Greater London,\r\n W5 2NU" + }, + { + "$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": "05:35" + }, + { + "$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", + "category": "Opening Time", + "key": "MonFriTo", + "sourceSystemKey": "NreStationData", + "value": "23:25" + }, + { + "$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": "05:35" + }, + { + "$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", + "category": "Opening Time", + "key": "SatTo", + "sourceSystemKey": "NreStationData", + "value": "23:25" + }, + { + "$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": "20: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": "StationOwnedByTfl", + "key": "OwnedByTfl", + "sourceSystemKey": "NreStationData", + "value": "true" + } + ], + "children": [ + { + "$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", + "naptanId": "9100EALINGB0", + "modes": [], + "icsCode": "1000062", + "stationNaptan": "910GEALINGB", + "hubNaptanCode": "HUBEAL", + "lines": [], + "lineGroup": [], + "lineModeGroups": [], + "status": true, + "id": "9100EALINGB0", + "commonName": "Ealing Broadway Station", + "placeType": "StopPoint", + "additionalProperties": [], + "children": [], + "lat": 0, + "lon": 0 + }, + { + "$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", + "naptanId": "9100EALINGB1", + "modes": [], + "icsCode": "1000062", + "stationNaptan": "910GEALINGB", + "hubNaptanCode": "HUBEAL", + "lines": [], + "lineGroup": [], + "lineModeGroups": [], + "status": true, + "id": "9100EALINGB1", + "commonName": "Ealing Broadway Station", + "placeType": "StopPoint", + "additionalProperties": [], + "children": [], + "lat": 0, + "lon": 0 + } + ], + "lat": 51.514841, + "lon": -0.301752 + }, + { + "$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", + "naptanId": "910GFRNDXR", + "modes": [ + "elizabeth-line" + ], + "icsCode": "1000080", + "stopType": "NaptanRailStation", + "stationNaptan": "910GFRNDXR", + "hubNaptanCode": "HUBZFD", + "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" + } + ], + "lineGroup": [ + { + "$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", + "stationAtcoCode": "910GFRNDXR", + "lineIdentifier": [ + "elizabeth" + ] + } + ], + "lineModeGroups": [ + { + "$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", + "modeName": "elizabeth-line", + "lineIdentifier": [ + "elizabeth" + ] + } + ], + "status": true, + "id": "910GFRNDXR", + "commonName": "Farringdon", + "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": "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": "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": "Boarding Ramps", + "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": "Photo Booths", + "sourceSystemKey": "StaticObjects", + "value": "0" + }, + { + "$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", + "category": "Facility", + "key": "Car park", + "sourceSystemKey": "StaticObjects", + "value": "no" + }, + { + "$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.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": "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": "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": "Address", + "key": "Address", + "sourceSystemKey": "NreStationData", + "value": "Farringdon station,\r\n Cowcross Street,\r\n Farringdon,\r\n London,\r\n EC1M 6BY" + }, + { + "$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": "09:30" + }, + { + "$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", + "category": "Opening Time", + "key": "MonFriTo", + "sourceSystemKey": "NreStationData", + "value": "16: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": "0345 026 4700" + }, + { + "$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": "16:30" + }, + { + "$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", + "category": "Opening Time", + "key": "SunFrom", + "sourceSystemKey": "NreStationData", + "value": "09:30" + }, + { + "$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": "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" + } + ], + "children": [ + { + "$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", + "naptanId": "9100FRNDXR0", + "modes": [], + "icsCode": "1000080", + "stationNaptan": "910GFRNDXR", + "hubNaptanCode": "HUBZFD", + "lines": [], + "lineGroup": [], + "lineModeGroups": [], + "status": true, + "id": "9100FRNDXR0", + "commonName": "Farringdon Station", + "placeType": "StopPoint", + "additionalProperties": [], + "children": [], + "lat": 0, + "lon": 0 + }, + { + "$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", + "naptanId": "9100FRNDXR1", + "modes": [], + "icsCode": "1000080", + "stationNaptan": "910GFRNDXR", + "hubNaptanCode": "HUBZFD", + "lines": [], + "lineGroup": [], + "lineModeGroups": [], + "status": true, + "id": "9100FRNDXR1", + "commonName": "Farringdon Station", + "placeType": "StopPoint", + "additionalProperties": [], + "children": [], + "lat": 51.519635, + "lon": -0.102892 + } + ], + "lat": 51.519635, + "lon": -0.102892 + }, + { + "$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", + "naptanId": "910GFRSTGT", + "modes": [ + "elizabeth-line" + ], + "icsCode": "1001111", + "stopType": "NaptanRailStation", + "stationNaptan": "910GFRSTGT", + "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" + } + ], + "lineGroup": [ + { + "$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", + "stationAtcoCode": "910GFRSTGT", + "lineIdentifier": [ + "elizabeth" + ] + } + ], + "lineModeGroups": [ + { + "$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", + "modeName": "elizabeth-line", + "lineIdentifier": [ + "elizabeth" + ] + } + ], + "status": true, + "id": "910GFRSTGT", + "commonName": "Forest Gate Rail Station", + "placeType": "StopPoint", + "additionalProperties": [ + { + "$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", + "category": "Address", + "key": "Address", + "sourceSystemKey": "NreStationData", + "value": "Forest Gate station,\r\n Woodgrange Road,\r\n Forest Gate,\r\n Greater London,\r\n E7 0NF" + }, + { + "$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:10" + }, + { + "$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", + "category": "Opening Time", + "key": "MonFriTo", + "sourceSystemKey": "NreStationData", + "value": "19:40" + }, + { + "$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": "18:40" + }, + { + "$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: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": "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": "9100FRSTGT0", + "modes": [], + "icsCode": "1001111", + "stationNaptan": "910GFRSTGT", + "lines": [], + "lineGroup": [], + "lineModeGroups": [], + "status": true, + "id": "9100FRSTGT0", + "commonName": "Forest Gate Station", + "placeType": "StopPoint", + "additionalProperties": [], + "children": [], + "lat": 0, + "lon": 0 + }, + { + "$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", + "naptanId": "9100FRSTGT1", + "modes": [], + "icsCode": "1001111", + "stationNaptan": "910GFRSTGT", + "lines": [], + "lineGroup": [], + "lineModeGroups": [], + "status": true, + "id": "9100FRSTGT1", + "commonName": "Forest Gate Station", + "placeType": "StopPoint", + "additionalProperties": [], + "children": [], + "lat": 0, + "lon": 0 + } + ], + "lat": 51.549432, + "lon": 0.024353 + }, + { + "$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", + "naptanId": "910GGIDEAPK", + "modes": [ + "elizabeth-line", + "national-rail" + ], + "icsCode": "1001115", + "stopType": "NaptanRailStation", + "stationNaptan": "910GGIDEAPK", + "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" + } + ], + "lineGroup": [ + { + "$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", + "stationAtcoCode": "910GGIDEAPK", + "lineIdentifier": [ + "elizabeth" + ] + }, + { + "$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", + "stationAtcoCode": "910GGIDEAPK", + "lineIdentifier": [ + "greater-anglia" + ] + } + ], + "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" + ] + } + ], + "status": true, + "id": "910GGIDEAPK", + "commonName": "Gidea Park Rail Station", + "placeType": "StopPoint", + "additionalProperties": [ + { + "$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", + "category": "Address", + "key": "Address", + "sourceSystemKey": "NreStationData", + "value": "Gidea Park station,\r\n Station Road,\r\n Gidea Park,\r\n Greater London,\r\n RM2 6BX" + }, + { + "$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: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: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": "06: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": "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": "9100GIDEAPK1", + "modes": [], + "icsCode": "1001115", + "stationNaptan": "910GGIDEAPK", + "lines": [], + "lineGroup": [], + "lineModeGroups": [], + "status": true, + "id": "9100GIDEAPK1", + "commonName": "Gidea Park Station", + "placeType": "StopPoint", + "additionalProperties": [], + "children": [], + "lat": 0, + "lon": 0 + }, + { + "$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", + "naptanId": "9100GIDEAPK0", + "modes": [], + "icsCode": "1001115", + "stationNaptan": "910GGIDEAPK", + "lines": [], + "lineGroup": [], + "lineModeGroups": [], + "status": true, + "id": "9100GIDEAPK0", + "commonName": "Gidea Park Station", + "placeType": "StopPoint", + "additionalProperties": [], + "children": [], + "lat": 0, + "lon": 0 + } + ], + "lat": 51.581904, + "lon": 0.205964 + }, + { + "$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", + "naptanId": "910GGODMAYS", + "modes": [ + "elizabeth-line" + ], + "icsCode": "1001117", + "stopType": "NaptanRailStation", + "stationNaptan": "910GGODMAYS", + "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" + } + ], + "lineGroup": [ + { + "$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", + "stationAtcoCode": "910GGODMAYS", + "lineIdentifier": [ + "elizabeth" + ] + } + ], + "lineModeGroups": [ + { + "$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", + "modeName": "elizabeth-line", + "lineIdentifier": [ + "elizabeth" + ] + } + ], + "status": true, + "id": "910GGODMAYS", + "commonName": "Goodmayes Rail Station", + "placeType": "StopPoint", + "additionalProperties": [ + { + "$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", + "category": "Address", + "key": "Address", + "sourceSystemKey": "NreStationData", + "value": "Goodmayes station,\r\n Goodmayes Road,\r\n Goodmayes,\r\n Greater London,\r\n IG3 9UH" + }, + { + "$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:40" + }, + { + "$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": "07:10" + }, + { + "$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": "08:10" + }, + { + "$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": "4" + } + ], + "children": [ + { + "$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", + "naptanId": "9100GODMAYS1", + "modes": [], + "icsCode": "1001117", + "stationNaptan": "910GGODMAYS", + "lines": [], + "lineGroup": [], + "lineModeGroups": [], + "status": true, + "id": "9100GODMAYS1", + "commonName": "Goodmayes Station", + "placeType": "StopPoint", + "additionalProperties": [], + "children": [], + "lat": 0, + "lon": 0 + }, + { + "$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", + "naptanId": "9100GODMAYS2", + "modes": [], + "icsCode": "1001117", + "stationNaptan": "910GGODMAYS", + "lines": [], + "lineGroup": [], + "lineModeGroups": [], + "status": true, + "id": "9100GODMAYS2", + "commonName": "Goodmayes Station", + "placeType": "StopPoint", + "additionalProperties": [], + "children": [], + "lat": 0, + "lon": 0 + } + ], + "lat": 51.565579, + "lon": 0.110807 + }, + { + "$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", + "naptanId": "910GHANWELL", + "modes": [ + "elizabeth-line" + ], + "icsCode": "1001135", + "stopType": "NaptanRailStation", + "stationNaptan": "910GHANWELL", + "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" + } + ], + "lineGroup": [ + { + "$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", + "stationAtcoCode": "910GHANWELL", + "lineIdentifier": [ + "elizabeth" + ] + } + ], + "lineModeGroups": [ + { + "$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", + "modeName": "elizabeth-line", + "lineIdentifier": [ + "elizabeth" + ] + } + ], + "status": true, + "id": "910GHANWELL", + "commonName": "Hanwell Rail Station", + "placeType": "StopPoint", + "additionalProperties": [ + { + "$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", + "category": "Address", + "key": "Address", + "sourceSystemKey": "NreStationData", + "value": "Hanwell station,\r\n Campbell Road,\r\n Hanwell,\r\n Greater London,\r\n W7 3EB" + }, + { + "$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": "05:50" + }, + { + "$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", + "category": "Opening Time", + "key": "MonFriTo", + "sourceSystemKey": "NreStationData", + "value": "12: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:30" + }, + { + "$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": "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": "StationOwnedByTfl", + "key": "OwnedByTfl", + "sourceSystemKey": "NreStationData", + "value": "true" + }, + { + "$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": "9100HANWELL0", + "modes": [], + "icsCode": "1001135", + "stationNaptan": "910GHANWELL", + "lines": [], + "lineGroup": [], + "lineModeGroups": [], + "status": true, + "id": "9100HANWELL0", + "commonName": "Hanwell Station", + "placeType": "StopPoint", + "additionalProperties": [], + "children": [], + "lat": 0, + "lon": 0 + } + ], + "lat": 51.511835, + "lon": -0.338583 + }, + { + "$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", + "naptanId": "910GHAYESAH", + "modes": [ + "elizabeth-line", + "national-rail" + ], + "icsCode": "1001144", + "stopType": "NaptanRailStation", + "stationNaptan": "910GHAYESAH", + "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": "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", + "stationAtcoCode": "910GHAYESAH", + "lineIdentifier": [ + "elizabeth", + "great-western-railway" + ] + }, + { + "$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", + "stationAtcoCode": "910GHAYESAH", + "lineIdentifier": [ + "great-western-railway" + ] + } + ], + "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": [ + "great-western-railway" + ] + } + ], + "status": true, + "id": "910GHAYESAH", + "commonName": "Hayes & Harlington Rail Station", + "placeType": "StopPoint", + "additionalProperties": [ + { + "$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", + "category": "Address", + "key": "Address", + "sourceSystemKey": "NreStationData", + "value": "Hayes & Harlington station,\r\n Station Road,\r\n Hayes,\r\n Greater London,\r\n UB3 4BX" + }, + { + "$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: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": "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:10" + }, + { + "$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": "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": "StationOwnedByTfl", + "key": "OwnedByTfl", + "sourceSystemKey": "NreStationData", + "value": "true" + }, + { + "$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": "9100HAYESAH1", + "modes": [], + "icsCode": "1001144", + "stationNaptan": "910GHAYESAH", + "lines": [], + "lineGroup": [], + "lineModeGroups": [], + "status": true, + "id": "9100HAYESAH1", + "commonName": "Hayes & Harlington Station", + "placeType": "StopPoint", + "additionalProperties": [], + "children": [], + "lat": 0, + "lon": 0 + }, + { + "$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", + "naptanId": "9100HAYESAH2", + "modes": [], + "icsCode": "1001144", + "stationNaptan": "910GHAYESAH", + "lines": [], + "lineGroup": [], + "lineModeGroups": [], + "status": true, + "id": "9100HAYESAH2", + "commonName": "Hayes & Harlington Station", + "placeType": "StopPoint", + "additionalProperties": [], + "children": [], + "lat": 0, + "lon": 0 + }, + { + "$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", + "naptanId": "9100HAYESAH0", + "modes": [], + "icsCode": "1001144", + "stationNaptan": "910GHAYESAH", + "lines": [], + "lineGroup": [], + "lineModeGroups": [], + "status": true, + "id": "9100HAYESAH0", + "commonName": "Hayes & Harlington Station", + "placeType": "StopPoint", + "additionalProperties": [], + "children": [], + "lat": 0, + "lon": 0 + } + ], + "lat": 51.503096, + "lon": -0.420683 + }, + { + "$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", + "naptanId": "910GHRLDWOD", + "modes": [ + "elizabeth-line" + ], + "icsCode": "1001137", + "stopType": "NaptanRailStation", + "stationNaptan": "910GHRLDWOD", + "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" + } + ], + "lineGroup": [ + { + "$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", + "stationAtcoCode": "910GHRLDWOD", + "lineIdentifier": [ + "elizabeth" + ] + } + ], + "lineModeGroups": [ + { + "$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", + "modeName": "elizabeth-line", + "lineIdentifier": [ + "elizabeth" + ] + } + ], + "status": true, + "id": "910GHRLDWOD", + "commonName": "Harold Wood Rail Station", + "placeType": "StopPoint", + "additionalProperties": [ + { + "$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", + "category": "Address", + "key": "Address", + "sourceSystemKey": "NreStationData", + "value": "Harold Wood station,\r\n Gubbins Lane,\r\n Harold Wood,\r\n Greater London,\r\n RM3 0BL" + }, + { + "$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:10" + }, + { + "$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", + "category": "Opening Time", + "key": "MonFriTo", + "sourceSystemKey": "NreStationData", + "value": "19:40" + }, + { + "$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:40" + }, + { + "$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": "18: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": "6" + } + ], + "children": [ + { + "$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", + "naptanId": "9100HRLDWOD2", + "modes": [], + "icsCode": "1001137", + "stationNaptan": "910GHRLDWOD", + "lines": [], + "lineGroup": [], + "lineModeGroups": [], + "status": true, + "id": "9100HRLDWOD2", + "commonName": "Harold Wood Station", + "placeType": "StopPoint", + "additionalProperties": [], + "children": [], + "lat": 0, + "lon": 0 + } + ], + "lat": 51.592766, + "lon": 0.233129 + }, + { + "$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": [ + { + "$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" + } + ], + "lineGroup": [ + { + "$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", + "stationAtcoCode": "910GHTRWAPT", + "lineIdentifier": [ + "elizabeth", + "heathrow-express" + ] + } + ], + "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" + ] + } + ], + "status": true, + "id": "910GHTRWAPT", + "commonName": "Heathrow Terminals 2 & 3 Rail Station", + "placeType": "StopPoint", + "additionalProperties": [ + { + "$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", + "category": "Address", + "key": "Address", + "sourceSystemKey": "NreStationData", + "value": "Heathrow Airport Terminals 2 & 3 st,\r\n Inner Ring Road,\r\n Heathrow Airport,\r\n Greater London,\r\n TW6 1WD" + }, + { + "$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": "yes" + }, + { + "$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", + "category": "Opening Time", + "key": "MonFriFrom", + "sourceSystemKey": "NreStationData", + "value": "05:00" + }, + { + "$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", + "category": "Opening Time", + "key": "MonFriTo", + "sourceSystemKey": "NreStationData", + "value": "23:59" + }, + { + "$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:00" + }, + { + "$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", + "category": "Opening Time", + "key": "SatTo", + "sourceSystemKey": "NreStationData", + "value": "23:59" + }, + { + "$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", + "category": "Opening Time", + "key": "SunFrom", + "sourceSystemKey": "NreStationData", + "value": "05:00" + }, + { + "$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", + "category": "Opening Time", + "key": "SunTo", + "sourceSystemKey": "NreStationData", + "value": "23:59" + }, + { + "$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": "6" + } + ], + "children": [ + { + "$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", + "naptanId": "9100HTRWAPT0", + "modes": [], + "icsCode": "1001147", + "stationNaptan": "910GHTRWAPT", + "hubNaptanCode": "HUBH13", + "lines": [], + "lineGroup": [], + "lineModeGroups": [], + "status": true, + "id": "9100HTRWAPT0", + "commonName": "Heathrow Terminals 2 & 3 Rail Station", + "placeType": "StopPoint", + "additionalProperties": [], + "children": [], + "lat": 51.471987, + "lon": -0.454788 + } + ], + "lat": 51.471987, + "lon": -0.454788 + }, + { + "$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", + "naptanId": "910GHTRWTM4", + "modes": [ + "elizabeth-line" + ], + "icsCode": "1000104", + "stopType": "NaptanRailStation", + "stationNaptan": "910GHTRWTM4", + "hubNaptanCode": "HUBHX4", + "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" + } + ], + "lineGroup": [ + { + "$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", + "stationAtcoCode": "910GHTRWTM4", + "lineIdentifier": [ + "elizabeth" + ] + } + ], + "lineModeGroups": [ + { + "$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", + "modeName": "elizabeth-line", + "lineIdentifier": [ + "elizabeth" + ] + } + ], + "status": true, + "id": "910GHTRWTM4", + "commonName": "Heathrow Terminal 4 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": "Ticket Halls", + "sourceSystemKey": "StaticObjects", + "value": "1" + }, + { + "$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", + "category": "Address", + "key": "PhoneNo", + "sourceSystemKey": "StaticObjects", + "value": "0845 330 9880" + }, + { + "$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", + "category": "Facility", + "key": "Car park", + "sourceSystemKey": "StaticObjects", + "value": "no" + }, + { + "$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", + "category": "Facility", + "key": "Escalators", + "sourceSystemKey": "StaticObjects", + "value": "0" + }, + { + "$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", + "category": "Facility", + "key": "Help Points", + "sourceSystemKey": "StaticObjects", + "value": "0 on 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": "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, 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": "Address", + "sourceSystemKey": "StaticObjects", + "value": "Heathrow T4 Station,London Underground Ltd.,Hthrw Airport complex,Trmnl 4,Hounslow,Middx,TW6 1JH" + }, + { + "$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", + "category": "Facility", + "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": "Toilets", + "sourceSystemKey": "StaticObjects", + "value": "no" + }, + { + "$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", + "category": "Address", + "key": "Address", + "sourceSystemKey": "NreStationData", + "value": "Heathrow Airport Terminal 4 station,\r\n Southern Perimeter Road,\r\n Heathrow Airport,\r\n Greater London,\r\n TW6 3AA" + }, + { + "$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": "yes" + }, + { + "$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", + "category": "Opening Time", + "key": "MonFriFrom", + "sourceSystemKey": "NreStationData", + "value": "05:00" + }, + { + "$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", + "category": "Opening Time", + "key": "MonFriTo", + "sourceSystemKey": "NreStationData", + "value": "23:40" + }, + { + "$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:00" + }, + { + "$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", + "category": "Opening Time", + "key": "SatTo", + "sourceSystemKey": "NreStationData", + "value": "23:40" + }, + { + "$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", + "category": "Opening Time", + "key": "SunFrom", + "sourceSystemKey": "NreStationData", + "value": "05:00" + }, + { + "$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", + "category": "Opening Time", + "key": "SunTo", + "sourceSystemKey": "NreStationData", + "value": "23: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" + } + ], + "children": [ + { + "$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", + "naptanId": "9100HTRWTM40", + "modes": [], + "icsCode": "1000104", + "stationNaptan": "910GHTRWTM4", + "hubNaptanCode": "HUBHX4", + "lines": [], + "lineGroup": [], + "lineModeGroups": [], + "status": true, + "id": "9100HTRWTM40", + "commonName": "Heathrow Terminal 4", + "placeType": "StopPoint", + "additionalProperties": [], + "children": [], + "lat": 0, + "lon": 0 + } + ], + "lat": 51.458268, + "lon": -0.445463 + }, + { + "$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", + "naptanId": "910GHTRWTM5", + "modes": [ + "elizabeth-line", + "national-rail" + ], + "icsCode": "1016430", + "stopType": "NaptanRailStation", + "stationNaptan": "910GHTRWTM5", + "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": "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" + ] + } + ], + "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" + ] + } + ], + "status": true, + "id": "910GHTRWTM5", + "commonName": "Heathrow Terminal 5 Rail Station", + "placeType": "StopPoint", + "additionalProperties": [ + { + "$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,TW6 3AF" + }, + { + "$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.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": "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": "Address", + "key": "PhoneNo", + "sourceSystemKey": "StaticObjects", + "value": "0845 330 9880" + }, + { + "$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", + "category": "Facility", + "key": "Car park", + "sourceSystemKey": "StaticObjects", + "value": "no" + }, + { + "$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", + "category": "Facility", + "key": "Help Points", + "sourceSystemKey": "StaticObjects", + "value": "0 on 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": "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": "Waiting Room", + "sourceSystemKey": "StaticObjects", + "value": "no" + }, + { + "$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", + "category": "Address", + "key": "Address", + "sourceSystemKey": "NreStationData", + "value": "Heathrow Airport Terminal 5 station,\r\n Terminal 5,\r\n Heathrow Airport,\r\n Greater London,\r\n TW6 2GA" + }, + { + "$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": "yes" + }, + { + "$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", + "category": "Opening Time", + "key": "MonFriFrom", + "sourceSystemKey": "NreStationData", + "value": "05:00" + }, + { + "$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", + "category": "Opening Time", + "key": "MonFriTo", + "sourceSystemKey": "NreStationData", + "value": "23:59" + }, + { + "$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": "05:00" + }, + { + "$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", + "category": "Opening Time", + "key": "SatTo", + "sourceSystemKey": "NreStationData", + "value": "23:59" + }, + { + "$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", + "category": "Opening Time", + "key": "SunFrom", + "sourceSystemKey": "NreStationData", + "value": "05:00" + }, + { + "$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", + "category": "Opening Time", + "key": "SunTo", + "sourceSystemKey": "NreStationData", + "value": "23:59" + }, + { + "$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": "9100HTRWTM50", + "modes": [], + "icsCode": "1016430", + "stationNaptan": "910GHTRWTM5", + "hubNaptanCode": "HUBHX5", + "lines": [], + "lineGroup": [], + "lineModeGroups": [], + "status": true, + "id": "9100HTRWTM50", + "commonName": "Heathrow Terminal 5", + "placeType": "StopPoint", + "additionalProperties": [], + "children": [], + "lat": 0, + "lon": 0 + } + ], + "lat": 51.470053, + "lon": -0.490589 + }, + { + "$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", + "naptanId": "910GILFORD", + "modes": [ + "elizabeth-line", + "national-rail" + ], + "icsCode": "1001157", + "stopType": "NaptanRailStation", + "stationNaptan": "910GILFORD", + "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" + } + ], + "lineGroup": [ + { + "$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", + "stationAtcoCode": "910GILFORD", + "lineIdentifier": [ + "elizabeth" + ] + }, + { + "$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", + "stationAtcoCode": "910GILFORD", + "lineIdentifier": [ + "greater-anglia" + ] + } + ], + "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" + ] + } + ], + "status": true, + "id": "910GILFORD", + "commonName": "Ilford Rail Station", + "placeType": "StopPoint", + "additionalProperties": [ + { + "$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", + "category": "Address", + "key": "Address", + "sourceSystemKey": "NreStationData", + "value": "Ilford station,\r\n Ilford Hill,\r\n Ilford,\r\n Greater London,\r\n IG1 2DG" + }, + { + "$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: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": "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": "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": "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": "9100ILFORD2", + "modes": [], + "icsCode": "1001157", + "stationNaptan": "910GILFORD", + "lines": [], + "lineGroup": [], + "lineModeGroups": [], + "status": true, + "id": "9100ILFORD2", + "commonName": "Ilford Station", + "placeType": "StopPoint", + "additionalProperties": [], + "children": [], + "lat": 0, + "lon": 0 + }, + { + "$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", + "naptanId": "9100ILFORD0", + "modes": [], + "icsCode": "1001157", + "stationNaptan": "910GILFORD", + "lines": [], + "lineGroup": [], + "lineModeGroups": [], + "status": true, + "id": "9100ILFORD0", + "commonName": "Ilford Station", + "placeType": "StopPoint", + "additionalProperties": [], + "children": [], + "lat": 0, + "lon": 0 + }, + { + "$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", + "naptanId": "9100ILFORD1", + "modes": [], + "icsCode": "1001157", + "stationNaptan": "910GILFORD", + "lines": [], + "lineGroup": [], + "lineModeGroups": [], + "status": true, + "id": "9100ILFORD1", + "commonName": "Ilford Station", + "placeType": "StopPoint", + "additionalProperties": [], + "children": [], + "lat": 0, + "lon": 0 + } + ], + "lat": 51.559118, + "lon": 0.06968 + }, + { + "$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", + "naptanId": "910GIVER", + "modes": [ + "elizabeth-line", + "national-rail" + ], + "icsCode": "1000955", + "stopType": "NaptanRailStation", + "stationNaptan": "910GIVER", + "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": "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", + "stationAtcoCode": "910GIVER", + "lineIdentifier": [ + "elizabeth", + "great-western-railway" + ] + }, + { + "$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", + "stationAtcoCode": "910GIVER", + "lineIdentifier": [ + "elizabeth" + ] + }, + { + "$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", + "stationAtcoCode": "910GIVER", + "lineIdentifier": [ + "great-western-railway" + ] + } + ], + "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": [ + "great-western-railway" + ] + } + ], + "status": true, + "id": "910GIVER", + "commonName": "Iver Rail Station", + "placeType": "StopPoint", + "additionalProperties": [ + { + "$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", + "category": "Address", + "key": "Address", + "sourceSystemKey": "NreStationData", + "value": "Iver station,\r\n Wellesey Avenue,\r\n Richings Park,\r\n Iver,\r\n Buckinghamshire,\r\n SL0 9AU" + }, + { + "$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": "13: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": "no" + }, + { + "$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", + "category": "StationOwnedByTfl", + "key": "OwnedByTfl", + "sourceSystemKey": "NreStationData", + "value": "true" + } + ], + "children": [ + { + "$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", + "naptanId": "9100IVER1", + "modes": [], + "icsCode": "1000955", + "stationNaptan": "910GIVER", + "lines": [], + "lineGroup": [], + "lineModeGroups": [], + "status": true, + "id": "9100IVER1", + "commonName": "Iver Rail Station", + "placeType": "StopPoint", + "additionalProperties": [], + "children": [], + "lat": 51.508503, + "lon": -0.506726 + }, + { + "$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", + "naptanId": "9100IVER2", + "modes": [], + "icsCode": "1000955", + "stationNaptan": "910GIVER", + "lines": [], + "lineGroup": [], + "lineModeGroups": [], + "status": true, + "id": "9100IVER2", + "commonName": "Iver Rail Station", + "placeType": "StopPoint", + "additionalProperties": [], + "children": [], + "lat": 0, + "lon": 0 + }, + { + "$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", + "naptanId": "9100IVER0", + "modes": [], + "icsCode": "1000955", + "stationNaptan": "910GIVER", + "lines": [], + "lineGroup": [], + "lineModeGroups": [], + "status": true, + "id": "9100IVER0", + "commonName": "Iver Rail Station", + "placeType": "StopPoint", + "additionalProperties": [], + "children": [], + "lat": 51.508503, + "lon": -0.506726 + } + ], + "lat": 51.508503, + "lon": -0.506726 + }, + { + "$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", + "naptanId": "910GLANGLEY", + "modes": [ + "elizabeth-line", + "national-rail" + ], + "icsCode": "1000957", + "stopType": "NaptanRailStation", + "stationNaptan": "910GLANGLEY", + "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": "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", + "stationAtcoCode": "910GLANGLEY", + "lineIdentifier": [ + "elizabeth" + ] + }, + { + "$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", + "stationAtcoCode": "910GLANGLEY", + "lineIdentifier": [ + "great-western-railway" + ] + } + ], + "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": [ + "great-western-railway" + ] + } + ], + "status": true, + "id": "910GLANGLEY", + "commonName": "Langley (Berks) Rail Station", + "placeType": "StopPoint", + "additionalProperties": [ + { + "$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", + "category": "Address", + "key": "Address", + "sourceSystemKey": "NreStationData", + "value": "Langley station,\r\n Station Road,\r\n Langley,\r\n Berkshire,\r\n SL3 6DB" + }, + { + "$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": "19: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": "Opening Time", + "key": "SatFrom", + "sourceSystemKey": "NreStationData", + "value": "08:10" + }, + { + "$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", + "category": "Opening Time", + "key": "SatTo", + "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": "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": "StationOwnedByTfl", + "key": "OwnedByTfl", + "sourceSystemKey": "NreStationData", + "value": "true" + } + ], + "children": [ + { + "$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", + "naptanId": "9100LANGLEY0", + "modes": [], + "icsCode": "1000957", + "stationNaptan": "910GLANGLEY", + "lines": [], + "lineGroup": [], + "lineModeGroups": [], + "status": true, + "id": "9100LANGLEY0", + "commonName": "Langley (Berks) Rail Station", + "placeType": "StopPoint", + "additionalProperties": [], + "children": [], + "lat": 0, + "lon": 0 + }, + { + "$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", + "naptanId": "9100LANGLEY1", + "modes": [], + "icsCode": "1000957", + "stationNaptan": "910GLANGLEY", + "lines": [], + "lineGroup": [], + "lineModeGroups": [], + "status": true, + "id": "9100LANGLEY1", + "commonName": "Langley (Berks) Rail Station", + "placeType": "StopPoint", + "additionalProperties": [], + "children": [], + "lat": 0, + "lon": 0 + }, + { + "$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", + "naptanId": "9100LANGLEY2", + "modes": [], + "icsCode": "1000957", + "stationNaptan": "910GLANGLEY", + "lines": [], + "lineGroup": [], + "lineModeGroups": [], + "status": true, + "id": "9100LANGLEY2", + "commonName": "Langley (Berks) Rail Station", + "placeType": "StopPoint", + "additionalProperties": [], + "children": [], + "lat": 0, + "lon": 0 + } + ], + "lat": 51.508062, + "lon": -0.541756 + }, + { + "$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", + "naptanId": "910GLIVST", + "modes": [ + "elizabeth-line", + "overground", + "national-rail" + ], + "icsCode": "1000138", + "stopType": "NaptanRailStation", + "stationNaptan": "910GLIVST", + "hubNaptanCode": "HUBLST", + "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": "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": "weaver", + "name": "Weaver", + "uri": "/Line/weaver", + "type": "Line", + "crowding": { + "$type": "Tfl.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": [ + "c2c", + "elizabeth", + "greater-anglia", + "weaver" + ] + } + ], + "lineModeGroups": [ + { + "$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": "elizabeth-line", + "lineIdentifier": [ + "elizabeth" + ] + }, + { + "$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", + "modeName": "overground", + "lineIdentifier": [ + "weaver" + ] + } + ], + "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": [], + "icsCode": "1000138", + "stationNaptan": "910GLIVST", + "hubNaptanCode": "HUBLST", + "lines": [], + "lineGroup": [], + "lineModeGroups": [], + "status": true, + "id": "9100LIVST0", + "commonName": "Liverpool Street Station", + "placeType": "StopPoint", + "additionalProperties": [], + "children": [], + "lat": 0, + "lon": 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": [ + { + "$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": "910GLIVSTLL", + "lineIdentifier": [ + "elizabeth" + ] + } + ], + "lineModeGroups": [ + { + "$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", + "modeName": "elizabeth-line", + "lineIdentifier": [ + "elizabeth" + ] + } + ], + "status": true, + "id": "910GLIVSTLL", + "commonName": "Liverpool Street", + "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": "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": "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": "Other Facilities", + "sourceSystemKey": "StaticObjects", + "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": "Gates", + "sourceSystemKey": "StaticObjects", + "value": "42" + }, + { + "$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", + "category": "Facility", + "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": "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": "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": "WiFi", + "sourceSystemKey": "StaticObjects", + "value": "yes" + }, + { + "$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", + "category": "Geo", + "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": "NreStationData", + "value": "London Liverpool Street station,\r\n Bishopsgate,\r\n London,\r\n Greater London,\r\n EC2M 7PY" + }, + { + "$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": "Facility", + "key": "Payphones", + "sourceSystemKey": "NreStationData", + "value": "no" + }, + { + "$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", + "category": "Address", + "key": "PhoneNo", + "sourceSystemKey": "NreStationData", + "value": "0330 024 0215" + }, + { + "$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", + "category": "Opening Time", + "key": "SatFrom", + "sourceSystemKey": "NreStationData", + "value": "03:40" + }, + { + "$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", + "category": "Opening Time", + "key": "SatTo", + "sourceSystemKey": "NreStationData", + "value": "01:00" + }, + { + "$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", + "category": "Opening Time", + "key": "SunFrom", + "sourceSystemKey": "NreStationData", + "value": "03:40" + }, + { + "$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", + "category": "Opening Time", + "key": "SunTo", + "sourceSystemKey": "NreStationData", + "value": "01: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": "yes" + } + ], + "children": [ + { + "$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", + "naptanId": "9100LIVSTLL0", + "modes": [], + "icsCode": "1000138", + "stationNaptan": "910GLIVSTLL", + "hubNaptanCode": "HUBLST", + "lines": [], + "lineGroup": [], + "lineModeGroups": [], + "status": true, + "id": "9100LIVSTLL0", + "commonName": "Liverpool Street Station", + "placeType": "StopPoint", + "additionalProperties": [], + "children": [], + "lat": 51.51776, + "lon": -0.086524 + }, + { + "$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", + "naptanId": "9100LIVSTLL1", + "modes": [], + "icsCode": "1000138", + "stationNaptan": "910GLIVSTLL", + "hubNaptanCode": "HUBLST", + "lines": [], + "lineGroup": [], + "lineModeGroups": [], + "status": true, + "id": "9100LIVSTLL1", + "commonName": "Liverpool Street Station", + "placeType": "StopPoint", + "additionalProperties": [], + "children": [], + "lat": 0, + "lon": 0 + } + ], + "lat": 51.51776, + "lon": -0.086524 + }, + { + "$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", + "naptanId": "910GMANRPK", + "modes": [ + "elizabeth-line" + ], + "icsCode": "1001189", + "stopType": "NaptanRailStation", + "stationNaptan": "910GMANRPK", + "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" + } + ], + "lineGroup": [ + { + "$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", + "stationAtcoCode": "910GMANRPK", + "lineIdentifier": [ + "elizabeth" + ] + } + ], + "lineModeGroups": [ + { + "$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", + "modeName": "elizabeth-line", + "lineIdentifier": [ + "elizabeth" + ] + } + ], + "status": true, + "id": "910GMANRPK", + "commonName": "Manor Park Rail Station", + "placeType": "StopPoint", + "additionalProperties": [ + { + "$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", + "category": "Address", + "key": "Address", + "sourceSystemKey": "NreStationData", + "value": "Manor Park station,\r\n Station Road,\r\n Manor Park,\r\n Greater London,\r\n E12 5EP" + }, + { + "$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:10" + }, + { + "$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", + "category": "Opening Time", + "key": "MonFriTo", + "sourceSystemKey": "NreStationData", + "value": "19:40" + }, + { + "$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": "07:10" + }, + { + "$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": "08:10" + }, + { + "$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": "3+4" + } + ], + "children": [ + { + "$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", + "naptanId": "9100MANRPK0", + "modes": [], + "icsCode": "1001189", + "stationNaptan": "910GMANRPK", + "lines": [], + "lineGroup": [], + "lineModeGroups": [], + "status": true, + "id": "9100MANRPK0", + "commonName": "Manor Park Station", + "placeType": "StopPoint", + "additionalProperties": [], + "children": [], + "lat": 0, + "lon": 0 + }, + { + "$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", + "naptanId": "9100MANRPK1", + "modes": [], + "icsCode": "1001189", + "stationNaptan": "910GMANRPK", + "lines": [], + "lineGroup": [], + "lineModeGroups": [], + "status": true, + "id": "9100MANRPK1", + "commonName": "Manor Park Station", + "placeType": "StopPoint", + "additionalProperties": [], + "children": [], + "lat": 0, + "lon": 0 + } + ], + "lat": 51.552477, + "lon": 0.046342 + }, + { + "$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", + "naptanId": "910GMDNHEAD", + "modes": [ + "elizabeth-line", + "national-rail" + ], + "icsCode": "1000964", + "stopType": "NaptanRailStation", + "stationNaptan": "910GMDNHEAD", + "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": "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", + "stationAtcoCode": "910GMDNHEAD", + "lineIdentifier": [ + "elizabeth" + ] + }, + { + "$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", + "stationAtcoCode": "910GMDNHEAD", + "lineIdentifier": [ + "great-western-railway" + ] + } + ], + "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": [ + "great-western-railway" + ] + } + ], + "status": true, + "id": "910GMDNHEAD", + "commonName": "Maidenhead Rail Station", + "placeType": "StopPoint", + "additionalProperties": [ + { + "$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", + "category": "Address", + "key": "Address", + "sourceSystemKey": "NreStationData", + "value": "Maidenhead station,\r\n Station Approach,\r\n Maidenhead,\r\n Berkshire,\r\n SL6 1EW" + }, + { + "$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": "no" + }, + { + "$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": "19: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": "yes" + } + ], + "children": [ + { + "$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", + "naptanId": "9100MDNHEAD0", + "modes": [], + "icsCode": "1000964", + "stationNaptan": "910GMDNHEAD", + "lines": [], + "lineGroup": [], + "lineModeGroups": [], + "status": true, + "id": "9100MDNHEAD0", + "commonName": "Maidenhead Rail Station", + "placeType": "StopPoint", + "additionalProperties": [], + "children": [], + "lat": 0, + "lon": 0 + }, + { + "$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", + "naptanId": "9100MDNHEAD1", + "modes": [], + "icsCode": "1000964", + "stationNaptan": "910GMDNHEAD", + "lines": [], + "lineGroup": [], + "lineModeGroups": [], + "status": true, + "id": "9100MDNHEAD1", + "commonName": "Maidenhead Rail Station", + "placeType": "StopPoint", + "additionalProperties": [], + "children": [], + "lat": 0, + "lon": 0 + }, + { + "$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", + "naptanId": "9100MDNHEAD2", + "modes": [], + "icsCode": "1000964", + "stationNaptan": "910GMDNHEAD", + "lines": [], + "lineGroup": [], + "lineModeGroups": [], + "status": true, + "id": "9100MDNHEAD2", + "commonName": "Maidenhead Rail Station", + "placeType": "StopPoint", + "additionalProperties": [], + "children": [], + "lat": 0, + "lon": 0 + } + ], + "lat": 51.518669, + "lon": -0.72266 + }, + { + "$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", + "naptanId": "910GMRYLAND", + "modes": [ + "elizabeth-line" + ], + "icsCode": "1001190", + "stopType": "NaptanRailStation", + "stationNaptan": "910GMRYLAND", + "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" + } + ], + "lineGroup": [ + { + "$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", + "stationAtcoCode": "910GMRYLAND", + "lineIdentifier": [ + "elizabeth" + ] + } + ], + "lineModeGroups": [ + { + "$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", + "modeName": "elizabeth-line", + "lineIdentifier": [ + "elizabeth" + ] + } + ], + "status": true, + "id": "910GMRYLAND", + "commonName": "Maryland Rail Station", + "placeType": "StopPoint", + "additionalProperties": [ + { + "$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", + "category": "Address", + "key": "Address", + "sourceSystemKey": "NreStationData", + "value": "Maryland station,\r\n Leytonstone Road,\r\n Maryland Point,\r\n Greater London,\r\n E15 1SA" + }, + { + "$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": "13: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:40" + }, + { + "$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", + "category": "Opening Time", + "key": "SatTo", + "sourceSystemKey": "NreStationData", + "value": "13: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": "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": "3" + } + ], + "children": [ + { + "$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", + "naptanId": "9100MRYLAND0", + "modes": [], + "icsCode": "1001190", + "stationNaptan": "910GMRYLAND", + "lines": [], + "lineGroup": [], + "lineModeGroups": [], + "status": true, + "id": "9100MRYLAND0", + "commonName": "Maryland Station", + "placeType": "StopPoint", + "additionalProperties": [], + "children": [], + "lat": 0, + "lon": 0 + }, + { + "$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", + "naptanId": "9100MRYLAND1", + "modes": [], + "icsCode": "1001190", + "stationNaptan": "910GMRYLAND", + "lines": [], + "lineGroup": [], + "lineModeGroups": [], + "status": true, + "id": "9100MRYLAND1", + "commonName": "Maryland Station", + "placeType": "StopPoint", + "additionalProperties": [], + "children": [], + "lat": 0, + "lon": 0 + } + ], + "lat": 51.546081, + "lon": 0.005815 + }, + { + "$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", + "naptanId": "910GPADTLL", + "modes": [ + "elizabeth-line" + ], + "icsCode": "1001221", + "stopType": "NaptanRailStation", + "stationNaptan": "910GPADTLL", + "hubNaptanCode": "HUBPAD", + "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" + } + ], + "lineGroup": [ + { + "$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", + "stationAtcoCode": "910GPADTLL", + "lineIdentifier": [ + "elizabeth" + ] + } + ], + "lineModeGroups": [ + { + "$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", + "modeName": "elizabeth-line", + "lineIdentifier": [ + "elizabeth" + ] + } + ], + "status": true, + "id": "910GPADTLL", + "commonName": "Paddington", + "placeType": "StopPoint", + "additionalProperties": [ + { + "$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", + "category": "Address", + "key": "Address", + "sourceSystemKey": "NreStationData", + "value": "London Paddington station,\r\n Praed Street,\r\n London,\r\n Greater London,\r\n W2 1HQ" + }, + { + "$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": "Facility", + "key": "Payphones", + "sourceSystemKey": "NreStationData", + "value": "no" + }, + { + "$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", + "category": "Address", + "key": "PhoneNo", + "sourceSystemKey": "NreStationData", + "value": "0330 024 0215" + }, + { + "$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": "22:15" + }, + { + "$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": "22: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": "1" + } + ], + "children": [ + { + "$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", + "naptanId": "9100PADTLL0", + "modes": [], + "icsCode": "1001221", + "stationNaptan": "910GPADTLL", + "hubNaptanCode": "HUBPAD", + "lines": [], + "lineGroup": [], + "lineModeGroups": [], + "status": true, + "id": "9100PADTLL0", + "commonName": "Paddington Rail Station", + "placeType": "StopPoint", + "additionalProperties": [], + "children": [], + "lat": 0, + "lon": 0 + }, + { + "$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", + "naptanId": "9100PADTLL1", + "modes": [], + "icsCode": "1001221", + "stationNaptan": "910GPADTLL", + "hubNaptanCode": "HUBPAD", + "lines": [], + "lineGroup": [], + "lineModeGroups": [], + "status": true, + "id": "9100PADTLL1", + "commonName": "Paddington Rail Station", + "placeType": "StopPoint", + "additionalProperties": [], + "children": [], + "lat": 0, + "lon": 0 + } + ], + "lat": 51.516449, + "lon": -0.177107 + }, + { + "$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", + "naptanId": "910GPADTON", + "modes": [ + "elizabeth-line", + "national-rail" + ], + "icsCode": "1001221", + "stopType": "NaptanRailStation", + "stationNaptan": "910GPADTON", + "hubNaptanCode": "HUBPAD", + "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": "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": "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": "910GPADTON", + "lineIdentifier": [ + "elizabeth", + "great-western-railway", + "heathrow-express" + ] + } + ], + "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": [ + "great-western-railway", + "heathrow-express" + ] + } + ], + "status": true, + "id": "910GPADTON", + "commonName": "London Paddington Rail Station", + "placeType": "StopPoint", + "additionalProperties": [ + { + "$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", + "category": "Address", + "key": "Address", + "sourceSystemKey": "NreStationData", + "value": "London Paddington station,\r\n Praed Street,\r\n London,\r\n Greater London,\r\n W2 1HQ" + }, + { + "$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": "Facility", + "key": "Payphones", + "sourceSystemKey": "NreStationData", + "value": "no" + }, + { + "$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", + "category": "Address", + "key": "PhoneNo", + "sourceSystemKey": "NreStationData", + "value": "0330 024 0215" + }, + { + "$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": "22:15" + }, + { + "$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": "22: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": "1" + }, + { + "$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", + "category": "Geo", + "key": "Zone", + "sourceSystemKey": "SingleFareFinder", + "value": "NA" + } + ], + "children": [ + { + "$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", + "naptanId": "9100PADTON0", + "modes": [], + "icsCode": "1001221", + "stationNaptan": "910GPADTON", + "hubNaptanCode": "HUBPAD", + "lines": [], + "lineGroup": [], + "lineModeGroups": [], + "status": true, + "id": "9100PADTON0", + "commonName": "Paddington Rail Station", + "placeType": "StopPoint", + "additionalProperties": [], + "children": [], + "lat": 0, + "lon": 0 + } + ], + "lat": 51.515996, + "lon": -0.176174 + }, + { + "$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", + "naptanId": "910GRDNGSTN", + "modes": [ + "elizabeth-line", + "national-rail" + ], + "icsCode": "1000972", + "stopType": "NaptanRailStation", + "stationNaptan": "910GRDNGSTN", + "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": "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": "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": "910GRDNGSTN", + "lineIdentifier": [ + "elizabeth" + ] + }, + { + "$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", + "stationAtcoCode": "910GRDNG4AB", + "lineIdentifier": [ + "great-western-railway" + ] + }, + { + "$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", + "stationAtcoCode": "910GRDNG4AB", + "lineIdentifier": [ + "great-western-railway", + "south-western-railway" + ] + } + ], + "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": [ + "great-western-railway", + "south-western-railway" + ] + } + ], + "status": true, + "id": "910GRDNGSTN", + "commonName": "Reading Rail Station", + "placeType": "StopPoint", + "additionalProperties": [ + { + "$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", + "category": "Address", + "key": "Address", + "sourceSystemKey": "NreStationData", + "value": "Reading station,\r\n Station Hill,\r\n Reading,\r\n Berkshire,\r\n RG1 1LZ" + }, + { + "$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": "22: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": "03457 000 125" + }, + { + "$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": "22:00" + }, + { + "$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": "22: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": "yes" + } + ], + "children": [ + { + "$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", + "naptanId": "9100RDNGSTN0", + "modes": [], + "icsCode": "1000972", + "stationNaptan": "910GRDNGSTN", + "lines": [], + "lineGroup": [], + "lineModeGroups": [], + "status": true, + "id": "9100RDNGSTN0", + "commonName": "Reading Rail Station", + "placeType": "StopPoint", + "additionalProperties": [], + "children": [], + "lat": 0, + "lon": 0 + } + ], + "lat": 51.458786, + "lon": -0.971863 + }, + { + "$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", + "naptanId": "910GROMFORD", + "modes": [ + "elizabeth-line", + "overground", + "national-rail" + ], + "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": "liberty", + "name": "Liberty", + "uri": "/Line/liberty", + "type": "Line", + "crowding": { + "$type": "Tfl.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": [ + "greater-anglia" + ] + }, + { + "$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", + "stationAtcoCode": "910GROMFORD", + "lineIdentifier": [ + "liberty" + ] + } + ], + "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": [ + "liberty" + ] + } + ], + "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": "9100ROMFORD3", + "modes": [], + "icsCode": "1001243", + "stationNaptan": "910GROMFORD", + "lines": [], + "lineGroup": [], + "lineModeGroups": [], + "status": true, + "id": "9100ROMFORD3", + "commonName": "Romford Station", + "placeType": "StopPoint", + "additionalProperties": [], + "children": [], + "lat": 0, + "lon": 0 + }, + { + "$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", + "naptanId": "9100ROMFORD1", + "modes": [], + "icsCode": "1001243", + "stationNaptan": "910GROMFORD", + "lines": [], + "lineGroup": [], + "lineModeGroups": [], + "status": true, + "id": "9100ROMFORD1", + "commonName": "Romford Station", + "placeType": "StopPoint", + "additionalProperties": [], + "children": [], + "lat": 0, + "lon": 0 + }, + { + "$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", + "naptanId": "9100ROMFORD2", + "modes": [], + "icsCode": "1001243", + "stationNaptan": "910GROMFORD", + "lines": [], + "lineGroup": [], + "lineModeGroups": [], + "status": true, + "id": "9100ROMFORD2", + "commonName": "Romford Station", + "placeType": "StopPoint", + "additionalProperties": [], + "children": [], + "lat": 0, + "lon": 0 + }, + { + "$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", + "naptanId": "9100ROMFORD0", + "modes": [], + "icsCode": "1001243", + "stationNaptan": "910GROMFORD", + "lines": [], + "lineGroup": [], + "lineModeGroups": [], + "status": true, + "id": "9100ROMFORD0", + "commonName": "Romford Station", + "placeType": "StopPoint", + "additionalProperties": [], + "children": [], + "lat": 0, + "lon": 0 + } + ], + "lat": 51.574829, + "lon": 0.183237 + }, + { + "$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", + "naptanId": "910GSHENFLD", + "modes": [ + "elizabeth-line", + "national-rail" + ], + "icsCode": "1006448", + "stopType": "NaptanRailStation", + "stationNaptan": "910GSHENFLD", + "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" + } + ], + "lineGroup": [ + { + "$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", + "stationAtcoCode": "910GSHENFLD", + "lineIdentifier": [ + "elizabeth", + "greater-anglia" + ] + }, + { + "$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", + "stationAtcoCode": "910GSHENFLD", + "lineIdentifier": [ + "greater-anglia" + ] + } + ], + "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" + ] + } + ], + "status": true, + "id": "910GSHENFLD", + "commonName": "Shenfield Rail Station", + "placeType": "StopPoint", + "additionalProperties": [ + { + "$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", + "category": "Address", + "key": "Address", + "sourceSystemKey": "NreStationData", + "value": "Shenfield station,\r\n Hutton Road,\r\n Shenfield,\r\n Essex,\r\n CM15 8JD" + }, + { + "$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: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: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": "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" + } + ], + "children": [ + { + "$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", + "naptanId": "9100SHENFLD2", + "modes": [], + "icsCode": "1006448", + "stationNaptan": "910GSHENFLD", + "lines": [], + "lineGroup": [], + "lineModeGroups": [], + "status": true, + "id": "9100SHENFLD2", + "commonName": "Shenfield Rail Station", + "placeType": "StopPoint", + "additionalProperties": [], + "children": [], + "lat": 0, + "lon": 0 + }, + { + "$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", + "naptanId": "9100SHENFLD1", + "modes": [], + "icsCode": "1006448", + "stationNaptan": "910GSHENFLD", + "lines": [], + "lineGroup": [], + "lineModeGroups": [], + "status": true, + "id": "9100SHENFLD1", + "commonName": "Shenfield Rail Station", + "placeType": "StopPoint", + "additionalProperties": [], + "children": [], + "lat": 0, + "lon": 0 + } + ], + "lat": 51.630877, + "lon": 0.329851 + }, + { + "$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", + "naptanId": "910GSLOUGH", + "modes": [ + "national-rail", + "elizabeth-line" + ], + "icsCode": "1000951", + "stopType": "NaptanRailStation", + "stationNaptan": "910GSLOUGH", + "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": "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", + "stationAtcoCode": "910GSLOUGH", + "lineIdentifier": [ + "elizabeth" + ] + }, + { + "$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", + "stationAtcoCode": "910GSLOUGH", + "lineIdentifier": [ + "great-western-railway" + ] + } + ], + "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": [ + "great-western-railway" + ] + } + ], + "status": true, + "id": "910GSLOUGH", + "commonName": "Slough Rail Station", + "placeType": "StopPoint", + "additionalProperties": [ + { + "$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", + "category": "Address", + "key": "Address", + "sourceSystemKey": "NreStationData", + "value": "Slough station,\r\n Brunel Way,\r\n Slough,\r\n Berkshire,\r\n SL1 1XW" + }, + { + "$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": "21: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": "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": "21:30" + }, + { + "$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": "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": "yes" + } + ], + "children": [ + { + "$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", + "naptanId": "9100SLOUGH0", + "modes": [], + "icsCode": "1000951", + "stationNaptan": "910GSLOUGH", + "lines": [], + "lineGroup": [], + "lineModeGroups": [], + "status": true, + "id": "9100SLOUGH0", + "commonName": "Slough Rail Station", + "placeType": "StopPoint", + "additionalProperties": [], + "children": [], + "lat": 0, + "lon": 0 + }, + { + "$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", + "naptanId": "9100SLOUGH1", + "modes": [], + "icsCode": "1000951", + "stationNaptan": "910GSLOUGH", + "lines": [], + "lineGroup": [], + "lineModeGroups": [], + "status": true, + "id": "9100SLOUGH1", + "commonName": "Slough Rail Station", + "placeType": "StopPoint", + "additionalProperties": [], + "children": [], + "lat": 0, + "lon": 0 + }, + { + "$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", + "naptanId": "9100SLOUGH2", + "modes": [], + "icsCode": "1000951", + "stationNaptan": "910GSLOUGH", + "lines": [], + "lineGroup": [], + "lineModeGroups": [], + "status": true, + "id": "9100SLOUGH2", + "commonName": "Slough Rail Station", + "placeType": "StopPoint", + "additionalProperties": [], + "children": [], + "lat": 0, + "lon": 0 + }, + { + "$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", + "naptanId": "9100SLOUGH3", + "modes": [], + "icsCode": "1000951", + "stationNaptan": "910GSLOUGH", + "lines": [], + "lineGroup": [], + "lineModeGroups": [], + "status": true, + "id": "9100SLOUGH3", + "commonName": "Slough Rail Station", + "placeType": "StopPoint", + "additionalProperties": [], + "children": [], + "lat": 0, + "lon": 0 + } + ], + "lat": 51.51188, + "lon": -0.59151 + }, + { + "$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", + "naptanId": "910GSTFD", + "modes": [ + "elizabeth-line", + "national-rail", + "overground" + ], + "icsCode": "1000226", + "stopType": "NaptanRailStation", + "stationNaptan": "910GSTFD", + "hubNaptanCode": "HUBSRA", + "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": "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": "mildmay", + "name": "Mildmay", + "uri": "/Line/mildmay", + "type": "Line", + "crowding": { + "$type": "Tfl.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": [ + "c2c", + "greater-anglia" + ] + }, + { + "$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", + "stationAtcoCode": "910GSTFD", + "lineIdentifier": [ + "c2c" + ] + }, + { + "$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": [ + "greater-anglia" + ] + }, + { + "$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", + "stationAtcoCode": "910GSTFD", + "lineIdentifier": [ + "mildmay" + ] + } + ], + "lineModeGroups": [ + { + "$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": "elizabeth-line", + "lineIdentifier": [ + "elizabeth" + ] + }, + { + "$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", + "modeName": "overground", + "lineIdentifier": [ + "mildmay" + ] + } + ], + "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_785" + }, + { + "$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": "9100STFD1", + "modes": [], + "icsCode": "1000226", + "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", + "stationNaptan": "910GSTFD", + "hubNaptanCode": "HUBSRA", + "lines": [], + "lineGroup": [], + "lineModeGroups": [], + "status": true, + "id": "9100STFD2", + "commonName": "Stratford Station", + "placeType": "StopPoint", + "additionalProperties": [], + "children": [], + "lat": 0, + "lon": 0 + }, + { + "$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", + "naptanId": "9100STFD5", + "modes": [], + "icsCode": "1000226", + "stationNaptan": "910GSTFD", + "hubNaptanCode": "HUBSRA", + "lines": [], + "lineGroup": [], + "lineModeGroups": [], + "status": true, + "id": "9100STFD5", + "commonName": "Stratford Station", + "placeType": "StopPoint", + "additionalProperties": [], + "children": [], + "lat": 0, + "lon": 0 + }, + { + "$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", + "naptanId": "9100STFD3", + "modes": [], + "icsCode": "1000226", + "stationNaptan": "910GSTFD", + "hubNaptanCode": "HUBSRA", + "lines": [], + "lineGroup": [], + "lineModeGroups": [], + "status": true, + "id": "9100STFD3", + "commonName": "Stratford Station", + "placeType": "StopPoint", + "additionalProperties": [], + "children": [], + "lat": 0, + "lon": 0 + }, + { + "$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", + "naptanId": "9100STFD6", + "modes": [], + "icsCode": "1000226", + "stationNaptan": "910GSTFD", + "hubNaptanCode": "HUBSRA", + "lines": [], + "lineGroup": [], + "lineModeGroups": [], + "status": true, + "id": "9100STFD6", + "commonName": "Stratford Station", + "placeType": "StopPoint", + "additionalProperties": [], + "children": [], + "lat": 0, + "lon": 0 + }, + { + "$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", + "naptanId": "9100STFD4", + "modes": [], + "icsCode": "1000226", + "stationNaptan": "910GSTFD", + "hubNaptanCode": "HUBSRA", + "lines": [], + "lineGroup": [], + "lineModeGroups": [], + "status": true, + "id": "9100STFD4", + "commonName": "Stratford Station", + "placeType": "StopPoint", + "additionalProperties": [], + "children": [], + "lat": 0, + "lon": 0 + } + ], + "lat": 51.541895, + "lon": -0.003397 + }, + { + "$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", + "naptanId": "910GSTHALL", + "modes": [ + "elizabeth-line", + "national-rail" + ], + "icsCode": "1001255", + "stopType": "NaptanRailStation", + "stationNaptan": "910GSTHALL", + "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": "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", + "stationAtcoCode": "910GSTHALL", + "lineIdentifier": [ + "elizabeth", + "great-western-railway" + ] + } + ], + "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": [ + "great-western-railway" + ] + } + ], + "status": true, + "id": "910GSTHALL", + "commonName": "Southall Rail Station", + "placeType": "StopPoint", + "additionalProperties": [ + { + "$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", + "category": "Address", + "key": "Address", + "sourceSystemKey": "NreStationData", + "value": "Southall station,\r\n South Road,\r\n Southall,\r\n Greater London,\r\n UB2 4AA" + }, + { + "$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": "19: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": "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": "19:30" + }, + { + "$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: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": "StationOwnedByTfl", + "key": "OwnedByTfl", + "sourceSystemKey": "NreStationData", + "value": "true" + }, + { + "$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": "9100STHALL0", + "modes": [], + "icsCode": "1001255", + "stationNaptan": "910GSTHALL", + "lines": [], + "lineGroup": [], + "lineModeGroups": [], + "status": true, + "id": "9100STHALL0", + "commonName": "Southall Station", + "placeType": "StopPoint", + "additionalProperties": [], + "children": [], + "lat": 0, + "lon": 0 + } + ], + "lat": 51.505957, + "lon": -0.37861 + }, + { + "$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", + "naptanId": "910GSVNKNGS", + "modes": [ + "elizabeth-line", + "national-rail" + ], + "icsCode": "1001246", + "stopType": "NaptanRailStation", + "stationNaptan": "910GSVNKNGS", + "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" + } + ], + "lineGroup": [ + { + "$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", + "stationAtcoCode": "910GSVNKNGS", + "lineIdentifier": [ + "elizabeth", + "greater-anglia" + ] + } + ], + "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" + ] + } + ], + "status": true, + "id": "910GSVNKNGS", + "commonName": "Seven Kings Rail Station", + "placeType": "StopPoint", + "additionalProperties": [ + { + "$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", + "category": "Address", + "key": "Address", + "sourceSystemKey": "NreStationData", + "value": "Seven Kings station,\r\n High Road,\r\n Seven Kings,\r\n Greater London,\r\n IG3 8RE" + }, + { + "$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:10" + }, + { + "$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", + "category": "Opening Time", + "key": "MonFriTo", + "sourceSystemKey": "NreStationData", + "value": "19:40" + }, + { + "$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: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": "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": "4" + } + ], + "children": [ + { + "$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", + "naptanId": "9100SVNKNGS0", + "modes": [], + "icsCode": "1001246", + "stationNaptan": "910GSVNKNGS", + "lines": [], + "lineGroup": [], + "lineModeGroups": [], + "status": true, + "id": "9100SVNKNGS0", + "commonName": "Seven Kings Station", + "placeType": "StopPoint", + "additionalProperties": [], + "children": [], + "lat": 0, + "lon": 0 + }, + { + "$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", + "naptanId": "9100SVNKNGS1", + "modes": [], + "icsCode": "1001246", + "stationNaptan": "910GSVNKNGS", + "lines": [], + "lineGroup": [], + "lineModeGroups": [], + "status": true, + "id": "9100SVNKNGS1", + "commonName": "Seven Kings Station", + "placeType": "StopPoint", + "additionalProperties": [], + "children": [], + "lat": 0, + "lon": 0 + } + ], + "lat": 51.564026, + "lon": 0.0971 + }, + { + "$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", + "naptanId": "910GTAPLOW", + "modes": [ + "elizabeth-line", + "national-rail" + ], + "icsCode": "1000960", + "stopType": "NaptanRailStation", + "stationNaptan": "910GTAPLOW", + "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": "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", + "stationAtcoCode": "910GTAPLOW", + "lineIdentifier": [ + "elizabeth" + ] + }, + { + "$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", + "stationAtcoCode": "910GTAPLOW", + "lineIdentifier": [ + "great-western-railway" + ] + } + ], + "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": [ + "great-western-railway" + ] + } + ], + "status": true, + "id": "910GTAPLOW", + "commonName": "Taplow Rail Station", + "placeType": "StopPoint", + "additionalProperties": [ + { + "$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", + "category": "Address", + "key": "Address", + "sourceSystemKey": "NreStationData", + "value": "Taplow station,\r\n Station Road,\r\n Taplow,\r\n Berkshire,\r\n SL6 0NU" + }, + { + "$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": "13: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": "no" + }, + { + "$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", + "category": "StationOwnedByTfl", + "key": "OwnedByTfl", + "sourceSystemKey": "NreStationData", + "value": "true" + } + ], + "children": [ + { + "$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", + "naptanId": "9100TAPLOW0", + "modes": [], + "icsCode": "1000960", + "stationNaptan": "910GTAPLOW", + "lines": [], + "lineGroup": [], + "lineModeGroups": [], + "status": true, + "id": "9100TAPLOW0", + "commonName": "Taplow Rail Station", + "placeType": "StopPoint", + "additionalProperties": [], + "children": [], + "lat": 0, + "lon": 0 + }, + { + "$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", + "naptanId": "9100TAPLOW1", + "modes": [], + "icsCode": "1000960", + "stationNaptan": "910GTAPLOW", + "lines": [], + "lineGroup": [], + "lineModeGroups": [], + "status": true, + "id": "9100TAPLOW1", + "commonName": "Taplow Rail Station", + "placeType": "StopPoint", + "additionalProperties": [], + "children": [], + "lat": 0, + "lon": 0 + }, + { + "$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", + "naptanId": "9100TAPLOW2", + "modes": [], + "icsCode": "1000960", + "stationNaptan": "910GTAPLOW", + "lines": [], + "lineGroup": [], + "lineModeGroups": [], + "status": true, + "id": "9100TAPLOW2", + "commonName": "Taplow Rail Station", + "placeType": "StopPoint", + "additionalProperties": [], + "children": [], + "lat": 0, + "lon": 0 + } + ], + "lat": 51.523562, + "lon": -0.68137 + }, + { + "$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", + "naptanId": "910GTOTCTRD", + "modes": [ + "elizabeth-line" + ], + "icsCode": "1000235", + "stopType": "NaptanRailStation", + "stationNaptan": "910GTOTCTRD", + "hubNaptanCode": "HUBTCR", + "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" + } + ], + "lineGroup": [ + { + "$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", + "stationAtcoCode": "910GTOTCTRD", + "lineIdentifier": [ + "elizabeth" + ] + } + ], + "lineModeGroups": [ + { + "$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", + "modeName": "elizabeth-line", + "lineIdentifier": [ + "elizabeth" + ] + } + ], + "status": true, + "id": "910GTOTCTRD", + "commonName": "Tottenham Court Road", + "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": "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": "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": "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": "Address", + "key": "Address", + "sourceSystemKey": "StaticObjects", + "value": "Tottenham Court Road Station,London Underground Ltd.,Oxford St,London,W1D 2DH" + }, + { + "$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.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": "Facility", + "key": "Bridge", + "sourceSystemKey": "StaticObjects", + "value": "no" + }, + { + "$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.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": "Photo Booths", + "sourceSystemKey": "StaticObjects", + "value": "0" + }, + { + "$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.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": "NreStationData", + "value": "Tottenham Court Road station,\r\n Oxford Street,\r\n London,\r\n W1D 2DH" + }, + { + "$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": "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" + } + ], + "children": [ + { + "$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", + "naptanId": "9100TOTCTRD0", + "modes": [], + "icsCode": "1000235", + "stationNaptan": "910GTOTCTRD", + "hubNaptanCode": "HUBTCR", + "lines": [], + "lineGroup": [], + "lineModeGroups": [], + "status": true, + "id": "9100TOTCTRD0", + "commonName": "Tottenham Court Road Station", + "placeType": "StopPoint", + "additionalProperties": [], + "children": [], + "lat": 0, + "lon": 0 + }, + { + "$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", + "naptanId": "9100TOTCTRD1", + "modes": [], + "icsCode": "1000235", + "stationNaptan": "910GTOTCTRD", + "hubNaptanCode": "HUBTCR", + "lines": [], + "lineGroup": [], + "lineModeGroups": [], + "status": true, + "id": "9100TOTCTRD1", + "commonName": "Tottenham Court Road Station", + "placeType": "StopPoint", + "additionalProperties": [], + "children": [], + "lat": 51.515075, + "lon": -0.130263 + } + ], + "lat": 51.515075, + "lon": -0.130263 + }, + { + "$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", + "naptanId": "910GTWYFORD", + "modes": [ + "elizabeth-line", + "national-rail" + ], + "icsCode": "1000969", + "stopType": "NaptanRailStation", + "stationNaptan": "910GTWYFORD", + "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": "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", + "stationAtcoCode": "910GTWYFORD", + "lineIdentifier": [ + "elizabeth" + ] + }, + { + "$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", + "stationAtcoCode": "910GTWYFORD", + "lineIdentifier": [ + "great-western-railway" + ] + } + ], + "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": [ + "great-western-railway" + ] + } + ], + "status": true, + "id": "910GTWYFORD", + "commonName": "Twyford Rail Station", + "placeType": "StopPoint", + "additionalProperties": [ + { + "$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", + "category": "Address", + "key": "Address", + "sourceSystemKey": "NreStationData", + "value": "Twyford station,\r\n Station Road,\r\n Twyford,\r\n Berkshire,\r\n RG10 9NA" + }, + { + "$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": "19: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:45" + }, + { + "$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", + "category": "Opening Time", + "key": "SatTo", + "sourceSystemKey": "NreStationData", + "value": "15:30" + }, + { + "$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: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": "yes" + } + ], + "children": [ + { + "$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", + "naptanId": "9100TWYFORD0", + "modes": [], + "icsCode": "1000969", + "stationNaptan": "910GTWYFORD", + "lines": [], + "lineGroup": [], + "lineModeGroups": [], + "status": true, + "id": "9100TWYFORD0", + "commonName": "Twyford Rail Station", + "placeType": "StopPoint", + "additionalProperties": [], + "children": [], + "lat": 51.475534, + "lon": -0.863293 + }, + { + "$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", + "naptanId": "9100TWYFORD1", + "modes": [], + "icsCode": "1000969", + "stationNaptan": "910GTWYFORD", + "lines": [], + "lineGroup": [], + "lineModeGroups": [], + "status": true, + "id": "9100TWYFORD1", + "commonName": "Twyford Rail Station", + "placeType": "StopPoint", + "additionalProperties": [], + "children": [], + "lat": 0, + "lon": 0 + }, + { + "$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", + "naptanId": "9100TWYFORD2", + "modes": [], + "icsCode": "1000969", + "stationNaptan": "910GTWYFORD", + "lines": [], + "lineGroup": [], + "lineModeGroups": [], + "status": true, + "id": "9100TWYFORD2", + "commonName": "Twyford Rail Station", + "placeType": "StopPoint", + "additionalProperties": [], + "children": [], + "lat": 0, + "lon": 0 + } + ], + "lat": 51.475534, + "lon": -0.863293 + }, + { + "$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", + "naptanId": "910GWCHAPXR", + "modes": [ + "elizabeth-line" + ], + "icsCode": "1000268", + "stopType": "NaptanRailStation", + "stationNaptan": "910GWCHAPXR", + "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" + } + ], + "lineGroup": [ + { + "$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": "elizabeth-line", + "lineIdentifier": [ + "elizabeth" + ] + } + ], + "status": true, + "id": "910GWCHAPXR", + "commonName": "Whitechapel", + "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": "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": "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": "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": "Photo Booths", + "sourceSystemKey": "StaticObjects", + "value": "0" + }, + { + "$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", + "category": "Facility", + "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": "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": "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": "Car park", + "sourceSystemKey": "StaticObjects", + "value": "no" + }, + { + "$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", + "category": "Facility", + "key": "Help Points", + "sourceSystemKey": "StaticObjects", + "value": "0 on platforms, 0 in ticket halls, 0 elsewhere" + }, + { + "$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", + "category": "Address", + "key": "Address", + "sourceSystemKey": "NreStationData", + "value": "Whitechapel station,\r\n Whitechapel Road,\r\n Whitechapel,\r\n Greater London,\r\n E1 1BY" + }, + { + "$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": "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": "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" + } + ], + "children": [ + { + "$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", + "naptanId": "9100WCHAPXR0", + "modes": [], + "icsCode": "1000268", + "stationNaptan": "910GWCHAPXR", + "hubNaptanCode": "HUBZWL", + "lines": [], + "lineGroup": [], + "lineModeGroups": [], + "status": true, + "id": "9100WCHAPXR0", + "commonName": "Whitechapel Station", + "placeType": "StopPoint", + "additionalProperties": [], + "children": [], + "lat": 0, + "lon": 0 + }, + { + "$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", + "naptanId": "9100WCHAPXR1", + "modes": [], + "icsCode": "1000268", + "stationNaptan": "910GWCHAPXR", + "hubNaptanCode": "HUBZWL", + "lines": [], + "lineGroup": [], + "lineModeGroups": [], + "status": true, + "id": "9100WCHAPXR1", + "commonName": "Whitechapel Station", + "placeType": "StopPoint", + "additionalProperties": [], + "children": [], + "lat": 51.520094, + "lon": -0.060048 + } + ], + "lat": 51.520094, + "lon": -0.060048 + }, + { + "$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", + "naptanId": "910GWDRYTON", + "modes": [ + "elizabeth-line", + "national-rail" + ], + "icsCode": "1001325", + "stopType": "NaptanRailStation", + "stationNaptan": "910GWDRYTON", + "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": "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", + "stationAtcoCode": "910GWDRYTON", + "lineIdentifier": [ + "elizabeth", + "great-western-railway" + ] + } + ], + "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": [ + "great-western-railway" + ] + } + ], + "status": true, + "id": "910GWDRYTON", + "commonName": "West Drayton Rail Station", + "placeType": "StopPoint", + "additionalProperties": [ + { + "$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", + "category": "Address", + "key": "Address", + "sourceSystemKey": "NreStationData", + "value": "West Drayton station,\r\n Station Approach,\r\n West Drayton,\r\n Greater London,\r\n UB7 9DY" + }, + { + "$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": "19:40" + }, + { + "$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:30" + }, + { + "$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", + "category": "Opening Time", + "key": "SatTo", + "sourceSystemKey": "NreStationData", + "value": "19:40" + }, + { + "$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: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": "StationOwnedByTfl", + "key": "OwnedByTfl", + "sourceSystemKey": "NreStationData", + "value": "true" + }, + { + "$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": "9100WDRYTON1", + "modes": [], + "icsCode": "1001325", + "stationNaptan": "910GWDRYTON", + "lines": [], + "lineGroup": [], + "lineModeGroups": [], + "status": true, + "id": "9100WDRYTON1", + "commonName": "West Drayton Station", + "placeType": "StopPoint", + "additionalProperties": [], + "children": [], + "lat": 0, + "lon": 0 + } + ], + "lat": 51.510055, + "lon": -0.472234 + }, + { + "$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", + "naptanId": "910GWEALING", + "modes": [ + "elizabeth-line", + "national-rail" + ], + "icsCode": "1001327", + "stopType": "NaptanRailStation", + "stationNaptan": "910GWEALING", + "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": "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", + "stationAtcoCode": "910GWEALING", + "lineIdentifier": [ + "elizabeth", + "great-western-railway" + ] + } + ], + "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": [ + "great-western-railway" + ] + } + ], + "status": true, + "id": "910GWEALING", + "commonName": "West Ealing Rail Station", + "placeType": "StopPoint", + "additionalProperties": [ + { + "$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", + "category": "Address", + "key": "Address", + "sourceSystemKey": "NreStationData", + "value": "West Ealing station,\r\n Manor Road,\r\n Ealing,\r\n Greater London,\r\n W13 0LJ" + }, + { + "$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": "05:35" + }, + { + "$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": "no" + }, + { + "$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", + "category": "Opening Time", + "key": "SatFrom", + "sourceSystemKey": "NreStationData", + "value": "05:35" + }, + { + "$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", + "category": "Opening Time", + "key": "SatTo", + "sourceSystemKey": "NreStationData", + "value": "20:50" + }, + { + "$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": "StationOwnedByTfl", + "key": "OwnedByTfl", + "sourceSystemKey": "NreStationData", + "value": "true" + }, + { + "$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": "9100WEALING0", + "modes": [], + "icsCode": "1001327", + "stationNaptan": "910GWEALING", + "lines": [], + "lineGroup": [], + "lineModeGroups": [], + "status": true, + "id": "9100WEALING0", + "commonName": "West Ealing Station", + "placeType": "StopPoint", + "additionalProperties": [], + "children": [], + "lat": 0, + "lon": 0 + }, + { + "$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", + "naptanId": "9100WEALING1", + "modes": [], + "icsCode": "1001327", + "stationNaptan": "910GWEALING", + "lines": [], + "lineGroup": [], + "lineModeGroups": [], + "status": true, + "id": "9100WEALING1", + "commonName": "West Ealing Station", + "placeType": "StopPoint", + "additionalProperties": [], + "children": [], + "lat": 0, + "lon": 0 + } + ], + "lat": 51.513506, + "lon": -0.320133 + }, + { + "$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", + "naptanId": "910GWOLWXR", + "modes": [ + "bus", + "elizabeth-line" + ], + "icsCode": "1002162", + "stopType": "NaptanRailStation", + "stationNaptan": "910GWOLWXR", + "lines": [ + { + "$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": "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": "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": "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": "244", + "name": "244", + "uri": "/Line/244", + "type": "Line", + "crowding": { + "$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities" + }, + "routeType": "Unknown", + "status": "Unknown" + }, + { + "$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", + "id": "291", + "name": "291", + "uri": "/Line/291", + "type": "Line", + "crowding": { + "$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities" + }, + "routeType": "Unknown", + "status": "Unknown" + }, + { + "$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", + "id": "301", + "name": "301", + "uri": "/Line/301", + "type": "Line", + "crowding": { + "$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities" + }, + "routeType": "Unknown", + "status": "Unknown" + }, + { + "$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", + "id": "380", + "name": "380", + "uri": "/Line/380", + "type": "Line", + "crowding": { + "$type": "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": "469", + "name": "469", + "uri": "/Line/469", + "type": "Line", + "crowding": { + "$type": "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": "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": "54", + "name": "54", + "uri": "/Line/54", + "type": "Line", + "crowding": { + "$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities" + }, + "routeType": "Unknown", + "status": "Unknown" + }, + { + "$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", + "id": "672", + "name": "672", + "uri": "/Line/672", + "type": "Line", + "crowding": { + "$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities" + }, + "routeType": "Unknown", + "status": "Unknown" + }, + { + "$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", + "id": "96", + "name": "96", + "uri": "/Line/96", + "type": "Line", + "crowding": { + "$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities" + }, + "routeType": "Unknown", + "status": "Unknown" + }, + { + "$type": "Tfl.Api.Presentation.Entities.Identifier, Tfl.Api.Presentation.Entities", + "id": "99", + "name": "99", + "uri": "/Line/99", + "type": "Line", + "crowding": { + "$type": "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": "n472", + "name": "N472", + "uri": "/Line/n472", + "type": "Line", + "crowding": { + "$type": "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": "sl11", + "name": "SL11", + "uri": "/Line/sl11", + "type": "Line", + "crowding": { + "$type": "Tfl.Api.Presentation.Entities.Crowding, Tfl.Api.Presentation.Entities" + }, + "routeType": "Unknown", + "status": "Unknown" + } + ], + "lineGroup": [ + { + "$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", + "naptanIdReference": "490014934E", + "stationAtcoCode": "910GWOLWXR", + "lineIdentifier": [ + "122", + "177", + "180", + "244", + "301", + "380", + "422", + "469", + "472", + "672", + "96", + "99", + "n1", + "n472", + "sl11" + ] + }, + { + "$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", + "naptanIdReference": "490014934W", + "stationAtcoCode": "910GWOLWXR", + "lineIdentifier": [ + "122", + "244", + "291", + "380", + "422", + "469", + "53", + "54", + "96", + "n53" + ] + }, + { + "$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", + "naptanIdReference": "490014934W1", + "stationAtcoCode": "910GWOLWXR", + "lineIdentifier": [ + "161", + "177", + "180", + "472", + "n1", + "n472", + "sl11" + ] + }, + { + "$type": "Tfl.Api.Presentation.Entities.LineGroup, Tfl.Api.Presentation.Entities", + "stationAtcoCode": "910GWOLWXR", + "lineIdentifier": [ + "elizabeth" + ] + } + ], + "lineModeGroups": [ + { + "$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", + "modeName": "bus", + "lineIdentifier": [ + "122", + "161", + "177", + "180", + "244", + "291", + "301", + "380", + "422", + "469", + "472", + "53", + "54", + "672", + "96", + "99", + "n1", + "n472", + "n53", + "sl11" + ] + }, + { + "$type": "Tfl.Api.Presentation.Entities.LineModeGroup, Tfl.Api.Presentation.Entities", + "modeName": "elizabeth-line", + "lineIdentifier": [ + "elizabeth" + ] + } + ], + "status": true, + "id": "910GWOLWXR", + "commonName": "Woolwich", + "placeType": "StopPoint", + "additionalProperties": [ + { + "$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", + "category": "Address", + "key": "Address", + "sourceSystemKey": "NreStationData", + "value": "Woolwich station,\r\n Dial Arch Square,\r\n Major Draper Street,\r\n Woolwich,\r\n London,\r\n SE18 6GD" + }, + { + "$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": "4" + }, + { + "$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", + "category": "NearestPlaces", + "key": "SourceSystemPlaceId", + "sourceSystemKey": "StaticObjects", + "value": "TaxiRank_5674" + }, + { + "$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities", + "category": "NearestPlaces", + "key": "SourceSystemPlaceId", + "sourceSystemKey": "StaticObjects", + "value": "TaxiRank_5244" + } + ], + "children": [ + { + "$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", + "naptanId": "490014934E", + "indicator": "Stop K", + "stopLetter": "K", + "modes": [], + "icsCode": "1002162", + "stationNaptan": "910GWOLWXR", + "lines": [], + "lineGroup": [], + "lineModeGroups": [], + "status": true, + "id": "490014934E", + "commonName": "Woolwich Station", + "placeType": "StopPoint", + "additionalProperties": [], + "children": [], + "lat": 0, + "lon": 0 + }, + { + "$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", + "naptanId": "490014934W", + "indicator": "Stop Z", + "stopLetter": "Z", + "modes": [], + "icsCode": "1002162", + "stationNaptan": "910GWOLWXR", + "lines": [], + "lineGroup": [], + "lineModeGroups": [], + "status": true, + "id": "490014934W", + "commonName": "Woolwich", + "placeType": "StopPoint", + "additionalProperties": [], + "children": [], + "lat": 0, + "lon": 0 + }, + { + "$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", + "naptanId": "490014934W1", + "indicator": "Stop D", + "stopLetter": "D", + "modes": [], + "icsCode": "1002162", + "stationNaptan": "910GWOLWXR", + "lines": [], + "lineGroup": [], + "lineModeGroups": [], + "status": true, + "id": "490014934W1", + "commonName": "Woolwich Station", + "placeType": "StopPoint", + "additionalProperties": [], + "children": [], + "lat": 0, + "lon": 0 + }, + { + "$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", + "naptanId": "9100WOLWXR0", + "modes": [], + "icsCode": "1002162", + "stationNaptan": "910GWOLWXR", + "lines": [], + "lineGroup": [], + "lineModeGroups": [], + "status": true, + "id": "9100WOLWXR0", + "commonName": "Woolwich Station", + "placeType": "StopPoint", + "additionalProperties": [], + "children": [], + "lat": 51.492168, + "lon": 0.070593 + }, + { + "$type": "Tfl.Api.Presentation.Entities.StopPoint, Tfl.Api.Presentation.Entities", + "naptanId": "9100WOLWXR1", + "modes": [], + "icsCode": "1002162", + "stationNaptan": "910GWOLWXR", + "lines": [], + "lineGroup": [], + "lineModeGroups": [], + "status": true, + "id": "9100WOLWXR1", + "commonName": "Woolwich Station", + "placeType": "StopPoint", + "additionalProperties": [], + "children": [], + "lat": 0, + "lon": 0 + } + ], + "lat": 51.492168, + "lon": 0.070593 + } + ] + } +} \ No newline at end of file diff --git a/packages/aris-data-source-tfl/package.json b/packages/aris-data-source-tfl/package.json new file mode 100644 index 0000000..1c4b876 --- /dev/null +++ b/packages/aris-data-source-tfl/package.json @@ -0,0 +1,15 @@ +{ + "name": "@aris/data-source-tfl", + "version": "0.0.0", + "type": "module", + "main": "src/index.ts", + "types": "src/index.ts", + "scripts": { + "test": "bun test src/", + "fetch-fixtures": "bun run scripts/fetch-fixtures.ts" + }, + "dependencies": { + "@aris/core": "workspace:*", + "arktype": "^2.1.0" + } +} diff --git a/packages/aris-data-source-tfl/scripts/fetch-fixtures.ts b/packages/aris-data-source-tfl/scripts/fetch-fixtures.ts new file mode 100644 index 0000000..ff2b41c --- /dev/null +++ b/packages/aris-data-source-tfl/scripts/fetch-fixtures.ts @@ -0,0 +1,35 @@ +// Fetches real TfL API responses and saves them as test fixtures + +const TEST_LINES = ["northern", "central", "elizabeth"] +const BASE_URL = "https://api.tfl.gov.uk" + +async function fetchFixtures() { + console.log("Fetching line statuses...") + const statusRes = await fetch(`${BASE_URL}/Line/${TEST_LINES.join(",")}/Status`) + const lineStatuses = await statusRes.json() + + console.log("Fetching stop points...") + const stopPoints: Record = {} + for (const lineId of TEST_LINES) { + console.log(` Fetching ${lineId}...`) + const res = await fetch(`${BASE_URL}/Line/${lineId}/StopPoints`) + stopPoints[lineId] = await res.json() + } + + const fixtures = { + fetchedAt: new Date().toISOString(), + lineStatuses, + stopPoints, + } + + const path = new URL("../fixtures/tfl-responses.json", import.meta.url) + await Bun.write(path, JSON.stringify(fixtures, null, "\t")) + + console.log(`\nFixtures saved to fixtures/tfl-responses.json`) + console.log(` Line statuses: ${(lineStatuses as unknown[]).length} lines`) + for (const [lineId, stops] of Object.entries(stopPoints)) { + console.log(` ${lineId} stops: ${(stops as unknown[]).length}`) + } +} + +fetchFixtures().catch(console.error) diff --git a/packages/aris-data-source-tfl/src/data-source.ts b/packages/aris-data-source-tfl/src/data-source.ts new file mode 100644 index 0000000..ff4e8bd --- /dev/null +++ b/packages/aris-data-source-tfl/src/data-source.ts @@ -0,0 +1,103 @@ +import type { Context, DataSource } from "@aris/core" +import { TflApi, type ITflApi } from "./tfl-api.ts" +import type { + StationLocation, + TflAlertData, + TflAlertFeedItem, + TflAlertSeverity, + TflDataSourceConfig, + TflDataSourceOptions, + TflLineId, +} from "./types.ts" + +const SEVERITY_PRIORITY: Record = { + closure: 100, + "major-delays": 80, + "minor-delays": 60, +} + +function haversineDistance(lat1: number, lng1: number, lat2: number, lng2: number): number { + const R = 6371 // Earth's radius in km + const dLat = ((lat2 - lat1) * Math.PI) / 180 + const dLng = ((lng2 - lng1) * Math.PI) / 180 + const a = + Math.sin(dLat / 2) * Math.sin(dLat / 2) + + Math.cos((lat1 * Math.PI) / 180) * Math.cos((lat2 * Math.PI) / 180) * Math.sin(dLng / 2) * Math.sin(dLng / 2) + const c = 2 * Math.atan2(Math.sqrt(a), Math.sqrt(1 - a)) + return R * c +} + +function findClosestStationDistance( + lineId: TflLineId, + stations: StationLocation[], + userLat: number, + userLng: number, +): number | null { + const lineStations = stations.filter((s) => s.lines.includes(lineId)) + if (lineStations.length === 0) return null + + let minDistance = Infinity + for (const station of lineStations) { + const distance = haversineDistance(userLat, userLng, station.lat, station.lng) + if (distance < minDistance) { + minDistance = distance + } + } + + return minDistance +} + +export class TflDataSource implements DataSource { + readonly type = "tfl-alert" + private api: ITflApi + + constructor(options: TflDataSourceOptions) + constructor(api: ITflApi) + constructor(optionsOrApi: TflDataSourceOptions | ITflApi) { + if ("fetchLineStatuses" in optionsOrApi) { + this.api = optionsOrApi + } else { + this.api = new TflApi(optionsOrApi.apiKey) + } + } + + async query(context: Context, config: TflDataSourceConfig): Promise { + const [statuses, stations] = await Promise.all([this.api.fetchLineStatuses(config.lines), this.api.fetchStations()]) + + const items: TflAlertFeedItem[] = statuses.map((status) => { + const closestStationDistance = + context.location ? + findClosestStationDistance(status.lineId, stations, context.location.lat, context.location.lng) + : null + + const data: TflAlertData = { + line: status.lineId, + lineName: status.lineName, + severity: status.severity, + description: status.description, + closestStationDistance, + } + + return { + id: `tfl-alert-${status.lineId}-${status.severity}`, + type: this.type, + priority: SEVERITY_PRIORITY[status.severity], + timestamp: context.time, + data, + } + }) + + // Sort by severity (desc), then by proximity (asc) if location available + items.sort((a, b) => { + if (b.priority !== a.priority) { + return b.priority - a.priority + } + if (a.data.closestStationDistance !== null && b.data.closestStationDistance !== null) { + return a.data.closestStationDistance - b.data.closestStationDistance + } + return 0 + }) + + return items + } +} diff --git a/packages/aris-data-source-tfl/src/index.ts b/packages/aris-data-source-tfl/src/index.ts new file mode 100644 index 0000000..4da5d20 --- /dev/null +++ b/packages/aris-data-source-tfl/src/index.ts @@ -0,0 +1,11 @@ +export { TflDataSource } from "./data-source.ts" +export { TflApi, type ITflApi, type TflLineStatus } from "./tfl-api.ts" +export type { + TflAlertData, + TflAlertFeedItem, + TflAlertSeverity, + TflDataSourceConfig, + TflDataSourceOptions, + TflLineId, + StationLocation, +} from "./types.ts" diff --git a/packages/aris-data-source-tfl/src/integration.test.ts b/packages/aris-data-source-tfl/src/integration.test.ts new file mode 100644 index 0000000..668c672 --- /dev/null +++ b/packages/aris-data-source-tfl/src/integration.test.ts @@ -0,0 +1,206 @@ +import { describe, expect, test } from "bun:test" + +import type { Context } from "@aris/core" +import { TflDataSource } from "./data-source.ts" +import type { ITflApi, TflLineStatus } from "./tfl-api.ts" +import type { StationLocation, TflLineId } from "./types.ts" + +import fixtures from "../fixtures/tfl-responses.json" + +// Mock API that returns fixture data +class FixtureTflApi implements ITflApi { + async fetchLineStatuses(_lines?: TflLineId[]): Promise { + const statuses: TflLineStatus[] = [] + + for (const line of fixtures.lineStatuses as Record[]) { + for (const status of line.lineStatuses as Record[]) { + const severityCode = status.statusSeverity as number + const severity = this.mapSeverity(severityCode) + if (severity) { + statuses.push({ + lineId: line.id as TflLineId, + lineName: line.name as string, + severity, + description: (status.reason as string) ?? (status.statusSeverityDescription as string), + }) + } + } + } + + return statuses + } + + async fetchStations(): Promise { + const stationMap = new Map() + + for (const [lineId, stops] of Object.entries(fixtures.stopPoints)) { + for (const stop of stops as Record[]) { + const id = stop.naptanId as string + const existing = stationMap.get(id) + if (existing) { + if (!existing.lines.includes(lineId as TflLineId)) { + existing.lines.push(lineId as TflLineId) + } + } else { + stationMap.set(id, { + id, + name: stop.commonName as string, + lat: stop.lat as number, + lng: stop.lon as number, + lines: [lineId as TflLineId], + }) + } + } + } + + return Array.from(stationMap.values()) + } + + private mapSeverity(code: number): "minor-delays" | "major-delays" | "closure" | null { + const map: Record = { + 1: "closure", + 2: "closure", + 3: "closure", + 4: "closure", + 5: "closure", + 6: "major-delays", + 7: "major-delays", + 8: "major-delays", + 9: "minor-delays", + 10: null, + } + return map[code] ?? null + } +} + +const createContext = (location?: { lat: number; lng: number }): Context => ({ + time: new Date("2026-01-15T12:00:00Z"), + location: location ? { ...location, accuracy: 10 } : undefined, +}) + +describe("TfL Feed Items (using fixture data)", () => { + const api = new FixtureTflApi() + + test("query returns feed items array", async () => { + const dataSource = new TflDataSource(api) + const items = await dataSource.query(createContext(), {}) + expect(Array.isArray(items)).toBe(true) + }) + + test("feed items have correct base structure", async () => { + const dataSource = new TflDataSource(api) + const items = await dataSource.query(createContext({ lat: 51.5074, lng: -0.1278 }), {}) + + for (const item of items) { + expect(typeof item.id).toBe("string") + expect(item.id).toMatch(/^tfl-alert-/) + expect(item.type).toBe("tfl-alert") + expect(typeof item.priority).toBe("number") + expect(item.timestamp).toBeInstanceOf(Date) + } + }) + + test("feed items have correct data structure", async () => { + const dataSource = new TflDataSource(api) + const items = await dataSource.query(createContext({ lat: 51.5074, lng: -0.1278 }), {}) + + for (const item of items) { + expect(typeof item.data.line).toBe("string") + expect(typeof item.data.lineName).toBe("string") + expect(["minor-delays", "major-delays", "closure"]).toContain(item.data.severity) + expect(typeof item.data.description).toBe("string") + expect(item.data.closestStationDistance === null || typeof item.data.closestStationDistance === "number").toBe( + true, + ) + } + }) + + test("feed item ids are unique", async () => { + const dataSource = new TflDataSource(api) + const items = await dataSource.query(createContext(), {}) + + const ids = items.map((item) => item.id) + const uniqueIds = new Set(ids) + expect(uniqueIds.size).toBe(ids.length) + }) + + test("feed items are sorted by priority descending", async () => { + const dataSource = new TflDataSource(api) + const items = await dataSource.query(createContext(), {}) + + for (let i = 1; i < items.length; i++) { + const prev = items[i - 1]! + const curr = items[i]! + expect(prev.priority).toBeGreaterThanOrEqual(curr.priority) + } + }) + + test("priority values match severity levels", async () => { + const dataSource = new TflDataSource(api) + const items = await dataSource.query(createContext(), {}) + + const severityPriority: Record = { + closure: 100, + "major-delays": 80, + "minor-delays": 60, + } + + for (const item of items) { + expect(item.priority).toBe(severityPriority[item.data.severity]!) + } + }) + + test("closestStationDistance is number when location provided", async () => { + const dataSource = new TflDataSource(api) + const items = await dataSource.query(createContext({ lat: 51.5074, lng: -0.1278 }), {}) + + for (const item of items) { + expect(typeof item.data.closestStationDistance).toBe("number") + expect(item.data.closestStationDistance!).toBeGreaterThan(0) + } + }) + + test("closestStationDistance is null when no location provided", async () => { + const dataSource = new TflDataSource(api) + const items = await dataSource.query(createContext(), {}) + + for (const item of items) { + expect(item.data.closestStationDistance).toBeNull() + } + }) +}) + +describe("TfL Fixture Data Shape", () => { + test("fixtures have expected structure", () => { + expect(typeof fixtures.fetchedAt).toBe("string") + expect(Array.isArray(fixtures.lineStatuses)).toBe(true) + expect(typeof fixtures.stopPoints).toBe("object") + }) + + test("line statuses have required fields", () => { + for (const line of fixtures.lineStatuses as Record[]) { + expect(typeof line.id).toBe("string") + expect(typeof line.name).toBe("string") + expect(Array.isArray(line.lineStatuses)).toBe(true) + + for (const status of line.lineStatuses as Record[]) { + expect(typeof status.statusSeverity).toBe("number") + expect(typeof status.statusSeverityDescription).toBe("string") + } + } + }) + + test("stop points have required fields", () => { + for (const [lineId, stops] of Object.entries(fixtures.stopPoints)) { + expect(typeof lineId).toBe("string") + expect(Array.isArray(stops)).toBe(true) + + for (const stop of stops as Record[]) { + expect(typeof stop.naptanId).toBe("string") + expect(typeof stop.commonName).toBe("string") + expect(typeof stop.lat).toBe("number") + expect(typeof stop.lon).toBe("number") + } + } + }) +}) diff --git a/packages/aris-data-source-tfl/src/tfl-api.ts b/packages/aris-data-source-tfl/src/tfl-api.ts new file mode 100644 index 0000000..13c1d4d --- /dev/null +++ b/packages/aris-data-source-tfl/src/tfl-api.ts @@ -0,0 +1,183 @@ +import { type } from "arktype" +import type { StationLocation, TflAlertSeverity } from "./types.ts" + +const TFL_API_BASE = "https://api.tfl.gov.uk" + +const ALL_LINE_IDS: TflLineId[] = [ + "bakerloo", + "central", + "circle", + "district", + "hammersmith-city", + "jubilee", + "metropolitan", + "northern", + "piccadilly", + "victoria", + "waterloo-city", + "lioness", + "mildmay", + "windrush", + "weaver", + "suffragette", + "liberty", + "elizabeth", +] + +// TfL severity codes: https://api.tfl.gov.uk/Line/Meta/Severity +// 0 = Special Service, 1 = Closed, 6 = Severe Delays, 9 = Minor Delays, 10 = Good Service +const SEVERITY_MAP: Record = { + 1: "closure", + 2: "closure", // Suspended + 3: "closure", // Part Suspended + 4: "closure", // Planned Closure + 5: "closure", // Part Closure + 6: "major-delays", // Severe Delays + 7: "major-delays", // Reduced Service + 8: "major-delays", // Bus Service + 9: "minor-delays", // Minor Delays + 10: null, // Good Service + 11: null, // Part Closed + 12: null, // Exit Only + 13: null, // No Step Free Access + 14: null, // Change of frequency + 15: null, // Diverted + 16: null, // Not Running + 17: null, // Issues Reported + 18: null, // No Issues + 19: null, // Information + 20: null, // Service Closed +} + +export interface TflLineStatus { + lineId: TflLineId + lineName: string + severity: TflAlertSeverity + description: string +} + +export interface ITflApi { + fetchLineStatuses(lines?: TflLineId[]): Promise + fetchStations(): Promise +} + +export class TflApi implements ITflApi { + private apiKey: string + private stationsCache: StationLocation[] | null = null + + constructor(apiKey: string) { + this.apiKey = apiKey + } + + private async fetch(path: string): Promise { + const url = new URL(path, TFL_API_BASE) + url.searchParams.set("app_key", this.apiKey) + const response = await fetch(url.toString()) + if (!response.ok) { + throw new Error(`TfL API error: ${response.status} ${response.statusText}`) + } + return response.json() as Promise + } + + async fetchLineStatuses(lines?: TflLineId[]): Promise { + const lineIds = lines ?? ALL_LINE_IDS + const data = await this.fetch(`/Line/${lineIds.join(",")}/Status`) + + const parsed = lineResponseArray(data) + if (parsed instanceof type.errors) { + throw new Error(`Invalid TfL API response: ${parsed.summary}`) + } + + const statuses: TflLineStatus[] = [] + + for (const line of parsed) { + for (const status of line.lineStatuses) { + const severity = SEVERITY_MAP[status.statusSeverity] + if (severity) { + statuses.push({ + lineId: line.id, + lineName: line.name, + severity, + description: status.reason ?? status.statusSeverityDescription, + }) + } + } + } + + return statuses + } + + async fetchStations(): Promise { + if (this.stationsCache) { + return this.stationsCache + } + + // Fetch stations for all lines in parallel + const responses = await Promise.all( + ALL_LINE_IDS.map(async (id) => { + const data = await this.fetch(`/Line/${id}/StopPoints`) + const parsed = lineStopPointsArray(data) + if (parsed instanceof type.errors) { + throw new Error(`Invalid TfL API response for line ${id}: ${parsed.summary}`) + } + return { lineId: id, stops: parsed } + }), + ) + + // Merge stations, combining lines for shared stations + const stationMap = new Map() + + for (const { lineId: currentLineId, stops } of responses) { + for (const stop of stops) { + const existing = stationMap.get(stop.naptanId) + if (existing) { + if (!existing.lines.includes(currentLineId)) { + existing.lines.push(currentLineId) + } + } else { + stationMap.set(stop.naptanId, { + id: stop.naptanId, + name: stop.commonName, + lat: stop.lat, + lng: stop.lon, + lines: [currentLineId], + }) + } + } + } + + this.stationsCache = Array.from(stationMap.values()) + return this.stationsCache + } +} + +// Schemas + +const lineId = type( + "'bakerloo' | 'central' | 'circle' | 'district' | 'hammersmith-city' | 'jubilee' | 'metropolitan' | 'northern' | 'piccadilly' | 'victoria' | 'waterloo-city' | 'lioness' | 'mildmay' | 'windrush' | 'weaver' | 'suffragette' | 'liberty' | 'elizabeth'", +) + +export type TflLineId = typeof lineId.infer + +const lineStatus = type({ + statusSeverity: "number", + statusSeverityDescription: "string", + "reason?": "string", +}) + +const lineResponse = type({ + id: lineId, + name: "string", + lineStatuses: lineStatus.array(), +}) + +const lineResponseArray = lineResponse.array() + +const lineStopPoint = type({ + naptanId: "string", + commonName: "string", + lat: "number", + lon: "number", +}) + +const lineStopPointsArray = lineStopPoint.array() diff --git a/packages/aris-data-source-tfl/src/types.ts b/packages/aris-data-source-tfl/src/types.ts new file mode 100644 index 0000000..7b497ee --- /dev/null +++ b/packages/aris-data-source-tfl/src/types.ts @@ -0,0 +1,32 @@ +import type { FeedItem } from "@aris/core" +import type { TflLineId } from "./tfl-api.ts" + +export type { TflLineId } from "./tfl-api.ts" + +export type TflAlertSeverity = "minor-delays" | "major-delays" | "closure" + +export interface TflAlertData extends Record { + line: TflLineId + lineName: string + severity: TflAlertSeverity + description: string + closestStationDistance: number | null +} + +export type TflAlertFeedItem = FeedItem<"tfl-alert", TflAlertData> + +export interface TflDataSourceConfig { + lines?: TflLineId[] +} + +export interface TflDataSourceOptions { + apiKey: string +} + +export interface StationLocation { + id: string + name: string + lat: number + lng: number + lines: TflLineId[] +}