search_law
Search Japanese laws and regulations by keyword or law number to find relevant legal information from official government sources.
Instructions
法令名や法令番号で法令を検索します。キーワード検索に対応しています。
Input Schema
| Name | Required | Description | Default | 
|---|---|---|---|
| keyword | Yes | 検索キーワード(法令名の一部や法令番号) | |
| category | No | 法令の種別(1:法律、2:政令、3:省令など) | |
| limit | No | 取得する最大件数(デフォルト: 100) | 
Input Schema (JSON Schema)
{
  "properties": {
    "category": {
      "description": "法令の種別(1:法律、2:政令、3:省令など)",
      "enum": [
        "1",
        "2",
        "3",
        "4",
        "5"
      ],
      "type": "string"
    },
    "keyword": {
      "description": "検索キーワード(法令名の一部や法令番号)",
      "type": "string"
    },
    "limit": {
      "default": 100,
      "description": "取得する最大件数(デフォルト: 100)",
      "type": "number"
    }
  },
  "required": [
    "keyword"
  ],
  "type": "object"
}