{
  "openapi": "3.1.0",
  "info": {
    "title": "Weather Bolt API",
    "version": "1.0.0",
    "description": "Weather Bolt API — fetch hyperlocal weather."
  },
  "servers": [
    {
      "url": "https://api.weather-bolt-api.dev/v1"
    }
  ],
  "paths": {
    "/health": {
      "get": {
        "operationId": "health",
        "summary": "Health check",
        "responses": {
          "200": {
            "description": "OK"
          }
        }
      }
    }
  },
  "components": {
    "securitySchemes": {
      "apiKey": {
        "type": "apiKey",
        "in": "header",
        "name": "X-API-Key"
      }
    }
  },
  "security": [
    {
      "apiKey": []
    }
  ]
}