action firebrowse_reports { label: "Retrieve links to summary reports from Firehose analysis runs." description: "This service returns URLs to the analysis result reports for runs of the Broad Institute GDAC Firehose analysis pipeline. At least one year of run reports are maintained in the database, but the reports from the latest run will be returned by default. The set of Nozzle reports returned may be filtered by disease cohort, report type and report name." provider: firebrowse method: GET path: "/Analyses/Reports" encoding: json input: { type: "object" properties: { cohort: { type: "string" } date: { type: "string" } format: { type: "string" } name: { type: "string" } page: { type: "string" } page_size: { type: "string" } sort_by: { type: "string" } type: { type: "string" } } additionalProperties: false } output: { type: "object" additionalProperties: true } }