{"openapi":"3.1.0","info":{"title":"GET /api/v1/cfo-projection/actuals","version":"1.0.0","description":"Get trailing actuals"},"servers":[{"url":"https://api.ondayzero.com","description":"Production"}],"paths":{"/api/v1/cfo-projection/actuals":{"get":{"tags":["cfo-projection"],"summary":"Get trailing actuals","description":"Trailing income statement actuals shaped for the projection page. Pass `start_month`/`end_month` (YYYY-MM) to pin an explicit window; otherwise the last `trailing_months` closed months are returned.","operationId":"get_actuals_api_v1_cfo_projection_actuals_get","parameters":[{"name":"trailing_months","in":"query","required":false,"schema":{"type":"integer","maximum":24,"minimum":1,"description":"Number of trailing months (used when start/end unset)","default":6,"title":"Trailing Months"},"description":"Number of trailing months (used when start/end unset)"},{"name":"start_month","in":"query","required":false,"schema":{"anyOf":[{"type":"string","pattern":"^\\d{4}-(0[1-9]|1[0-2])$"},{"type":"null"}],"description":"Inclusive window start in YYYY-MM. Required together with end_month.","title":"Start Month"},"description":"Inclusive window start in YYYY-MM. Required together with end_month."},{"name":"end_month","in":"query","required":false,"schema":{"anyOf":[{"type":"string","pattern":"^\\d{4}-(0[1-9]|1[0-2])$"},{"type":"null"}],"description":"Inclusive window end in YYYY-MM. Required together with start_month.","title":"End Month"},"description":"Inclusive window end in YYYY-MM. Required together with start_month."},{"name":"hide_zero_rows","in":"query","required":false,"schema":{"type":"boolean","description":"Exclude line items with all-zero values","default":false,"title":"Hide Zero Rows"},"description":"Exclude line items with all-zero values"},{"name":"authorization","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Authorization"}},{"name":"x-business-id","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Business-Id"}}],"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ProjectionActualsResponse"}}}},"400":{"description":"Bad Request - Invalid input","content":{"application/json":{"example":{"detail":"Invalid request parameters"}}}},"401":{"description":"Unauthorized - Authentication required","content":{"application/json":{"example":{"detail":"Not authenticated"}}}},"403":{"description":"Forbidden - Insufficient permissions","content":{"application/json":{"example":{"detail":"Not enough permissions"}}}},"404":{"description":"Not Found - Resource does not exist","content":{"application/json":{"example":{"detail":"Resource not found"}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}}}},"components":{"schemas":{"ActualsCostLineItem":{"properties":{"ledger_id":{"type":"string","title":"Ledger Id"},"name":{"type":"string","title":"Name"},"data":{"items":{"type":"integer"},"type":"array","title":"Data","description":"Per-month amounts in cents, oldest first"},"type":{"$ref":"#/components/schemas/CostClassification","default":"fix"},"esc":{"anyOf":[{"type":"number"},{"type":"null"}],"title":"Esc","description":"Estimated annual escalation for fixed costs"},"growth":{"anyOf":[{"type":"number"},{"type":"null"}],"title":"Growth","description":"Estimated MoM growth rate"}},"type":"object","required":["ledger_id","name","data"],"title":"ActualsCostLineItem","description":"Cost line with a classification hint derived from trailing data."},"ActualsLineItem":{"properties":{"ledger_id":{"type":"string","title":"Ledger Id"},"name":{"type":"string","title":"Name"},"data":{"items":{"type":"integer"},"type":"array","title":"Data","description":"Per-month amounts in cents, oldest first"}},"type":"object","required":["ledger_id","name","data"],"title":"ActualsLineItem","description":"A single line (ledger account) with per-month actuals."},"ActualsOtherLineItem":{"properties":{"ledger_id":{"type":"string","title":"Ledger Id"},"name":{"type":"string","title":"Name"},"data":{"items":{"type":"integer"},"type":"array","title":"Data","description":"Per-month amounts in cents, oldest first"},"neg":{"type":"boolean","title":"Neg","description":"True if this is an expense (negative)","default":false}},"type":"object","required":["ledger_id","name","data"],"title":"ActualsOtherLineItem","description":"Other income/expense line."},"CostClassification":{"type":"string","enum":["var","fix"],"title":"CostClassification","description":"Whether a cost line scales with revenue or is a flat run rate."},"HTTPValidationError":{"properties":{"detail":{"items":{"$ref":"#/components/schemas/ValidationError"},"type":"array","title":"Detail"}},"type":"object","title":"HTTPValidationError"},"ProjectionActualsResponse":{"properties":{"months":{"items":{"type":"string"},"type":"array","title":"Months","description":"Month labels in display order, e.g. ['Oct 2025', ...]"},"revenue":{"items":{"$ref":"#/components/schemas/ActualsLineItem"},"type":"array","title":"Revenue"},"cogs":{"items":{"$ref":"#/components/schemas/ActualsCostLineItem"},"type":"array","title":"Cogs"},"opex":{"items":{"$ref":"#/components/schemas/ActualsCostLineItem"},"type":"array","title":"Opex"},"other":{"items":{"$ref":"#/components/schemas/ActualsOtherLineItem"},"type":"array","title":"Other"}},"type":"object","required":["months","revenue","cogs","opex","other"],"title":"ProjectionActualsResponse","description":"Trailing actuals shaped for the Budget Projection page."},"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"}},"securitySchemes":{"BearerAuth":{"type":"http","scheme":"bearer","bearerFormat":"API Token","description":"API token authentication. Format: `Bearer dz_...`"}}},"security":[{"BearerAuth":[]}]}