Microsoft Dynamics NAV · Schema
ConfigurationPackage
Business ManagementDynamics NAVERPFinanceInventoryMicrosoftNavision
Properties
| Name | Type | Description |
|---|---|---|
| id | string | |
| code | string | The package code |
| packageName | string | The package name |
| languageId | integer | |
| productVersion | string | |
| processingOrder | integer | |
| excludeConfigurationTables | boolean | |
| numberOfTables | integer | |
| numberOfRecords | integer | |
| numberOfErrors | integer | |
| importStatus | string | |
| applyStatus | string |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"title": "ConfigurationPackage",
"type": "object",
"properties": {
"id": {
"type": "string"
},
"code": {
"type": "string",
"description": "The package code"
},
"packageName": {
"type": "string",
"description": "The package name"
},
"languageId": {
"type": "integer"
},
"productVersion": {
"type": "string"
},
"processingOrder": {
"type": "integer"
},
"excludeConfigurationTables": {
"type": "boolean"
},
"numberOfTables": {
"type": "integer"
},
"numberOfRecords": {
"type": "integer"
},
"numberOfErrors": {
"type": "integer"
},
"importStatus": {
"type": "string"
},
"applyStatus": {
"type": "string"
}
}
}