openapi: 3.0.0
info:
  title: generated-express
  version: 0.0.1
paths:
  /signup:
    post:
      requestBody:
        content:
          application/json:
            schema:
              type: object
      responses:
        "201":
          description: Created
          content:
            application/json:
              schema:
                $ref: "#/components/schemas/Response"
        "400":
          description: Bad Request
        "401":
          description: Unauthorized
        "500":
          description: Server Error
components:
  schemas:
    Response:
      type: object
      properties:
        status:
          type: string
        message:
          type: string
        data:
          type: object