{
  "openapi": "3.1.0",
  "info": {
    "title": "Fugenem Public Content API",
    "version": "1.0.0",
    "description": "Read-only discovery endpoints for Fugenem (Danish caulking company). Provides structured access to services, coverage areas, pricing and contact information for AI agents and integrations.",
    "contact": {
      "name": "Fugenem ApS",
      "email": "kontakt@fugenem.dk",
      "url": "https://fugenem.dk"
    },
    "license": { "name": "Proprietary content — see /ai.txt" }
  },
  "servers": [
    { "url": "https://fugenem.dk", "description": "Production" }
  ],
  "tags": [
    { "name": "discovery", "description": "Static discovery documents for crawlers and LLMs" },
    { "name": "content", "description": "Public marketing content" }
  ],
  "paths": {
    "/llms.txt": {
      "get": {
        "tags": ["discovery"],
        "summary": "LLM-readable summary of the site",
        "responses": { "200": { "description": "Markdown summary", "content": { "text/markdown": {} } } }
      }
    },
    "/llms-full.txt": {
      "get": {
        "tags": ["discovery"],
        "summary": "Full LLM-readable knowledge base",
        "responses": { "200": { "description": "Markdown knowledge base", "content": { "text/markdown": {} } } }
      }
    },
    "/index.md": {
      "get": {
        "tags": ["content"],
        "summary": "Markdown version of the homepage content",
        "responses": { "200": { "description": "Markdown", "content": { "text/markdown": {} } } }
      }
    },
    "/sitemap.xml": {
      "get": {
        "tags": ["discovery"],
        "summary": "XML sitemap of all indexable pages",
        "responses": { "200": { "description": "Sitemap", "content": { "application/xml": {} } } }
      }
    },
    "/ai.txt": {
      "get": {
        "tags": ["discovery"],
        "summary": "AI usage policy and crawler permissions",
        "responses": { "200": { "description": "Plain text policy", "content": { "text/plain": {} } } }
      }
    },
    "/.well-known/ai-plugin.json": {
      "get": {
        "tags": ["discovery"],
        "summary": "AI plugin / agent manifest",
        "responses": { "200": { "description": "JSON manifest", "content": { "application/json": {} } } }
      }
    },
    "/ydelser": {
      "get": {
        "tags": ["content"],
        "summary": "List of all services (HTML)",
        "responses": { "200": { "description": "HTML page", "content": { "text/html": {} } } }
      }
    },
    "/omraader": {
      "get": {
        "tags": ["content"],
        "summary": "List of all coverage areas (HTML)",
        "responses": { "200": { "description": "HTML page", "content": { "text/html": {} } } }
      }
    },
    "/priser": {
      "get": {
        "tags": ["content"],
        "summary": "Pricing information (HTML)",
        "responses": { "200": { "description": "HTML page", "content": { "text/html": {} } } }
      }
    }
  }
}
