{"openapi":"3.1.0","info":{"title":"IntakeAI","description":"Turn any document into structured data.","version":"1.0.0"},"paths":{"/health":{"get":{"summary":"Health","operationId":"health_health_get","responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{"additionalProperties":true,"type":"object","title":"Response Health Health Get"}}}}}}},"/":{"get":{"summary":"Index","operationId":"index__get","responses":{"200":{"description":"Successful Response","content":{"text/html":{"schema":{"type":"string"}}}}}}},"/api/extract":{"post":{"summary":"Api Extract","operationId":"api_extract_api_extract_post","requestBody":{"content":{"multipart/form-data":{"schema":{"$ref":"#/components/schemas/Body_api_extract_api_extract_post"}}}},"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ExtractResponse"}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}}},"/api/history":{"get":{"summary":"Api History","operationId":"api_history_api_history_get","parameters":[{"name":"limit","in":"query","required":false,"schema":{"type":"integer","default":20,"title":"Limit"}}],"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HistoryResponse"}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}}},"/api/extractions/{extraction_id}":{"get":{"summary":"Api Get Extraction","operationId":"api_get_extraction_api_extractions__extraction_id__get","parameters":[{"name":"extraction_id","in":"path","required":true,"schema":{"type":"integer","title":"Extraction Id"}}],"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}}}},"components":{"schemas":{"ActionItem":{"properties":{"task":{"type":"string","title":"Task"},"owner":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Owner"},"due":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Due"}},"type":"object","required":["task"],"title":"ActionItem"},"Body_api_extract_api_extract_post":{"properties":{"text":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Text"},"file":{"anyOf":[{"type":"string","contentMediaType":"application/octet-stream"},{"type":"null"}],"title":"File"}},"type":"object","title":"Body_api_extract_api_extract_post"},"Entity":{"properties":{"value":{"type":"string","title":"Value"},"type":{"type":"string","enum":["person","organization","location","money","email","phone","other"],"title":"Type"}},"type":"object","required":["value","type"],"title":"Entity"},"ExtractResponse":{"properties":{"id":{"type":"integer","title":"Id"},"source":{"type":"string","enum":["text","pdf"],"title":"Source"},"filename":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Filename"},"char_count":{"type":"integer","title":"Char Count"},"result":{"$ref":"#/components/schemas/ExtractionResult"},"latency_ms":{"type":"integer","title":"Latency Ms"},"created_at":{"type":"string","format":"date-time","title":"Created At"}},"type":"object","required":["id","source","char_count","result","latency_ms","created_at"],"title":"ExtractResponse"},"ExtractionResult":{"properties":{"summary":{"type":"string","title":"Summary"},"topics":{"items":{"type":"string"},"type":"array","title":"Topics"},"entities":{"items":{"$ref":"#/components/schemas/Entity"},"type":"array","title":"Entities"},"action_items":{"items":{"$ref":"#/components/schemas/ActionItem"},"type":"array","title":"Action Items"},"key_dates":{"items":{"$ref":"#/components/schemas/KeyDate"},"type":"array","title":"Key Dates"},"sentiment":{"type":"string","enum":["positive","neutral","negative","mixed"],"title":"Sentiment"},"confidence":{"type":"number","maximum":1.0,"minimum":0.0,"title":"Confidence"}},"type":"object","required":["summary","topics","entities","action_items","key_dates","sentiment","confidence"],"title":"ExtractionResult"},"HTTPValidationError":{"properties":{"detail":{"items":{"$ref":"#/components/schemas/ValidationError"},"type":"array","title":"Detail"}},"type":"object","title":"HTTPValidationError"},"HistoryItem":{"properties":{"id":{"type":"integer","title":"Id"},"source":{"type":"string","title":"Source"},"filename":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Filename"},"char_count":{"type":"integer","title":"Char Count"},"summary":{"type":"string","title":"Summary"},"created_at":{"type":"string","format":"date-time","title":"Created At"}},"type":"object","required":["id","source","filename","char_count","summary","created_at"],"title":"HistoryItem"},"HistoryResponse":{"properties":{"items":{"items":{"$ref":"#/components/schemas/HistoryItem"},"type":"array","title":"Items"},"total":{"type":"integer","title":"Total"}},"type":"object","required":["items","total"],"title":"HistoryResponse"},"KeyDate":{"properties":{"date":{"type":"string","title":"Date"},"description":{"type":"string","title":"Description"}},"type":"object","required":["date","description"],"title":"KeyDate"},"ValidationError":{"properties":{"loc":{"items":{"anyOf":[{"type":"string"},{"type":"integer"}]},"type":"array","title":"Location"},"msg":{"type":"string","title":"Message"},"type":{"type":"string","title":"Error Type"},"input":{"title":"Input"},"ctx":{"type":"object","title":"Context"}},"type":"object","required":["loc","msg","type"],"title":"ValidationError"}}}}