{
  "slug": "horoscope",
  "title": "12星座",
  "description": "西洋占星術の12星座。期間・四大元素（火地風水）・三区分・支配星つき。",
  "documentation": "/docs/horoscope",
  "count": 12,
  "idField": "name",
  "idAliases": [
    "order",
    "kana",
    "latin",
    "english"
  ],
  "fields": [
    "order",
    "name",
    "kana",
    "latin",
    "english",
    "symbol",
    "from",
    "to",
    "element",
    "quality",
    "ruler"
  ],
  "searchFields": [
    "name",
    "kana",
    "latin",
    "english",
    "element",
    "ruler"
  ],
  "storage": "static",
  "endpoints": [
    {
      "path": "/horoscope",
      "description": "このAPIのメタ情報"
    },
    {
      "path": "/horoscope/all",
      "description": "全件取得",
      "query": [
        "limit",
        "offset",
        "sort",
        "order",
        "fields",
        "pretty"
      ]
    },
    {
      "path": "/horoscope/random",
      "description": "ランダムに1件（?count=n で複数、?seed= で再現可能）",
      "query": [
        "count",
        "seed",
        "fields",
        "pretty"
      ]
    },
    {
      "path": "/horoscope/search",
      "description": "部分一致検索（対象: name, kana, latin, english, element, ruler）",
      "query": [
        "q",
        "limit",
        "offset",
        "sort",
        "order",
        "fields",
        "pretty"
      ]
    },
    {
      "path": "/horoscope/fields",
      "description": "フィールド名の一覧"
    },
    {
      "path": "/horoscope/getOrder",
      "description": "そのフィールドの全件分の値（?id= を付けると1件分）",
      "query": [
        "id",
        "unique",
        "pretty"
      ]
    },
    {
      "path": "/horoscope/:name",
      "description": "ID 指定で1件"
    },
    {
      "path": "/horoscope/:name/:field",
      "description": "1件の特定フィールドだけ"
    }
  ],
  "examples": [
    "/horoscope/獅子座",
    "/horoscope/Leo",
    "/horoscope/5",
    "/horoscope/random",
    "/horoscope/search?q=%E7%81%AB",
    "/horoscope/getLatin"
  ]
}