{
  "openapi": "3.1.0",
  "info": {
    "title": "Damla Natural Public Product Catalog API",
    "version": "1.0.0",
    "description": "Public read-only product catalog endpoints for Damla Natural."
  },
  "servers": [
    {
      "url": "https://biodamlanatural.com"
    }
  ],
  "paths": {
    "/products.json": {
      "get": {
        "summary": "Get public product catalog",
        "operationId": "getProductCatalog",
        "responses": {
          "200": {
            "description": "Public product catalog",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object"
                }
              }
            }
          }
        }
      }
    },
    "/llms.txt": {
      "get": {
        "summary": "Get LLM-readable site guide",
        "operationId": "getLlmsTxt",
        "responses": {
          "200": {
            "description": "LLM-readable site guide",
            "content": {
              "text/plain": {
                "schema": {
                  "type": "string"
                }
              }
            }
          }
        }
      }
    },
    "/feed.xml": {
      "get": {
        "summary": "Get RSS feed",
        "operationId": "getRssFeed",
        "responses": {
          "200": {
            "description": "RSS feed",
            "content": {
              "application/rss+xml": {
                "schema": {
                  "type": "string"
                }
              }
            }
          }
        }
      }
    }
  }
}
