{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/DerivedTransactionsSummary", "title": "DerivedTransactionsSummary", "type": "object", "properties": { "categoryType": { "type": "string", "description": "Type of categories provided by transactions/categories service.

Applicable containers: creditCard, bank, investment
Applicable Values
", "readOnly": true, "enum": [ "TRANSFER", "DEFERRED_COMPENSATION", "UNCATEGORIZE", "INCOME", "EXPENSE", "LOAN", "DUMMY" ] }, "categorySummary": { "type": "array", "description": "Summary of transaction amouts at category level.

Applicable containers: creditCard, bank, investment
", "readOnly": true, "items": { "$ref": "#/components/schemas/DerivedCategorySummary" } }, "creditTotal": { "$ref": "#/components/schemas/Money" }, "links": { "$ref": "#/components/schemas/DerivedTransactionsLinks" }, "debitTotal": { "$ref": "#/components/schemas/Money" } } }