get_act_comprehensive_details
Retrieve complete legal act details including metadata, status, dates, and references for Polish legislation from Dziennik Ustaw and Monitor Polski publications.
Instructions
Get complete detailed information about a specific legal act including metadata, status, dates, and references.
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"
}