get_rekabet_kurumu_document
Retrieve Competition Authority decision text in Markdown format for a specific page by providing the decision ID and page number, enabling structured access to legal documents.
Instructions
Get Competition Authority decision text in paginated Markdown format
Input Schema
Name | Required | Description | Default |
---|---|---|---|
karar_id | Yes | GUID (kararId) of the Rekabet Kurumu decision. This ID is obtained from search results. | |
page_number | No | Requested page number for the Markdown content converted from PDF (1-indexed, accepts int). Default is 1. |
Input Schema (JSON Schema)
{
"properties": {
"karar_id": {
"description": "GUID (kararId) of the Rekabet Kurumu decision. This ID is obtained from search results.",
"title": "Karar Id",
"type": "string"
},
"page_number": {
"default": 1,
"description": "Requested page number for the Markdown content converted from PDF (1-indexed, accepts int). Default is 1.",
"minimum": 1,
"title": "Page Number",
"type": "integer"
}
},
"required": [
"karar_id"
],
"type": "object"
}