{
  "openapi": "3.1.0",
  "info": {
    "title": "bernoussama.com public endpoints",
    "version": "1.0.0",
    "description": "Public machine-readable endpoints exposed by bernoussama.com"
  },
  "servers": [
    {
      "url": "https://bernoussama.com"
    }
  ],
  "paths": {
    "/healthz": {
      "get": {
        "summary": "Health status",
        "operationId": "getHealth",
        "responses": {
          "200": {
            "description": "Service is healthy",
            "content": {
              "text/plain": {
                "schema": {
                  "type": "string",
                  "example": "ok"
                }
              }
            }
          }
        }
      }
    }
  }
}
