# 自然災害伝承碑を検索

## OpenAPI Specification

```yaml
openapi: 3.0.1
info:
  title: ''
  description: ''
  version: 1.0.0
paths:
  /monument:
    get:
      summary: 自然災害伝承碑を検索
      deprecated: false
      description: |-
        都道府県等の住所をリクエストすることで、自然災害伝承碑を取得することができます。

        認証要件: Authorization ヘッダーに `Bearer {token}` を指定してください（Bearer の後ろは半角スペース）。
      operationId: get_monument_query_query
      tags: []
      parameters:
        - name: query
          in: query
          description: ''
          required: false
          schema:
            type: string
      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:
                        id:
                          type: string
                        monumentName:
                          type: string
                        erectionYear:
                          type: string
                        location:
                          type: string
                        disasterName:
                          type: string
                        disasterType:
                          type: string
                        traditionDetails:
                          type: string
                        latitude:
                          type: number
                        longitude:
                          type: number
                      x-apidog-orders:
                        - id
                        - monumentName
                        - erectionYear
                        - location
                        - disasterName
                        - disasterType
                        - traditionDetails
                        - latitude
                        - longitude
                  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/monument
                results:
                  - id: 23100-001
                    monumentName: 伊勢湾台風殉難者慰霊之碑
                    erectionYear: '1960'
                    location: 愛知県名古屋市千種区平和公園三丁目
                    disasterName: 伊勢湾台風（1959年9月26日）
                    disasterType: 高潮
                    traditionDetails: >-
                      昭和34年(1959）9月26日夜半に台風15号（伊勢湾台風）が襲来、高潮のため南部臨海地帯が浸水し、遭難者は約二千余名に及んだ。
                    latitude: 35.172181
                    longitude: 136.982218
                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-32129158-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: []

```
