{
  "slug": "eto",
  "title": "十二支",
  "description": "十二支と、それぞれが表す動物・方角・時刻。yearMod12 は「西暦をこの数で割った余りがその年の干支」を表す（例: 2020 % 12 = 4 で子年）。",
  "documentation": "/docs/eto",
  "count": 12,
  "idField": "name",
  "idAliases": [
    "order",
    "kana",
    "romaji",
    "english",
    "animal"
  ],
  "fields": [
    "order",
    "name",
    "kana",
    "animal",
    "animalKana",
    "romaji",
    "english",
    "direction",
    "hour",
    "yearMod12",
    "recentYear"
  ],
  "searchFields": [
    "name",
    "kana",
    "romaji",
    "english",
    "animal",
    "animalKana"
  ],
  "storage": "static",
  "endpoints": [
    {
      "path": "/eto",
      "description": "このAPIのメタ情報"
    },
    {
      "path": "/eto/all",
      "description": "全件取得",
      "query": [
        "limit",
        "offset",
        "sort",
        "order",
        "fields",
        "pretty"
      ]
    },
    {
      "path": "/eto/random",
      "description": "ランダムに1件（?count=n で複数、?seed= で再現可能）",
      "query": [
        "count",
        "seed",
        "fields",
        "pretty"
      ]
    },
    {
      "path": "/eto/search",
      "description": "部分一致検索（対象: name, kana, romaji, english, animal, animalKana）",
      "query": [
        "q",
        "limit",
        "offset",
        "sort",
        "order",
        "fields",
        "pretty"
      ]
    },
    {
      "path": "/eto/fields",
      "description": "フィールド名の一覧"
    },
    {
      "path": "/eto/getOrder",
      "description": "そのフィールドの全件分の値（?id= を付けると1件分）",
      "query": [
        "id",
        "unique",
        "pretty"
      ]
    },
    {
      "path": "/eto/:name",
      "description": "ID 指定で1件"
    },
    {
      "path": "/eto/:name/:field",
      "description": "1件の特定フィールドだけ"
    }
  ],
  "examples": [
    "/eto/午",
    "/eto/7",
    "/eto/Horse",
    "/eto/random",
    "/eto/getAnimal"
  ]
}