search_statistics
日本政府の統計ポータルe-Statから統計表を検索する(人口・物価・賃金・産業・家計など全省庁の公式統計)。結果のstats_data_idをget_statistics_dataに渡すと実データを取得できる。
Parameters2
| keyword | string | required | 検索語(例: 人口推計 / 消費者物価指数 / 賃金) |
| max_results | integer | optional | 最大件数 |
Raw schema
{
"type": "object",
"properties": {
"keyword": {
"type": "string",
"minLength": 1,
"description": "検索語(例: 人口推計 / 消費者物価指数 / 賃金)"
},
"max_results": {
"default": 5,
"description": "最大件数",
"type": "integer",
"minimum": 1,
"maximum": 20
}
},
"required": [
"keyword"
],
"$schema": "http://json-schema.org/draft-07/schema#"
}