{
  "openapi": "3.0.3",
  "info": {
    "title": "Emil Ingemar Karlsson public site APIs",
    "version": "1.0.0",
    "description": "Read-only JSON endpoints for profile and content discovery. No authentication. Prefer https://www.emilingemarkarlsson.com.",
    "contact": {
      "name": "Emil Ingemar Karlsson",
      "url": "https://www.emilingemarkarlsson.com/contact"
    }
  },
  "servers": [
    {
      "url": "https://www.emilingemarkarlsson.com"
    }
  ],
  "paths": {
    "/api/profile.json": {
      "get": {
        "operationId": "getProfile",
        "summary": "Canonical person/profile entity",
        "description": "Structured Person entity, career stages, evidence, and current focus.",
        "responses": {
          "200": {
            "description": "Profile JSON",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "additionalProperties": true
                }
              }
            }
          }
        }
      }
    },
    "/api/content.json": {
      "get": {
        "operationId": "getContentIndex",
        "summary": "Public articles and projects index",
        "description": "Machine-readable index of public blog posts and projects with feeds.",
        "responses": {
          "200": {
            "description": "Content index JSON",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "additionalProperties": true
                }
              }
            }
          }
        }
      }
    }
  }
}