{
  "openapi": "3.1.0",
  "info": {
    "title": "Maksym Sulym Public CV API",
    "version": "1.0.0",
    "description": "Read-only HTTP surface for the public CV. No authentication required for GET."
  },
  "servers": [
    {
      "url": "https://cv.mastrix.cc"
    }
  ],
  "paths": {
    "/resume.md": {
      "get": {
        "operationId": "getResumeMarkdown",
        "summary": "Compact markdown résumé",
        "responses": {
          "200": {
            "description": "Markdown CV",
            "content": {
              "text/markdown": {
                "schema": {
                  "type": "string"
                }
              }
            }
          }
        }
      }
    },
    "/ld.jsonld": {
      "get": {
        "operationId": "getProfileJsonLd",
        "summary": "Schema.org ProfilePage graph",
        "responses": {
          "200": {
            "description": "JSON-LD graph",
            "content": {
              "application/ld+json": {
                "schema": {
                  "type": "object"
                }
              }
            }
          }
        }
      }
    },
    "/build-info.json": {
      "get": {
        "operationId": "getBuildInfo",
        "summary": "Build timestamp and content version",
        "responses": {
          "200": {
            "description": "Build metadata",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object"
                }
              }
            }
          }
        }
      }
    },
    "/llms.txt": {
      "get": {
        "operationId": "getLlmsTxt",
        "summary": "LLM discovery map (llms.txt)",
        "responses": {
          "200": {
            "description": "llms.txt document",
            "content": {
              "text/markdown": {
                "schema": {
                  "type": "string"
                }
              }
            }
          }
        }
      }
    }
  }
}
