{
  "openapi": "3.1.0",
  "info": {
    "title": "mathonvictor.com Public Discovery API",
    "version": "1.0.0",
    "description": "Machine-readable discovery endpoints for Victor Mathon's portfolio website."
  },
  "servers": [
    {
      "url": "https://mathonvictor.com"
    }
  ],
  "paths": {
    "/.well-known/api-catalog": {
      "get": {
        "summary": "API catalog",
        "responses": {
          "200": {
            "description": "RFC 9727 linkset catalog",
            "content": {
              "application/linkset+json": {
                "schema": {
                  "type": "object"
                }
              }
            }
          }
        }
      }
    },
    "/.well-known/status.json": {
      "get": {
        "summary": "Public site status",
        "responses": {
          "200": {
            "description": "Status response",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "properties": {
                    "status": {
                      "type": "string"
                    },
                    "service": {
                      "type": "string"
                    },
                    "homepage": {
                      "type": "string",
                      "format": "uri"
                    }
                  },
                  "required": ["status", "service", "homepage"]
                }
              }
            }
          }
        }
      }
    }
  }
}
