action tfl_stop_point_disruption_by_mode { label: "Gets a distinct list of disrupted stop points for the given modes" provider: tfl method: GET path: "/StopPoint/Mode/{modes}/Disruption" encoding: json input: { type: "object" properties: { includeRouteBlockedStops: { type: "boolean" } modes: { type: "array" items: { type: "string" } } } required: ["modes"] additionalProperties: false } output: { type: "array" items: { type: "object" properties: { additionalInformation: { type: "string" } appearance: { type: "string" } atcoCode: { type: "string" } commonName: { type: "string" } description: { type: "string" } fromDate: { type: "string" format: "date-time" } mode: { type: "string" } stationAtcoCode: { type: "string" } toDate: { type: "string" format: "date-time" } type: { type: "string" } } } } }