{
  "openapi": "3.1.0",
  "info": {
    "title": "Leo and Lions Remodeling Landing Page Public Discovery",
    "summary": "Public machine-readable discovery for the remodeling.leoandlionsgroup.com landing page.",
    "description": "This static landing page exposes public discovery resources and a user-reviewed estimate form. The form posts to Web3Forms in the browser only after the user submits it.",
    "version": "1.0.0",
    "contact": {
      "name": "Leo and Lions Home Group Inc",
      "email": "contact@leoandlionsgroup.com",
      "url": "https://leoandlionsgroup.com/"
    }
  },
  "servers": [
    {
      "url": "https://remodeling.leoandlionsgroup.com"
    }
  ],
  "paths": {
    "/": {
      "get": {
        "summary": "Landing page",
        "description": "Returns the human-facing Leo and Lions remodeling landing page.",
        "responses": {
          "200": {
            "description": "HTML landing page",
            "content": {
              "text/html": {
                "schema": {
                  "type": "string"
                }
              }
            }
          }
        }
      }
    },
    "/index.md": {
      "get": {
        "summary": "Markdown page summary",
        "description": "Returns an agent-friendly Markdown summary of the landing page.",
        "responses": {
          "200": {
            "description": "Markdown content",
            "content": {
              "text/markdown": {
                "schema": {
                  "type": "string"
                }
              }
            }
          }
        }
      }
    },
    "/llms.txt": {
      "get": {
        "summary": "LLM overview",
        "description": "Returns guidance for agents and language models.",
        "responses": {
          "200": {
            "description": "LLM discovery document",
            "content": {
              "text/plain": {
                "schema": {
                  "type": "string"
                }
              }
            }
          }
        }
      }
    },
    "/health.json": {
      "get": {
        "summary": "Static site health",
        "description": "Returns a static health document for uptime and discovery checks.",
        "responses": {
          "200": {
            "description": "Health status",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "properties": {
                    "status": {
                      "type": "string"
                    }
                  }
                }
              }
            }
          }
        }
      }
    }
  }
}
