{
  "openapi": "3.1.0",
  "info": {
    "title": "SUDU Catalog Discovery API",
    "version": "1.0.0",
    "description": "Discovery-oriented endpoints exposed by the SUDU catalog website."
  },
  "servers": [
    {
      "url": "https://ronaldo-sudutech.sytes.net"
    }
  ],
  "paths": {
    "/healthz.json": {
      "get": {
        "summary": "Health status",
        "responses": {
          "200": {
            "description": "Healthy",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "properties": {
                    "status": { "type": "string" },
                    "service": { "type": "string" },
                    "timestamp": { "type": "string", "format": "date-time" }
                  },
                  "required": ["status", "service", "timestamp"]
                }
              }
            }
          }
        }
      }
    }
  }
}
