get_sample
Retrieve complete metadata, location details, and subsample information for a specific sample from RSpace research data using its unique identifier.
Instructions
Retrieves complete information about a specific sample
Usage: Get detailed sample metadata, location, and subsample information Parameters: sample_id can be numeric ID or global ID (e.g., "SA12345") Returns: Full sample details including all subsamples
Input Schema
Name | Required | Description | Default |
---|---|---|---|
sample_id | Yes |
Input Schema (JSON Schema)
{
"properties": {
"sample_id": {
"anyOf": [
{
"type": "integer"
},
{
"type": "string"
}
],
"title": "Sample Id"
}
},
"required": [
"sample_id"
],
"type": "object"
}