{
  "openapi": "3.1.0",
  "info": {
    "title": "Horizon Pines",
    "description": "Glamping and camping in Qoubaiyat, Lebanon — luxury yurts, Lotus Belle tents, and family campsites in Akkar's pine forests. This API specification provides structured entry points for Artificial Intelligence agents to discover site content and understand business offerings.",
    "version": "1.0.0",
    "contact": {
      "name": "Horizon Pines Accommodations",
      "url": "https://horizonpines.com/",
      "email": "contact@horizonpines.com"
    }
  },
  "servers": [
    {
      "url": "https://horizonpines.com",
      "description": "Production Server"
    }
  ],
  "paths": {
    "/llms.txt": {
      "get": {
        "operationId": "getLLMsTxt",
        "summary": "Get AI context document",
        "description": "Retrieves the standard llms.txt file which contains the primary natural-language facts, services, and policies about Horizon Pines for AI agents.",
        "responses": {
          "200": {
            "description": "Markdown text document containing the context payload.",
            "content": {
              "text/plain": {
                "schema": {
                  "type": "string"
                }
              }
            }
          }
        }
      }
    },
    "/sitemap.xml": {
      "get": {
        "operationId": "getSitemap",
        "summary": "Get website sitemap",
        "description": "Provides the complete list of discoverable structured URLs across the Horizon Pines website, including Glamping, Camping, Experiences, FAQ, About, and Blog pages.",
        "responses": {
          "200": {
            "description": "Returns the XML sitemap.",
            "content": {
              "application/xml": {
                "schema": {
                  "type": "string"
                }
              }
            }
          }
        }
      }
    }
  }
}
