{"openapi":"3.1.0","info":{"title":"Customer Churn Prediction API","version":"0.1.0"},"paths":{"/meta":{"get":{"summary":"Api Meta","description":"JSON metadata + optional hold-out metrics for the demo UI.","operationId":"api_meta_meta_get","responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{}}}}}}},"/":{"get":{"summary":"Root","description":"Demo UI — sidebar matches framing shell for Host (labs vs recruiter API hostname).","operationId":"root__get","responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{}}}}}}},"/health":{"get":{"summary":"Health","operationId":"health_health_get","responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{}}}}}}},"/predict":{"post":{"summary":"Predict","description":"Predict churn probability and risk band. Applies build_features then pipeline.","operationId":"predict_predict_post","requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/ChurnRequest"}}},"required":true},"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ChurnResponse"}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}}}},"components":{"schemas":{"ChurnRequest":{"properties":{"gender":{"type":"string","title":"Gender","default":"Female"},"SeniorCitizen":{"type":"integer","title":"Seniorcitizen","default":0},"Partner":{"type":"string","title":"Partner","default":"Yes"},"Dependents":{"type":"string","title":"Dependents","default":"No"},"tenure":{"type":"integer","title":"Tenure","default":12},"PhoneService":{"type":"string","title":"Phoneservice","default":"Yes"},"MultipleLines":{"type":"string","title":"Multiplelines","default":"No"},"InternetService":{"type":"string","title":"Internetservice","default":"Fiber optic"},"OnlineSecurity":{"type":"string","title":"Onlinesecurity","default":"No"},"OnlineBackup":{"type":"string","title":"Onlinebackup","default":"Yes"},"DeviceProtection":{"type":"string","title":"Deviceprotection","default":"No"},"TechSupport":{"type":"string","title":"Techsupport","default":"No"},"StreamingTV":{"type":"string","title":"Streamingtv","default":"Yes"},"StreamingMovies":{"type":"string","title":"Streamingmovies","default":"No"},"Contract":{"type":"string","title":"Contract","default":"Month-to-month"},"PaperlessBilling":{"type":"string","title":"Paperlessbilling","default":"Yes"},"PaymentMethod":{"type":"string","title":"Paymentmethod","default":"Electronic check"},"MonthlyCharges":{"type":"number","title":"Monthlycharges","default":79.85},"TotalCharges":{"type":"number","title":"Totalcharges","default":965.4}},"type":"object","title":"ChurnRequest","description":"POST /predict body — one customer."},"ChurnResponse":{"properties":{"churn_probability":{"type":"number","title":"Churn Probability"},"prediction":{"type":"string","title":"Prediction"},"risk_band":{"type":"string","title":"Risk Band"},"threshold_used":{"type":"number","title":"Threshold Used"}},"type":"object","required":["churn_probability","prediction","risk_band","threshold_used"],"title":"ChurnResponse","description":"Response: churn_probability, prediction, risk_band, threshold_used."},"HTTPValidationError":{"properties":{"detail":{"items":{"$ref":"#/components/schemas/ValidationError"},"type":"array","title":"Detail"}},"type":"object","title":"HTTPValidationError"},"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"}}}}