{"openapi":"3.0.3","info":{"title":"life-events API","version":"1.0.0"},"components":{"schemas":{}},"paths":{"/api/life-events/livez":{"get":{"responses":{"200":{"description":"Default Response"}}}},"/api/life-events/readyz":{"get":{"responses":{"200":{"description":"Default Response"}}}},"/api/life-events/health":{"get":{"responses":{"200":{"description":"Default Response"}}}},"/api/life-events/":{"get":{"summary":"List life events","tags":["Life Events"],"parameters":[{"schema":{"type":"integer","exclusiveMinimum":true,"minimum":0,"default":1},"in":"query","name":"page","required":false},{"schema":{"type":"integer","exclusiveMinimum":true,"minimum":0,"maximum":100,"default":20},"in":"query","name":"limit","required":false},{"schema":{"type":"string","enum":["date","createdAt"],"default":"createdAt"},"in":"query","name":"sort","required":false},{"schema":{"type":"string","enum":["asc","desc"],"default":"desc"},"in":"query","name":"order","required":false},{"schema":{"type":"string"},"in":"query","name":"category","required":false},{"schema":{"type":"string"},"in":"query","name":"mood","required":false}],"responses":{"200":{"description":"Default Response"}}},"post":{"summary":"Create a new life event","tags":["Life Events"],"requestBody":{"required":true,"content":{"application/json":{"schema":{"type":"object","properties":{"title":{"type":"string","minLength":1,"maxLength":500},"date":{"type":"string","format":"date"},"category":{"type":"string","maxLength":20},"transcript":{"type":"string"},"rawAudioUploadId":{"type":"string","format":"uuid"}},"required":["title"],"additionalProperties":false}}}},"responses":{"201":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"data":{"type":"object","properties":{"id":{"type":"string","format":"uuid"},"userId":{"type":"string","format":"uuid"},"date":{"type":"string"},"title":{"type":"string"},"category":{"type":"string"},"mood":{"type":"string"},"rawAudioUploadId":{"type":"string","format":"uuid","nullable":true},"transcript":{"type":"string","nullable":true},"summary":{"type":"string","nullable":true},"createdAt":{"type":"string"},"updatedAt":{"type":"string"}},"required":["id","userId","date","title","category","mood","rawAudioUploadId","transcript","summary","createdAt","updatedAt"],"additionalProperties":false}},"required":["data"],"additionalProperties":false}}}}}}},"/api/life-events/insights":{"get":{"summary":"Get life insights","tags":["Life Events"],"responses":{"200":{"description":"Default Response"}}}},"/api/life-events/{lifeEventId}":{"get":{"summary":"Get life event by ID","tags":["Life Events"],"parameters":[{"schema":{"type":"string","format":"uuid"},"in":"path","name":"lifeEventId","required":true}],"responses":{"200":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"data":{"type":"object","properties":{"id":{"type":"string","format":"uuid"},"userId":{"type":"string","format":"uuid"},"date":{"type":"string"},"title":{"type":"string"},"category":{"type":"string"},"mood":{"type":"string"},"rawAudioUploadId":{"type":"string","format":"uuid","nullable":true},"transcript":{"type":"string","nullable":true},"summary":{"type":"string","nullable":true},"createdAt":{"type":"string"},"updatedAt":{"type":"string"}},"required":["id","userId","date","title","category","mood","rawAudioUploadId","transcript","summary","createdAt","updatedAt"],"additionalProperties":false}},"required":["data"],"additionalProperties":false}}}}}},"patch":{"summary":"Update a life event","tags":["Life Events"],"requestBody":{"required":true,"content":{"application/json":{"schema":{"type":"object","properties":{"title":{"type":"string","minLength":1,"maxLength":500},"date":{"type":"string","format":"date"},"category":{"type":"string","maxLength":20},"mood":{"type":"string","maxLength":20}},"additionalProperties":false}}}},"parameters":[{"schema":{"type":"string","format":"uuid"},"in":"path","name":"lifeEventId","required":true}],"responses":{"200":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"data":{"type":"object","properties":{"id":{"type":"string","format":"uuid"},"userId":{"type":"string","format":"uuid"},"date":{"type":"string"},"title":{"type":"string"},"category":{"type":"string"},"mood":{"type":"string"},"rawAudioUploadId":{"type":"string","format":"uuid","nullable":true},"transcript":{"type":"string","nullable":true},"summary":{"type":"string","nullable":true},"createdAt":{"type":"string"},"updatedAt":{"type":"string"}},"required":["id","userId","date","title","category","mood","rawAudioUploadId","transcript","summary","createdAt","updatedAt"],"additionalProperties":false}},"required":["data"],"additionalProperties":false}}}}}},"delete":{"summary":"Delete a life event","tags":["Life Events"],"parameters":[{"schema":{"type":"string","format":"uuid"},"in":"path","name":"lifeEventId","required":true}],"responses":{"204":{"description":"Default Response","content":{"application/json":{"schema":{"enum":["null"],"nullable":true}}}}}}},"/api/life-events/{lifeEventId}/messages/":{"get":{"summary":"List messages for a life event","tags":["Messages"],"parameters":[{"schema":{"type":"integer","exclusiveMinimum":true,"minimum":0,"default":1},"in":"query","name":"page","required":false},{"schema":{"type":"integer","exclusiveMinimum":true,"minimum":0,"maximum":100,"default":20},"in":"query","name":"limit","required":false},{"schema":{"type":"string","format":"uuid"},"in":"path","name":"lifeEventId","required":true}],"responses":{"200":{"description":"Default Response"}}},"post":{"summary":"Send a user message","tags":["Messages"],"requestBody":{"required":true,"content":{"application/json":{"schema":{"type":"object","properties":{"content":{"type":"string","minLength":1},"audioUploadId":{"type":"string","format":"uuid"}},"required":["content"],"additionalProperties":false}}}},"parameters":[{"schema":{"type":"string","format":"uuid"},"in":"path","name":"lifeEventId","required":true}],"responses":{"201":{"description":"Default Response","content":{"application/json":{"schema":{"type":"object","properties":{"data":{"type":"object","properties":{"id":{"type":"string","format":"uuid"},"lifeEventId":{"type":"string","format":"uuid"},"role":{"type":"string"},"content":{"type":"string"},"audioUploadId":{"type":"string","format":"uuid","nullable":true},"createdAt":{"type":"string"}},"required":["id","lifeEventId","role","content","audioUploadId","createdAt"],"additionalProperties":false}},"required":["data"],"additionalProperties":false}}}}}}},"/api/life-events/{lifeEventId}/messages/stream":{"get":{"summary":"Stream AI response via SSE","tags":["Messages"],"parameters":[{"schema":{"type":"string","format":"uuid"},"in":"path","name":"lifeEventId","required":true}],"responses":{"200":{"description":"Default Response"}}}}}}