action tfl_stop_point_search { label: "Search StopPoints by their common name, or their 5-digit Countdown Bus Stop Code." provider: tfl method: GET path: "/StopPoint/Search/{query}" encoding: json input: { type: "object" properties: { faresOnly: { type: "boolean" } includeHubs: { type: "boolean" } lines: { type: "array" items: { type: "string" } } maxResults: { type: "integer" format: "int32" } modes: { type: "array" items: { type: "string" } } query: { type: "string" } tflOperatedNationalRailStationsOnly: { type: "boolean" } } required: ["query"] additionalProperties: false } output: { type: "object" properties: { from: { type: "integer" format: "int32" } matches: { type: "array" items: { type: "object" properties: { id: { type: "string" } lat: { type: "number" format: "double" } lon: { type: "number" format: "double" } name: { type: "string" } url: { type: "string" } } } } maxScore: { type: "number" format: "double" } page: { type: "integer" format: "int32" } pageSize: { type: "integer" format: "int32" } provider: { type: "string" } query: { type: "string" } total: { type: "integer" format: "int32" } } } }