action firebrowse_counts { label: "Retrieve sample counts." description: "Returns the aliquot counts for each disease cohort, per sample\ntype and data type. The sample type designation of \"Tumor\"\nmay be used to aggregate the count of all tumor aliquots into\na single number per disease and data type. See the SampleTypes\nfunction for a complete description of sample types." provider: firebrowse method: GET path: "/Metadata/Counts" encoding: json input: { type: "object" properties: { cohort: { type: "string" } data_type: { type: "string" } date: { type: "string" } format: { type: "string" } sample_type: { type: "string" } sort_by: { type: "string" } totals: { type: "string" } } additionalProperties: false } output: { type: "object" additionalProperties: true } }