PurchaseOrderCreate

Business ManagementDynamics NAVERPFinanceInventoryMicrosoftNavision

Properties

Name Type Description
orderDate string
vendorId string
vendorNumber string
currencyCode string
pricesIncludeTax boolean
requestedReceiptDate string
View JSON Schema on GitHub

JSON Schema

navision-purchaseordercreate-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/PurchaseOrderCreate",
  "title": "PurchaseOrderCreate",
  "type": "object",
  "properties": {
    "orderDate": {
      "type": "string",
      "format": "date",
      "example": "2026-01-15"
    },
    "vendorId": {
      "type": "string",
      "format": "uuid",
      "example": "500123"
    },
    "vendorNumber": {
      "type": "string",
      "maxLength": 20,
      "example": "example_value"
    },
    "currencyCode": {
      "type": "string",
      "maxLength": 10,
      "example": "example_value"
    },
    "pricesIncludeTax": {
      "type": "boolean",
      "example": true
    },
    "requestedReceiptDate": {
      "type": "string",
      "format": "date",
      "example": "2026-01-15"
    }
  }
}