{
  "openapi": "3.1.0",
  "info": {
    "title": "AEOmaxxing Public Site API",
    "version": "1.0.0",
    "description": "Public discovery endpoints for AEOmaxxing agent readiness."
  },
  "servers": [
    {
      "url": "https://aeomaxxing.com"
    }
  ],
  "paths": {
    "/api/health": {
      "get": {
        "summary": "Report public site health.",
        "operationId": "getHealth",
        "responses": {
          "200": {
            "description": "The site is reachable.",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "required": ["status", "service"],
                  "properties": {
                    "status": {
                      "type": "string",
                      "enum": ["ok"]
                    },
                    "service": {
                      "type": "string"
                    },
                    "updated": {
                      "type": "string",
                      "format": "date"
                    }
                  }
                }
              }
            }
          }
        }
      }
    }
  }
}
