{
  "slug": "birthstones",
  "title": "誕生石",
  "description": "月ごとの誕生石。全国宝石卸商協同組合が2021年に改訂した日本の誕生石リストに基づく。",
  "documentation": "/docs/birthstones",
  "count": 12,
  "idField": "month",
  "idAliases": [],
  "fields": [
    "month",
    "stones",
    "stonesEn",
    "meaning"
  ],
  "searchFields": [
    "stones",
    "stonesEn",
    "meaning"
  ],
  "storage": "static",
  "endpoints": [
    {
      "path": "/birthstones",
      "description": "このAPIのメタ情報"
    },
    {
      "path": "/birthstones/all",
      "description": "全件取得",
      "query": [
        "limit",
        "offset",
        "sort",
        "order",
        "fields",
        "pretty"
      ]
    },
    {
      "path": "/birthstones/random",
      "description": "ランダムに1件（?count=n で複数、?seed= で再現可能）",
      "query": [
        "count",
        "seed",
        "fields",
        "pretty"
      ]
    },
    {
      "path": "/birthstones/search",
      "description": "部分一致検索（対象: stones, stonesEn, meaning）",
      "query": [
        "q",
        "limit",
        "offset",
        "sort",
        "order",
        "fields",
        "pretty"
      ]
    },
    {
      "path": "/birthstones/fields",
      "description": "フィールド名の一覧"
    },
    {
      "path": "/birthstones/getMonth",
      "description": "そのフィールドの全件分の値（?id= を付けると1件分）",
      "query": [
        "id",
        "unique",
        "pretty"
      ]
    },
    {
      "path": "/birthstones/:month",
      "description": "ID 指定で1件"
    },
    {
      "path": "/birthstones/:month/:field",
      "description": "1件の特定フィールドだけ"
    }
  ],
  "examples": [
    "/birthstones/4",
    "/birthstones/random",
    "/birthstones/all",
    "/birthstones/getStones"
  ]
}