get_container
Retrieve container details from RSpace research data, with option to list contained items for comprehensive examination of research materials.
Instructions
Retrieves container information with optional content listing
Usage: Examine container properties and optionally see what's inside Performance: Set include_content=False for faster queries on large containers Returns: Container details and optionally contained items
Input Schema
Name | Required | Description | Default |
---|---|---|---|
container_id | Yes | ||
include_content | No |
Input Schema (JSON Schema)
{
"properties": {
"container_id": {
"anyOf": [
{
"type": "integer"
},
{
"type": "string"
}
],
"title": "Container Id"
},
"include_content": {
"default": false,
"title": "Include Content",
"type": "boolean"
}
},
"required": [
"container_id"
],
"type": "object"
}