action tfl_road_disrupted_streets { label: "Gets a list of disrupted streets. If no date filters are provided, current disruptions are returned." provider: tfl method: GET path: "/Road/all/Street/Disruption" encoding: json input: { type: "object" properties: { endDate: { type: "string" format: "date-time" } startDate: { type: "string" format: "date-time" } } required: ["endDate", "startDate"] additionalProperties: false } output: { type: "object" properties: {} } }