{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/TransactionLineModel", "title": "TransactionLineModel", "type": "object", "properties": { "id": { "type": "integer", "format": "int64" }, "lineNumber": { "type": "string" }, "lineAmount": { "type": "number", "format": "double" }, "tax": { "type": "number", "format": "double" }, "taxableAmount": { "type": "number", "format": "double" }, "exemptAmount": { "type": "number", "format": "double" }, "taxCode": { "type": "string" }, "itemCode": { "type": "string" } } }