action tfl_stop_point_route { label: "Returns the route sections for all the lines that service the given stop point ids" provider: tfl method: GET path: "/StopPoint/{id}/Route" encoding: json input: { type: "object" properties: { id: { type: "string" } serviceTypes: { type: "array" items: { type: "string" enum: ["Regular", "Night"] } } } required: ["id"] additionalProperties: false } output: { type: "array" items: { type: "object" properties: { destinationName: { type: "string" } direction: { type: "string" } isActive: { type: "boolean" } lineId: { type: "string" } lineString: { type: "string" } mode: { type: "string" } naptanId: { type: "string" } routeSectionName: { type: "string" } serviceType: { type: "string" } validFrom: { type: "string" format: "date-time" } validTo: { type: "string" format: "date-time" } vehicleDestinationText: { type: "string" } } } } }