{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/DerivedCategorySummary", "title": "DerivedCategorySummary", "type": "object", "properties": { "creditTotal": { "$ref": "#/components/schemas/Money" }, "details": { "type": "array", "description": "Credit and debit summary per date.

Applicable containers: creditCard, bank, investment
", "readOnly": true, "items": { "$ref": "#/components/schemas/DerivedCategorySummaryDetails" } }, "links": { "$ref": "#/components/schemas/DerivedTransactionsLinks" }, "categoryName": { "type": "string", "description": "The name of the category.

Applicable containers: creditCard, bank, investment
", "readOnly": true }, "categoryId": { "type": "integer", "description": "Id of the category. This information is provided by transactions/categories service.

Applicable containers: creditCard, bank, investment
", "format": "int64", "readOnly": true }, "debitTotal": { "$ref": "#/components/schemas/Money" } } }