action firebrowse_barcode { label: "Given a TCGA barcode, return its short letter sample type code." provider: firebrowse method: GET path: "/Metadata/SampleType/Barcode/{TCGA_Barcode}" encoding: json input: { type: "object" properties: { TCGA_Barcode: { type: "string" } format: { type: "string" } } required: ["TCGA_Barcode"] additionalProperties: false } output: { type: "object" additionalProperties: true } }