{
  "openapi": "3.1.0",
  "info": {
    "title": "locutusofb.org public HTTP surface",
    "version": "1.0.0",
    "description": "Read-only static site. All resources are unauthenticated GET endpoints for HTML, assets, sitemap, and discovery metadata."
  },
  "servers": [{ "url": "https://locutusofb.org", "description": "Production" }],
  "paths": {
    "/": {
      "get": {
        "summary": "Site root (may redirect to index)",
        "responses": { "200": { "description": "HTML or redirect" } }
      }
    },
    "/index.html": {
      "get": {
        "summary": "Home page",
        "responses": { "200": { "description": "HTML" } }
      }
    },
    "/sitemap.xml": {
      "get": {
        "summary": "XML sitemap",
        "responses": { "200": { "description": "application/xml" } }
      }
    },
    "/.well-known/api-catalog": {
      "get": {
        "summary": "RFC 9727 API catalog (linkset)",
        "responses": { "200": { "description": "application/linkset+json" } }
      }
    },
    "/api/status.json": {
      "get": {
        "summary": "Static health indicator",
        "responses": { "200": { "description": "application/json" } }
      }
    }
  },
  "components": {}
}
