
| Property Name | Type | Description |
|---|---|---|
| TotalItemLines | integer |
A Integer
value
Description : Invoice number of item lines
|
| TotalItemQty | integer |
A Integer
value
Description : Invoice item quantity
|
| LineTotal | number |
A Number
value
Description : Value of all item lines
|
| FreightTotal | number |
A Number
value
Description : Freight total amount
|
| SalesTax | number |
A Number
value
Description : Sales tax amount
|
| MiscCharge | number |
A Number
value
Description : Miscellaneous charges
|
| InvoiceTotal | number |
A Number
value
Description : Total invoice amount
|
"InvoiceSummary": {
"type": "object",
"additionalProperties": false,
"properties": {
"TotalItemLines": {
"type": "integer",
"description": "Invoice number of item lines"
},
"TotalItemQty": {
"type": "integer",
"description": "Invoice item quantity"
},
"LineTotal": {
"type": "number",
"description": "Value of all item lines"
},
"FreightTotal": {
"type": "number",
"description": "Freight total amount"
},
"SalesTax": {
"type": "number",
"description": "Sales tax amount"
},
"MiscCharge": {
"type": "number",
"description": "Miscellaneous charges"
},
"InvoiceTotal": {
"type": "number",
"description": "Total invoice amount"
}
},
"required": [
"TotalItemLines",
"TotalItemQty",
"LineTotal",
"FreightTotal",
"SalesTax",
"MiscCharge",
"InvoiceTotal"
]
}