{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/ContactTotalDetail", "title": "ContactTotalDetail", "type": "object", "properties": { "totalPaid": { "type": "number", "description": "Total paid invoice and cash value for the contact within the period.", "format": "double", "x-is-money": true }, "totalOutstanding": { "type": "number", "description": "Total outstanding invoice value for the contact within the period.", "format": "double", "x-is-money": true }, "totalCreditedUnApplied": { "type": "number", "description": "Total unapplied credited value for the contact within the period.", "format": "double", "x-is-money": true } }, "additionalProperties": false }