get_container_summary
Retrieve container metadata like name, type, and capacity without loading full content for faster information lookup in RSpace research data management.
Instructions
Retrieves container metadata without content for fast queries
Usage: Quick container information lookup without performance impact Performance: Avoids loading large content lists for better response times Returns: Container metadata only (name, type, capacity, etc.)
Input Schema
Name | Required | Description | Default |
---|---|---|---|
container_id | Yes |
Input Schema (JSON Schema)
{
"properties": {
"container_id": {
"anyOf": [
{
"type": "integer"
},
{
"type": "string"
}
],
"title": "Container Id"
}
},
"required": [
"container_id"
],
"type": "object"
}