action logoraisr_results_read { label: "Get the result from image processing" description: "This GET-Method returns the URL where the result can downloaded from." provider: logoraisr method: GET path: "/results/{result_file_id}/" encoding: json input: { type: "object" properties: { result_file_id: { type: "string" } } required: ["result_file_id"] additionalProperties: false } output: { type: "object" properties: { result_file_url: { type: "string" description: "Url from which the result file can be downloaded." } } } }