execute_yaizu_api
Retrieve entity data from Yaizu City's FIWARE NGSIv2 API with automated endpoint configuration based on API catalog information.
Instructions
焼津市のFIWARE NGSIv2 APIからエンティティデータを取得します。 APIカタログの情報を基に適切なエンドポイント設定を自動で行います。
Args: entity_type: エンティティタイプ(例: Aed, EvacuationShelter, DisasterMail) params: 追加のクエリパラメータ(JSON文字列形式) limit: 取得件数制限(1-1000、デフォルト10)
Returns: str: APIレスポンス
Input Schema
Name | Required | Description | Default |
---|---|---|---|
entity_type | Yes | ||
limit | No | ||
params | No |
Input Schema (JSON Schema)
{
"properties": {
"entity_type": {
"title": "Entity Type",
"type": "string"
},
"limit": {
"default": 10,
"title": "Limit",
"type": "integer"
},
"params": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"default": null,
"title": "Params"
}
},
"required": [
"entity_type"
],
"title": "execute_yaizu_apiArguments",
"type": "object"
}