Properties
| Name | Type | Description |
|---|---|---|
| DocEntry | integer | Unique document entry number |
| DocNum | integer | Document number |
| CardCode | string | Business partner code |
| DocDate | string | Document date |
| DocDueDate | string | Document due date |
| DocTotal | number | Total document amount |
| DocCurrency | string | Document currency |
| DocumentLines | array | Order line items |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"title": "Order",
"type": "object",
"properties": {
"DocEntry": {
"type": "integer",
"description": "Unique document entry number"
},
"DocNum": {
"type": "integer",
"description": "Document number"
},
"CardCode": {
"type": "string",
"description": "Business partner code"
},
"DocDate": {
"type": "string",
"description": "Document date"
},
"DocDueDate": {
"type": "string",
"description": "Document due date"
},
"DocTotal": {
"type": "number",
"description": "Total document amount"
},
"DocCurrency": {
"type": "string",
"description": "Document currency"
},
"DocumentLines": {
"type": "array",
"description": "Order line items"
}
}
}