list_samples
Browse and search the RSpace sample inventory with pagination and sorting options to find specific samples or review recent additions.
Instructions
Lists samples in the inventory with pagination and sorting
Usage: Browse sample collection, find recent additions Sorting: Options include "lastModified", "name", "created" Returns: Paginated list of sample metadata
Input Schema
Name | Required | Description | Default |
---|---|---|---|
order_by | No | lastModified | |
page_size | No | ||
sort_order | No | desc |
Input Schema (JSON Schema)
{
"properties": {
"order_by": {
"default": "lastModified",
"title": "Order By",
"type": "string"
},
"page_size": {
"default": 20,
"title": "Page Size",
"type": "integer"
},
"sort_order": {
"default": "desc",
"title": "Sort Order",
"type": "string"
}
},
"type": "object"
}