swagger: "2.0"

info:
  version: 1.0.0
  title: API Specifications

schemes:
  - https
host: qa-ows-ddex-lambda-proxy.theorchard.io
paths:
  /hello/:
    get:
      summary: Check the health of the application.
      responses:
        200:
          description: 200 OK
          examples:
            application/json: { "status": "ok" }
  /ddex-rdx/upc/{upc}:
    get:
      summary: Get the RDx specific DDEX metadata given the UPC for a product
      parameters:
        - in: path
          name: upc
          required: true
          type: string
      responses:
        200:
          description: 200 OK
