get_document_structure
Retrieve document structure and metadata from the Swedish National Archives to understand organization and properties without downloading content.
Instructions
Get document structure and metadata without fetching content
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| include_manifest_info | No | ||
| pid | No | ||
| reference_code | No |
Input Schema (JSON Schema)
{
"properties": {
"include_manifest_info": {
"default": true,
"title": "Include Manifest Info",
"type": "boolean"
},
"pid": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"default": null,
"title": "Pid"
},
"reference_code": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"default": null,
"title": "Reference Code"
}
},
"type": "object"
}