{
  "openapi": "3.0.3",
  "info": {
    "title": "The International Franchise Entrepreneur — Content Feed API",
    "description": "Machine-readable RSS feed of published franchise intelligence articles.",
    "version": "1.0.0",
    "contact": {
      "name": "Editorial Team",
      "url": "https://thefranchiseentrepreneur.com/contact-us"
    }
  },
  "servers": [
    {
      "url": "https://thefranchiseentrepreneur.com",
      "description": "Production"
    }
  ],
  "paths": {
    "/feed": {
      "get": {
        "summary": "RSS 2.0 feed",
        "description": "Returns the latest 50 published articles as an RSS 2.0 feed with Dublin Core and Atom extensions.",
        "operationId": "getRssFeed",
        "responses": {
          "200": {
            "description": "RSS 2.0 XML feed",
            "content": {
              "application/rss+xml": {
                "schema": {
                  "type": "string"
                }
              }
            }
          },
          "500": {
            "description": "Internal server error"
          }
        }
      }
    }
  }
}
