Oracle Retail · Schema

ShipmentRequest

RetailMerchandisingOrder ManagementPricingInventoryPoint of SaleOmnichannelOracle

Properties

Name Type Description
orderId string
lineIds array
trackingNumber string
carrier string
shipDate string
estimatedDeliveryDate string
View JSON Schema on GitHub

JSON Schema

oracle-retail-shipmentrequest-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/ShipmentRequest",
  "title": "ShipmentRequest",
  "type": "object",
  "required": [
    "orderId",
    "trackingNumber",
    "carrier"
  ],
  "properties": {
    "orderId": {
      "type": "string"
    },
    "lineIds": {
      "type": "array",
      "items": {
        "type": "string"
      }
    },
    "trackingNumber": {
      "type": "string"
    },
    "carrier": {
      "type": "string"
    },
    "shipDate": {
      "type": "string",
      "format": "date-time"
    },
    "estimatedDeliveryDate": {
      "type": "string",
      "format": "date-time"
    }
  }
}