{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/MonetaryAccountProfileFill", "title": "MonetaryAccountProfileFill", "type": "object", "properties": { "status": { "type": "string", "description": "The status of the profile.", "readOnly": false, "writeOnly": false }, "balance_preferred": { "type": "object", "description": "The goal balance.", "readOnly": false, "writeOnly": false, "$ref": "#/components/schemas/Amount" }, "balance_threshold_low": { "type": "object", "description": "The low threshold balance.", "readOnly": false, "writeOnly": false, "$ref": "#/components/schemas/Amount" }, "issuer": { "type": "object", "description": "The bank the fill is supposed to happen from, with BIC and bank name.", "readOnly": false, "writeOnly": false, "$ref": "#/components/schemas/Issuer" } } }