get_single_Rspace_document
Retrieve the complete content of a specific RSpace document using its ID for reading or analysis purposes.
Instructions
Retrieves complete content of a single document
Usage: Get full document text for reading/analysis Parameters: doc_id can be numeric ID or string globalId (e.g., "SD12345") Returns: Full document with concatenated field content
Input Schema
Name | Required | Description | Default |
---|---|---|---|
doc_id | Yes |
Input Schema (JSON Schema)
{
"properties": {
"doc_id": {
"anyOf": [
{
"type": "integer"
},
{
"type": "string"
}
],
"title": "Doc Id"
}
},
"required": [
"doc_id"
],
"type": "object"
}