monthly_inflation_rate
Retrieve monthly inflation data for a specific year and month using a structured API call, enabling precise analysis of economic trends in Turkey.
Instructions
Belirli bir ay ve yıldaki enflasyon verisini getirir
Input Schema
Name | Required | Description | Default |
---|---|---|---|
month | Yes | Ay (1-12) | |
year | Yes | Yıl |
Input Schema (JSON Schema)
{
"properties": {
"month": {
"description": "Ay (1-12)",
"maximum": 12,
"minimum": 1,
"type": "number"
},
"year": {
"description": "Yıl",
"minimum": 2000,
"type": "number"
}
},
"required": [
"year",
"month"
],
"type": "object"
}