get_weather_forecast
Retrieve weather forecasts for specific Japanese cities by inputting a city ID, enabling accurate and localized weather updates for planning and decision-making.
Instructions
Get weather forecast for a Japanese city using city ID
Input Schema
Name | Required | Description | Default |
---|---|---|---|
cityId | Yes | City ID for the Japanese city (e.g., '130010' for Tokyo, '270000' for Osaka) |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"cityId": {
"description": "City ID for the Japanese city (e.g., '130010' for Tokyo, '270000' for Osaka)",
"type": "string"
}
},
"required": [
"cityId"
],
"type": "object"
}