{
  "openapi": "3.1.0",
  "info": {
    "title": "Zion Park Tour catalog",
    "version": "1.0.0",
    "description": "Public read-only tour catalog for zionparktour.com. No authentication."
  },
  "servers": [
    {
      "url": "https://zionparktour.com"
    }
  ],
  "paths": {
    "/catalog.json": {
      "get": {
        "operationId": "getCatalog",
        "summary": "Schema.org tour catalog",
        "responses": {
          "200": {
            "description": "DataCatalog of Zion Park tours",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object"
                }
              }
            }
          }
        }
      }
    },
    "/llms.txt": {
      "get": {
        "operationId": "getLlmsTxt",
        "summary": "Short visitor facts for agents",
        "responses": {
          "200": {
            "description": "Plain-text site summary",
            "content": {
              "text/plain": {
                "schema": {
                  "type": "string"
                }
              }
            }
          }
        }
      }
    }
  }
}
