{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/AccountHistory", "title": "AccountHistory", "type": "object", "properties": { "historicalBalances": { "type": "array", "readOnly": true, "items": { "$ref": "#/components/schemas/HistoricalBalance" } }, "id": { "type": "integer", "format": "int64", "readOnly": true } } }