{"openapi":"3.1.0","info":{"title":"heytea.dev API","description":"Singleton API for the HeyTea Downtown Metreon wait-time dashboard.","contact":{"name":"Jet Pham"},"license":{"name":"MIT","identifier":"MIT"},"version":"0.1.0"},"servers":[{"url":"https://api.heytea.dev","description":"Production"}],"paths":{"/closing-notice":{"get":{"tags":["crate::routes"],"operationId":"closing_notice","responses":{"200":{"description":"","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ClosingNoticeResponse"}}}},"503":{"description":"","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ApiErrorBody"}}}}}}},"/healthz":{"get":{"tags":["crate::routes"],"operationId":"healthz","responses":{"200":{"description":"","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HealthResponse"}}}}}}},"/history":{"get":{"tags":["crate::routes"],"operationId":"history","parameters":[{"name":"range","in":"query","description":"Lookback range. Supported values: today, 1h, 6h, 24h, 7d, 30d, 1y.","required":false,"schema":{"type":"string"}}],"responses":{"200":{"description":"","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HistoryResponse"}}}},"400":{"description":"","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ApiErrorBody"}}}}}}},"/notice":{"get":{"tags":["crate::routes"],"operationId":"notice","responses":{"200":{"description":"","content":{"application/json":{"schema":{"$ref":"#/components/schemas/NoticeResponse"}}}},"503":{"description":"","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ApiErrorBody"}}}}}}},"/readyz":{"get":{"tags":["crate::routes"],"operationId":"readyz","responses":{"200":{"description":"","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ReadyResponse"}}}},"503":{"description":"","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ReadyResponse"}}}}}}},"/status":{"get":{"tags":["crate::routes"],"operationId":"status","responses":{"200":{"description":"","content":{"application/json":{"schema":{"$ref":"#/components/schemas/StatusResponse"}}}},"503":{"description":"","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ApiErrorBody"}}}}}}},"/stream":{"get":{"tags":["crate::routes"],"operationId":"stream","responses":{"200":{"description":"Server-sent status events"}}}},"/wait-time":{"get":{"tags":["crate::routes"],"operationId":"wait_time","responses":{"200":{"description":"","content":{"application/json":{"schema":{"$ref":"#/components/schemas/WaitTimeResponse"}}}},"503":{"description":"","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ApiErrorBody"}}}}}}}},"components":{"schemas":{"ApiErrorBody":{"type":"object","required":["error"],"properties":{"error":{"$ref":"#/components/schemas/ApiErrorDetail"}}},"ApiErrorCode":{"type":"string","enum":["NOT_READY","NOT_FOUND","INVALID_REQUEST","RATE_LIMITED","UPSTREAM_UNAVAILABLE","INTERNAL"]},"ApiErrorDetail":{"type":"object","required":["code","message"],"properties":{"code":{"$ref":"#/components/schemas/ApiErrorCode"},"message":{"type":"string"},"retryAfterSeconds":{"type":["integer","null"],"format":"int64","minimum":0}}},"ClosingNoticeResponse":{"type":"object","required":["stale"],"properties":{"closingNotice":{"type":["string","null"]},"observedAt":{"type":["string","null"],"format":"date-time"},"stale":{"type":"boolean"}}},"HealthResponse":{"type":"object","required":["ok","service","checkedAt"],"properties":{"checkedAt":{"type":"string","format":"date-time"},"ok":{"type":"boolean"},"service":{"type":"string"}}},"HistoryPoint":{"type":"object","required":["start","end","sampleCount"],"properties":{"avgDeliveryEstimateMinutes":{"type":["number","null"],"format":"double"},"avgMakingCups":{"type":["number","null"],"format":"double"},"avgMakingOrders":{"type":["number","null"],"format":"double"},"avgPickupWaitMinutes":{"type":["number","null"],"format":"double"},"end":{"type":"string","format":"date-time"},"maxPickupWaitMinutes":{"type":["integer","null"],"format":"int32"},"minPickupWaitMinutes":{"type":["integer","null"],"format":"int32"},"sampleCount":{"type":"integer","format":"int64"},"start":{"type":"string","format":"date-time"}}},"HistoryResponse":{"type":"object","required":["range","generatedAt","points"],"properties":{"generatedAt":{"type":"string","format":"date-time"},"points":{"type":"array","items":{"$ref":"#/components/schemas/HistoryPoint"}},"range":{"type":"string"}}},"NoticeResponse":{"type":"object","required":["stale"],"properties":{"notice":{"type":["string","null"]},"observedAt":{"type":["string","null"],"format":"date-time"},"stale":{"type":"boolean"}}},"ReadyResponse":{"type":"object","required":["ok","database","checkedAt"],"properties":{"checkedAt":{"type":"string","format":"date-time"},"database":{"type":"boolean"},"ok":{"type":"boolean"}}},"StatusResponse":{"type":"object","required":["name","address","observedAt","stale","staleAfter"],"properties":{"address":{"type":"string"},"closingNotice":{"type":["string","null"]},"deliveryEstimateMinutes":{"type":["integer","null"],"format":"int32"},"isOpen":{"type":["boolean","null"]},"makingCups":{"type":["integer","null"],"format":"int32"},"makingOrders":{"type":["integer","null"],"format":"int32"},"name":{"type":"string"},"notice":{"type":["string","null"]},"observedAt":{"type":"string","format":"date-time"},"pickupWaitMinutes":{"type":["integer","null"],"format":"int32"},"stale":{"type":"boolean"},"staleAfter":{"type":"string","format":"date-time"}}},"WaitTimeResponse":{"type":"object","required":["observedAt","stale","staleAfter"],"properties":{"deliveryEstimateMinutes":{"type":["integer","null"],"format":"int32"},"isEstimate":{"type":["boolean","null"]},"makingCups":{"type":["integer","null"],"format":"int32"},"makingOrders":{"type":["integer","null"],"format":"int32"},"observedAt":{"type":"string","format":"date-time"},"pickupWaitMinutes":{"type":["integer","null"],"format":"int32"},"stale":{"type":"boolean"},"staleAfter":{"type":"string","format":"date-time"}}}}}}