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