browse_document
Access specific pages of archival documents from the Swedish National Archives using reference codes to view historical records and search for terms within the content.
Instructions
Browse specific pages of a document by reference code
Input Schema
Name | Required | Description | Default |
---|---|---|---|
highlight_term | No | ||
max_pages | No | ||
pages | Yes | ||
reference_code | Yes |
Input Schema (JSON Schema)
{
"properties": {
"highlight_term": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"default": null,
"title": "Highlight Term"
},
"max_pages": {
"default": 20,
"title": "Max Pages",
"type": "integer"
},
"pages": {
"title": "Pages",
"type": "string"
},
"reference_code": {
"title": "Reference Code",
"type": "string"
}
},
"required": [
"reference_code",
"pages"
],
"type": "object"
}