action warwick_get_api_v2_0_database_traces { label: "get_api_v2_0_database_traces" description: "Traces (sequence-reads) metadata" provider: warwick method: GET path: "/api/v2.0/{database}/traces" encoding: json input: { type: "object" properties: { barcode: { type: "array" items: { type: "string" } } database: { type: "string" } limit: { type: "integer" format: "int32" } offset: { type: "integer" format: "int32" } only_fields: { type: "array" items: { type: "string" } } orderby: { type: "string" } sortorder: { type: "string" } } required: ["database"] additionalProperties: false } output: { type: "object" additionalProperties: true } }