get_act_table_of_contents
Retrieve the hierarchical structure and table of contents for Polish legal acts, showing chapters, articles, sections, and their organization to understand document layout.
Instructions
Get the hierarchical structure and table of contents of a legal act. Shows chapters, articles, sections, and their organization.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
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": {
"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"
}