get_publisher_year_acts
Retrieve all legal acts published by a specific publisher in a given year to browse complete annual collections of Polish legislation.
Instructions
Get all legal acts published by a specific publisher in a given year. Useful for browsing complete annual collections.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
publisher | Yes | Publisher code (DU for Dziennik Ustaw, MP for Monitor Polski) | |
year | Yes | Publication year (e.g., 2020, 2023) |
Input Schema (JSON Schema)
{
"properties": {
"publisher": {
"description": "Publisher code (DU for Dziennik Ustaw, MP for Monitor Polski)",
"type": "string"
},
"year": {
"anyOf": [
{
"type": "integer"
},
{
"type": "string"
}
],
"description": "Publication year (e.g., 2020, 2023)"
}
},
"required": [
"publisher",
"year"
],
"type": "object"
}