# 崩壊地名の由来一覧を取得

## OpenAPI Specification

```yaml
openapi: 3.0.1
info:
  title: ''
  description: ''
  version: 1.0.0
paths:
  /list:
    get:
      summary: 崩壊地名の由来一覧を取得
      deprecated: false
      description: |-
        崩壊地名の由来一覧を取得できます。

        認証要件: Authorization ヘッダーに `Bearer {token}` を指定してください（Bearer の後ろは半角スペース）。
      operationId: get_list
      tags: []
      parameters: []
      responses:
        '200':
          description: HTTP 200 response
          content:
            application/json:
              schema:
                type: object
                properties:
                  metadata:
                    type: object
                    properties:
                      title:
                        type: string
                      detail:
                        type: string
                      status:
                        type: integer
                    x-apidog-orders:
                      - title
                      - detail
                      - status
                  _links:
                    type: object
                    properties:
                      self:
                        type: object
                        properties:
                          href:
                            type: string
                        x-apidog-orders:
                          - href
                    x-apidog-orders:
                      - self
                  results:
                    type: array
                    items:
                      type: object
                      properties:
                        placeNm:
                          type: string
                        placeYomi:
                          type: string
                        tags:
                          type: string
                        commentary:
                          type: string
                        example:
                          type: string
                        searchCd:
                          type: string
                        searchNm:
                          type: string
                        kanjiFlg:
                          type: string
                      x-apidog-orders:
                        - placeNm
                        - placeYomi
                        - tags
                        - commentary
                        - example
                        - searchCd
                        - searchNm
                        - kanjiFlg
                  errors:
                    type: object
                    properties: {}
                    x-apidog-orders: []
                x-apidog-orders:
                  - metadata
                  - _links
                  - results
                  - errors
              example:
                metadata:
                  title: Success
                  detail: OK
                  status: 200
                _links:
                  self:
                    href: /v2/houkaichimei/list
                results:
                  - placeNm: 蕨
                    placeYomi: ワラビ
                    tags: 水害
                    commentary: 川に挟まれた場所
                    example: 蕨
                    searchCd: '9'
                    searchNm: 部分一致
                    kanjiFlg: '1'
                  - placeNm: 和田
                    placeYomi: ワダ
                    tags: 水害
                    commentary: 海岸や川で入江などの屈曲した場所を意味する。海岸部では集落名となることが多い。
                    example: 和田、曲、大輪田
                    searchCd: '9'
                    searchNm: 部分一致
                    kanjiFlg: ''
                errors: {}
          headers: {}
          x-apidog-name: ''
      security:
        - bearer: []
      x-apidog-folder: ''
      x-apidog-status: released
      x-run-in-apidog: https://app.apidog.com/web/project/1243788/apis/api-32129157-run
components:
  schemas: {}
  securitySchemes:
    bearerAuth:
      bearerFormat: JWT
      scheme: bearer
      type: jwt
    bearer:
      type: http
      scheme: bearer
servers:
  - url: https://app.livlog.xyz/webapi/v2/houkaichimei
    description: https://app.livlog.xyz/webapi/v2/houkaichimei
security: []

```
