{
  "openapi": "3.0.3",
  "info": {
    "title": "Labangram Official API",
    "version": "1.0.0",
    "description": "Public API endpoints for Labangram commercial photography and engineering portfolio."
  },
  "servers": [
    {
      "url": "https://labangram.kamera-ichi.com",
      "description": "Production Server"
    }
  ],
  "paths": {
    "/api/health": {
      "get": {
        "summary": "Health Check",
        "description": "Returns 200 OK status to confirm API availability.",
        "responses": {
          "200": {
            "description": "Healthy",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "properties": {
                    "status": { "type": "string", "example": "ok" },
                    "timestamp": { "type": "string", "example": "2026-08-23T15:00:00.000Z" }
                  }
                }
              }
            }
          }
        }
      }
    }
  }
}
