Microsoft Dynamics NAV · Schema
SalesOrderCreate
Business ManagementDynamics NAVERPFinanceInventoryMicrosoftNavision
Properties
| Name | Type | Description |
|---|---|---|
| externalDocumentNumber | string | |
| orderDate | string | |
| customerId | string | |
| customerNumber | string | |
| currencyCode | string | |
| pricesIncludeTax | boolean | |
| requestedDeliveryDate | string |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/SalesOrderCreate",
"title": "SalesOrderCreate",
"type": "object",
"properties": {
"externalDocumentNumber": {
"type": "string",
"maxLength": 35,
"example": "example_value"
},
"orderDate": {
"type": "string",
"format": "date",
"example": "2026-01-15"
},
"customerId": {
"type": "string",
"format": "uuid",
"example": "500123"
},
"customerNumber": {
"type": "string",
"maxLength": 20,
"example": "example_value"
},
"currencyCode": {
"type": "string",
"maxLength": 10,
"example": "example_value"
},
"pricesIncludeTax": {
"type": "boolean",
"example": true
},
"requestedDeliveryDate": {
"type": "string",
"format": "date",
"example": "2026-01-15"
}
}
}