action firebrowse_standard_data { label: "Retrieve standard data archives." description: "This service returns the archive URLs for our Firehose standard data runs, providing a RESTful interface similar in spirit to the command line firehose_get tool. The archives can be filtered based on date, cohort, data type, platform, center, data level, and protocol." provider: firebrowse method: GET path: "/Archives/StandardData" encoding: json input: { type: "object" properties: { center: { type: "string" } cohort: { type: "string" } data_type: { type: "string" } date: { type: "string" } format: { type: "string" } level: { type: "string" } page: { type: "string" } page_size: { type: "string" } platform: { type: "string" } protocol: { type: "string" } sort_by: { type: "string" } tool: { type: "string" } } additionalProperties: false } output: { type: "object" additionalProperties: true } }