openapi: 3.1.0
info:
  title: Example API
  version: 1.0.0
  description: >-
    A meaningful description for your API helps users to understand how to get
    started with your platform. Description fields support Markdown and the `>-`
    notation at the start makes this multiline Markdown.

    You can link to your [project
    README](https://github.com/lornajane/openapi-overlays-js) or other resources
    from here as well.
paths:
  /example:
    get:
      responses:
        '200':
          description: A simple example response
          content:
            application/json:
              schema:
                type: object
                properties:
                  message:
                    type: string

