Microsoft Dynamics NAV · Schema
PurchaseInvoice
Business ManagementDynamics NAVERPFinanceInventoryMicrosoftNavision
Properties
| Name | Type | Description |
|---|---|---|
| id | string | |
| number | string | |
| invoiceDate | string | |
| postingDate | string | |
| dueDate | string | |
| vendorId | string | |
| vendorNumber | string | |
| vendorName | 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": "PurchaseInvoice",
"type": "object",
"properties": {
"id": {
"type": "string"
},
"number": {
"type": "string"
},
"invoiceDate": {
"type": "string"
},
"postingDate": {
"type": "string"
},
"dueDate": {
"type": "string"
},
"vendorId": {
"type": "string"
},
"vendorNumber": {
"type": "string"
},
"vendorName": {
"type": "string"
},
"currencyCode": {
"type": "string"
},
"pricesIncludeTax": {
"type": "boolean"
},
"totalAmountExcludingTax": {
"type": "number"
},
"totalTaxAmount": {
"type": "number"
},
"totalAmountIncludingTax": {
"type": "number"
},
"status": {
"type": "string"
},
"lastModifiedDateTime": {
"type": "string"
}
}
}