{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/DerivedNetworth", "title": "DerivedNetworth", "type": "object", "properties": { "date": { "type": "string", "description": "The date as of when the networth information is provided.

Applicable containers: bank, creditcard, investment, insurance, realEstate, loan
", "readOnly": true }, "liability": { "$ref": "#/components/schemas/Money" }, "historicalBalances": { "type": "array", "description": "Balances of the accounts over the period of time.

Applicable containers: bank, creditcard, investment, insurance, realEstate, loan
", "readOnly": true, "items": { "$ref": "#/components/schemas/DerivedNetworthHistoricalBalance" } }, "networth": { "$ref": "#/components/schemas/Money" }, "asset": { "$ref": "#/components/schemas/Money" } } }