{
  "routes": {
    "/health": "Immediate 200 response (no cache)",
    "/test-immediate": "Immediate 200 response (cacheable, for warming cache)",
    "/test-with-cache": "Slow response (cacheable, default 60s delay)",
    "/test-without-cache": "Slow response (not cacheable, default 60s delay)",
    "/test-error-cacheable": "Slow 5XX response (cacheable, for testing stale-if-error)",
    "/test-chunked": "Chunked/streaming response (simulates slow transfer)",
    "/test-slow-cache": "Alias for /test-with-cache",
    "/test-slow-no-cache": "Alias for /test-without-cache"
  },
  "queryParams": {
    "delay": "Delay in milliseconds (default: 60000)",
    "status": "HTTP status code to return (overrides default)"
  },
  "examples": [
    "/test-with-cache?delay=15000",
    "/test-with-cache?delay=5000&status=200",
    "/test-error-cacheable?delay=10000&status=503"
  ]
}