Microsoft Dynamics NAV · Schema
SalesInvoice
Business ManagementDynamics NAVERPFinanceInventoryMicrosoftNavision
Properties
| Name | Type | Description |
|---|---|---|
| id | string | |
| number | string | |
| externalDocumentNumber | string | |
| invoiceDate | string | |
| postingDate | string | |
| dueDate | string | |
| customerId | string | |
| customerNumber | string | |
| customerName | string | |
| currencyCode | string | |
| pricesIncludeTax | boolean | |
| totalAmountExcludingTax | number | |
| totalTaxAmount | number | |
| totalAmountIncludingTax | number | |
| status | string | |
| lastModifiedDateTime | string |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"title": "SalesInvoice",
"type": "object",
"properties": {
"id": {
"type": "string"
},
"number": {
"type": "string"
},
"externalDocumentNumber": {
"type": "string"
},
"invoiceDate": {
"type": "string"
},
"postingDate": {
"type": "string"
},
"dueDate": {
"type": "string"
},
"customerId": {
"type": "string"
},
"customerNumber": {
"type": "string"
},
"customerName": {
"type": "string"
},
"currencyCode": {
"type": "string"
},
"pricesIncludeTax": {
"type": "boolean"
},
"totalAmountExcludingTax": {
"type": "number"
},
"totalTaxAmount": {
"type": "number"
},
"totalAmountIncludingTax": {
"type": "number"
},
"status": {
"type": "string"
},
"lastModifiedDateTime": {
"type": "string"
}
}
}