action tfl_stop_point_disruption { label: "Gets all disruptions for the specified StopPointId, plus disruptions for any child Naptan records it may have." provider: tfl method: GET path: "/StopPoint/{ids}/Disruption" encoding: json input: { type: "object" properties: { flattenResponse: { type: "boolean" } getFamily: { type: "boolean" } ids: { type: "array" items: { type: "string" } } includeRouteBlockedStops: { type: "boolean" } } required: ["ids"] 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" } } } } }