generate_api_command
Generate API commands for Yaizu City data by specifying entity types like Aed or EvacuationShelter, with parameter suggestions from the API catalog.
Instructions
指定したエンティティタイプに対するAPI実行コマンドを生成します。 APIカタログの情報を基に適切なパラメータを提案します。
Args: entity_type: エンティティタイプ(例: Aed, EvacuationShelter)
Returns: str: 使用可能なAPIコマンド例
Input Schema
| Name | Required | Description | Default | 
|---|---|---|---|
| entity_type | Yes | 
Input Schema (JSON Schema)
{
  "properties": {
    "entity_type": {
      "title": "Entity Type",
      "type": "string"
    }
  },
  "required": [
    "entity_type"
  ],
  "title": "generate_api_commandArguments",
  "type": "object"
}