get_act_content
Retrieve full text content of Polish legal acts from Dziennik Ustaw or Monitor Polski in PDF or HTML format for legal research and document analysis.
Instructions
Retrieve the actual text content of a legal act in PDF or HTML format. Use for reading the full document content.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
format_type | No | Content format: 'pdf' or 'html' (default: pdf) | |
num | Yes | Act number/position within the year | |
publisher | Yes | Publisher code (DU for Dziennik Ustaw, MP for Monitor Polski) | |
year | Yes | Publication year |
Input Schema (JSON Schema)
{
"properties": {
"format_type": {
"default": "pdf",
"description": "Content format: 'pdf' or 'html' (default: pdf)",
"type": "string"
},
"num": {
"anyOf": [
{
"type": "integer"
},
{
"type": "string"
}
],
"description": "Act number/position within the year"
},
"publisher": {
"description": "Publisher code (DU for Dziennik Ustaw, MP for Monitor Polski)",
"type": "string"
},
"year": {
"description": "Publication year",
"type": "integer"
}
},
"required": [
"publisher",
"year",
"num"
],
"type": "object"
}