swagger: "2.0"

info:
  version: 1.0.0
  title: API Specifications

schemes:
  - https
host: qa-ows-github-sqs-build-proxy.theorchard.io
paths:
  /message:
    post:
      summary: Creates an SQS message from a github webhook.
      requestBody:
        required: true
        content:
          application/json:
            schema:
              type: object
      responses: 
        '200':
          description: Message created
  /hello/:
    get:
      summary: Check the health of the application.
      responses:
        200:
          description: 200 OK
          examples:
            application/json: { "status": "ok" }
