{
  "openapi": "3.1.0",
  "info": {
    "title": "linkedinScrap API",
    "description": "linkedinScrap API",
    "version": "1.0.0"
  },
  "paths": {
    "/api/v1/health": {
      "get": {
        "summary": "Health V1",
        "description": "Liveness/readiness probe used by Coolify and the Dockerfile healthcheck.",
        "operationId": "health_v1_api_v1_health_get",
        "responses": {
          "200": {
            "description": "Successful Response",
            "content": {
              "application/json": {
                "schema": {}
              }
            }
          }
        }
      }
    },
    "/health": {
      "get": {
        "summary": "Health Root",
        "description": "Alternate health path (documentation/verification convenience).",
        "operationId": "health_root_health_get",
        "responses": {
          "200": {
            "description": "Successful Response",
            "content": {
              "application/json": {
                "schema": {}
              }
            }
          }
        }
      }
    }
  },
  "servers": [
    {
      "url": "https://api.linkedinscrap.theboomer.dev",
      "description": "Producción"
    }
  ]
}