Oracle Retail · Schema

PurchaseOrderCreate

RetailMerchandisingOrder ManagementPricingInventoryPoint-of-SaleOmnichannelOracle

Properties

Name Type Description
supplier integer
orderDate string
notBeforeDate string
notAfterDate string
currencyCode string
freightTerms string
paymentTerms string
View JSON Schema on GitHub

JSON Schema

oracle-retail-purchaseordercreate-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/PurchaseOrderCreate",
  "title": "PurchaseOrderCreate",
  "type": "object",
  "required": [
    "supplier",
    "orderDate",
    "currencyCode"
  ],
  "properties": {
    "supplier": {
      "type": "integer"
    },
    "orderDate": {
      "type": "string",
      "format": "date"
    },
    "notBeforeDate": {
      "type": "string",
      "format": "date"
    },
    "notAfterDate": {
      "type": "string",
      "format": "date"
    },
    "currencyCode": {
      "type": "string",
      "maxLength": 3
    },
    "freightTerms": {
      "type": "string"
    },
    "paymentTerms": {
      "type": "string"
    }
  }
}