action tfl_search_bus_schedules { label: "Searches the bus schedules folder on S3 for a given bus number." provider: tfl method: GET path: "/Search/BusSchedules" encoding: json input: { type: "object" properties: { query: { type: "string" } } 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" } } } }