{ "$schema": "http://json-schema.org/draft-07/schema#", "title": "SaveJournalEntrySplit", "description": "Journal Entry Split for Request", "type": "object", "required": [ "creditAmount", "debitAmount", "glAccountID" ], "properties": { "creditAmount": { "type": "number", "format": "double", "description": "Credit Amount." }, "debitAmount": { "type": "number", "format": "double", "description": "Debit Amount." }, "glAccountID": { "type": "integer", "format": "int64", "description": "GL Account ID." } } }