Microsoft Dynamics NAV · Schema
ItemCreate
Business ManagementDynamics NAVERPFinanceInventoryMicrosoftNavision
Properties
| Name | Type | Description |
|---|---|---|
| number | string | |
| displayName | string | |
| type | string | |
| itemCategoryCode | string | |
| blocked | boolean | |
| gtin | string | |
| unitPrice | number | |
| unitCost | number | |
| taxGroupCode | string | |
| baseUnitOfMeasureCode | string |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"title": "ItemCreate",
"type": "object",
"properties": {
"number": {
"type": "string"
},
"displayName": {
"type": "string"
},
"type": {
"type": "string"
},
"itemCategoryCode": {
"type": "string"
},
"blocked": {
"type": "boolean"
},
"gtin": {
"type": "string"
},
"unitPrice": {
"type": "number"
},
"unitCost": {
"type": "number"
},
"taxGroupCode": {
"type": "string"
},
"baseUnitOfMeasureCode": {
"type": "string"
}
}
}