openapi: 3.0.0
info:
  title: serverx-serverless
  version: '1.0'
paths:
  /explode:
    get:
      description: This one will blow your mind!
      responses:
        '500':
          content:
            application/json:
              schema:
                properties:
                  error:
                    type: string
                  stack:
                    type: string
                required: []
                type: object
      summary: A family of test endpoints
      parameters: []
  /foo/bar/{id}:
    get:
      description: >-
        Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod
        tempor incididunt ut labore et dolore magna aliqua.
      responses:
        '500':
          content:
            application/json:
              schema:
                properties:
                  error:
                    type: string
                  stack:
                    type: string
                required: []
                type: object
      summary: A family of test endpoints
      parameters:
        - name: id
          in: path
          required: true
          schema:
            type: string
      requestBody:
        content:
          application/x-www-form-urlencoded:
            schema:
              properties:
                p:
                  type: string
                q:
                  type: boolean
                r:
                  type: integer
                t:
                  type: array
                  items:
                    type: object
                    properties:
                      a:
                        type: integer
                      b:
                        type: string
                      c:
                        type: boolean
                    required: []
              required: []
              type: object
          application/json:
            schema:
              properties:
                p:
                  type: string
                q:
                  type: boolean
                r:
                  type: integer
                t:
                  type: array
                  items:
                    type: object
                    properties:
                      a:
                        type: integer
                      b:
                        type: string
                      c:
                        type: boolean
                    required: []
              required: []
              type: object
  /foo/baz:
    get:
      description: >-
        Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod
        tempor incididunt ut labore et dolore magna aliqua.
      responses:
        '500':
          content:
            application/json:
              schema:
                properties:
                  error:
                    type: string
                  stack:
                    type: string
                required: []
                type: object
      summary: A family of test endpoints
      parameters: []
  /goodbye:
    get:
      description: ''
      responses:
        '500':
          content:
            application/json:
              schema:
                properties:
                  error:
                    type: string
                  stack:
                    type: string
                required: []
                type: object
      summary: A family of test endpoints
      parameters: []
  /hello:
    get:
      description: ''
      responses:
        '500':
          content:
            application/json:
              schema:
                properties:
                  error:
                    type: string
                  stack:
                    type: string
                required: []
                type: object
      summary: A family of test endpoints
      parameters: []
  /isalive:
    get:
      description: ''
      responses:
        '500':
          content:
            application/json:
              schema:
                properties:
                  error:
                    type: string
                  stack:
                    type: string
                required: []
                type: object
      summary: A family of test endpoints
      parameters: []
  /not-here:
    get:
      description: ''
      responses:
        '301':
          headers:
            Location:
              schema:
                type: string
        '500':
          content:
            application/json:
              schema:
                properties:
                  error:
                    type: string
                  stack:
                    type: string
                required: []
                type: object
      summary: A family of test endpoints
      parameters: []
  /openapi.yml:
    get:
      description: Develop OpenAPI representation of this server
      responses:
        '500':
          content:
            application/json:
              schema:
                properties:
                  error:
                    type: string
                  stack:
                    type: string
                required: []
                type: object
      summary: A family of test endpoints
      parameters: []
components:
  schemas: {}
  responses: {}
  parameters: {}
  examples: {}
  requestBodies: {}
  headers: {}
  securitySchemes: {}
  links: {}
  callbacks: {}
tags: []
servers: []
