{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/CashAccountResponse", "title": "CashAccountResponse", "type": "object", "properties": { "unreconciledAmountPos": { "type": "number", "description": "Total value of transactions in the journals which are not reconciled to bank statement lines, and have a positive (debit) value.", "format": "double", "x-is-money": true }, "unreconciledAmountNeg": { "type": "number", "description": "Total value of transactions in the journals which are not reconciled to bank statement lines, and have a negative (credit) value.", "format": "double", "x-is-money": true }, "startingBalance": { "type": "number", "description": "Starting (or historic) balance from the journals (manually keyed in by users on account creation - unverified).", "format": "double", "x-is-money": true }, "accountBalance": { "type": "number", "description": "Current cash at bank accounting value from the journals.", "format": "double", "x-is-money": true }, "balanceCurrency": { "type": "string", "description": "Currency which the cashAccount transactions relate to." } }, "additionalProperties": false }