action tfl_stop_point_get_service_types { label: "Gets the service types for a given stoppoint" provider: tfl method: GET path: "/StopPoint/ServiceTypes" encoding: json input: { type: "object" properties: { id: { type: "string" } lineIds: { type: "array" items: { type: "string" } } modes: { type: "array" items: { type: "string" } } } required: ["id"] additionalProperties: false } output: { type: "array" items: { type: "object" properties: { lineName: { type: "string" } lineSpecificServiceTypes: { type: "array" items: { type: "object" properties: { serviceType: { type: "object" properties: { name: { type: "string" } uri: { type: "string" } } } stopServesServiceType: { type: "boolean" } } } } } } } }