{
  "openapi": "3.1.0",
  "info": {
    "title": "Grand Tour Gravel read API",
    "version": "1.0.0",
    "description": "Static, read-only JSON about a proposed Colorado gravel stage race. No authentication, no write operations."
  },
  "servers": [
    {
      "url": "https://grandtourgravel.com"
    }
  ],
  "paths": {
    "/api/race.json": {
      "get": {
        "operationId": "getRace",
        "summary": "Race facts, status and target dates",
        "responses": {
          "200": {
            "description": "Race facts",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object"
                }
              }
            }
          }
        }
      }
    },
    "/api/stages.json": {
      "get": {
        "operationId": "listStages",
        "summary": "Candidate stages with approximate distance and climbing",
        "responses": {
          "200": {
            "description": "Stages",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object"
                }
              }
            }
          }
        }
      }
    },
    "/api/pages.json": {
      "get": {
        "operationId": "listPages",
        "summary": "Every public page with title and description",
        "responses": {
          "200": {
            "description": "Pages",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object"
                }
              }
            }
          }
        }
      }
    }
  }
}
