get_mevzuat_article_content
Retrieve clean Markdown text of a specific article or full document from Turkish legislation using the Mevzuat ID and Madde ID. Ideal for accessing precise legal content efficiently.
Instructions
Retrieves the full text content of a single article of a legislation and provides it as clean Markdown text. If the article tree is empty (no hierarchical structure), use the mevzuat_id as the madde_id parameter to get the full document content.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
madde_id | Yes | The ID of the specific article (madde), obtained from the 'get_mevzuat_article_tree' tool. If article tree is empty, use the mevzuat_id as madde_id to get the full document content. | |
mevzuat_id | Yes | The ID of the legislation, obtained from 'search_mevzuat' results. |
Input Schema (JSON Schema)
{
"properties": {
"madde_id": {
"description": "The ID of the specific article (madde), obtained from the 'get_mevzuat_article_tree' tool. If article tree is empty, use the mevzuat_id as madde_id to get the full document content.",
"title": "Madde Id",
"type": "string"
},
"mevzuat_id": {
"description": "The ID of the legislation, obtained from 'search_mevzuat' results.",
"title": "Mevzuat Id",
"type": "string"
}
},
"required": [
"mevzuat_id",
"madde_id"
],
"type": "object"
}