{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/CashflowResponse", "title": "CashflowResponse", "type": "object", "properties": { "startDate": { "type": "string", "description": "Start date of the report", "format": "date" }, "endDate": { "type": "string", "description": "End date of the report", "format": "date" }, "cashBalance": { "$ref": "#/components/schemas/CashBalance" }, "cashflowActivities": { "type": "array", "items": { "$ref": "#/components/schemas/CashflowActivity" }, "description": "Break down of cash and cash equivalents for the period" } }, "additionalProperties": false }