Properties
| Name | Type | Description |
|---|---|---|
| ItemCode | string | Item code |
| Quantity | number | Ordered quantity |
| UnitPrice | number | Price per unit |
| Currency | string | Line currency |
| WarehouseCode | string | Warehouse code for the line item |
| TaxCode | string | Tax code applied to the line |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"title": "DocumentLine",
"type": "object",
"properties": {
"ItemCode": {
"type": "string",
"description": "Item code"
},
"Quantity": {
"type": "number",
"description": "Ordered quantity"
},
"UnitPrice": {
"type": "number",
"description": "Price per unit"
},
"Currency": {
"type": "string",
"description": "Line currency"
},
"WarehouseCode": {
"type": "string",
"description": "Warehouse code for the line item"
},
"TaxCode": {
"type": "string",
"description": "Tax code applied to the line"
}
}
}