{
  "openapi": "3.1.0",
  "info": {
    "title": "FoxSignal Public Discovery API",
    "version": "1.0.0",
    "description": "Public discovery document for FoxSignal. Operational APIs require authentication. Authorized agents should prefer the protected MCP endpoint."
  },
  "servers": [
    {
      "url": "https://foxsignal.centralfox.online"
    }
  ],
  "paths": {
    "/": {
      "get": {
        "summary": "FoxSignal public landing page",
        "responses": {
          "200": {
            "description": "Public HTML landing page"
          }
        }
      }
    },
    "/llms.txt": {
      "get": {
        "summary": "Structured product summary for AI crawlers",
        "responses": {
          "200": {
            "description": "Plain-text llms.txt"
          }
        }
      }
    },
    "/.well-known/ucp": {
      "get": {
        "summary": "UCP capability manifest",
        "responses": {
          "200": {
            "description": "FoxSignal UCP manifest"
          }
        }
      }
    },
    "/api/health": {
      "get": {
        "summary": "Backend health check",
        "responses": {
          "200": {
            "description": "Service health"
          }
        }
      }
    },
    "/dashboard": {
      "get": {
        "summary": "Protected operational dashboard",
        "description": "Requires authenticated browser session. Crawlers should not expect access.",
        "responses": {
          "200": {
            "description": "Authenticated dashboard HTML"
          },
          "401": {
            "description": "Authentication required"
          }
        },
        "security": [
          {
            "bearerAuth": []
          }
        ]
      }
    }
  },
  "components": {
    "securitySchemes": {
      "bearerAuth": {
        "type": "http",
        "scheme": "bearer"
      }
    }
  },
  "externalDocs": {
    "description": "FoxSignal MCP endpoint for authorized agents",
    "url": "https://mcp.foxsignal.centralfox.online/mcp"
  }
}
