{
  "openapi": "3.1.0",
  "info": {
    "title": "François Eoche Portfolio API",
    "version": "1.0.0",
    "summary": "Read-only public portfolio metadata for agents and integrations."
  },
  "servers": [
    {
      "url": "https://feoche.github.io/francoiseoche/"
    }
  ],
  "paths": {
    "/api/profile.json": {
      "get": {
        "operationId": "getPortfolioProfile",
        "summary": "Get public portfolio metadata.",
        "responses": {
          "200": {
            "description": "Public portfolio profile document.",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object"
                }
              }
            }
          }
        }
      }
    },
    "/api/health.json": {
      "get": {
        "operationId": "getApiHealth",
        "summary": "Get the public API health document.",
        "responses": {
          "200": {
            "description": "Health/status document.",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "properties": {
                    "status": {
                      "type": "string"
                    },
                    "service": {
                      "type": "string"
                    },
                    "public": {
                      "type": "boolean"
                    },
                    "site": {
                      "type": "string",
                      "format": "uri"
                    },
                    "generatedAt": {
                      "type": "string",
                      "format": "date-time"
                    }
                  },
                  "required": [
                    "status",
                    "service",
                    "public",
                    "site",
                    "generatedAt"
                  ]
                }
              }
            }
          }
        }
      }
    }
  }
}
