{
  "openapi": "3.0.0",
  "info": {
    "title": "fabric-starterkit-api-loopback",
    "version": "0.0.1",
    "description": "Loopback API starterkit",
    "contact": {
      "name": "Sean Sundberg",
      "email": "sean@thesundbergs.net"
    }
  },
  "paths": {
    "/health": {
      "get": {
        "x-controller-name": "HealthController",
        "x-operation-name": "health",
        "tags": [
          "HealthController"
        ],
        "responses": {
          "200": {
            "description": "Health Response",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/HealthResponse"
                }
              }
            }
          }
        },
        "operationId": "HealthController.health"
      }
    },
    "/ping": {
      "get": {
        "x-controller-name": "PingController",
        "x-operation-name": "ping",
        "tags": [
          "PingController"
        ],
        "responses": {
          "200": {
            "description": "Ping Response",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/PingResponse"
                }
              }
            }
          }
        },
        "operationId": "PingController.ping"
      }
    }
  },
  "servers": [
    {
      "url": "https://cd-loopbackapi-ap-6-2-dev-miyke.newws-ap6-retry2.002.eastus2.containers.sbp.eyclienthub.com"
    }
  ],
  "components": {
    "schemas": {
      "HealthResponse": {
        "type": "object",
        "title": "HealthResponse",
        "properties": {
          "status": {
            "type": "string"
          }
        }
      },
      "PingResponse": {
        "type": "object",
        "title": "PingResponse",
        "properties": {
          "greeting": {
            "type": "string"
          },
          "date": {
            "type": "string"
          },
          "url": {
            "type": "string"
          },
          "headers": {
            "type": "object",
            "properties": {
              "Content-Type": {
                "type": "string"
              }
            },
            "additionalProperties": true
          }
        }
      }
    }
  }
}