{
  "openapi": "3.1.0",
  "info": {
    "title": "Web Agentic - Logística API",
    "description": "API REST secundária (fallback do MCP) para consumo das regras de negócio logísticas (Preços, Rastreio, Rotas)",
    "version": "1.0.0"
  },
  "servers": [
    {
      "url": "https://labdx.org"
    }
  ],
  "paths": {
    "/api/tracking/{code}": {
      "get": {
        "summary": "Busca eventos de rastreio",
        "operationId": "trackPackage",
        "parameters": [
          {
            "name": "code",
            "in": "path",
            "required": true,
            "schema": { "type": "string" }
          }
        ],
        "responses": {
          "200": {
            "description": "OK"
          }
        }
      }
    }
  }
}
