Oracle Retail · Schema

OrderLine

RetailMerchandisingOrder ManagementPricingInventoryPoint of SaleOmnichannelOracle

Properties

Name Type Description
lineId string
itemId string
itemDescription string
quantity integer
unitPrice number
lineTotal number
status string
fulfillmentType string
View JSON Schema on GitHub

JSON Schema

oracle-retail-orderline-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/OrderLine",
  "title": "OrderLine",
  "type": "object",
  "properties": {
    "lineId": {
      "type": "string"
    },
    "itemId": {
      "type": "string"
    },
    "itemDescription": {
      "type": "string"
    },
    "quantity": {
      "type": "integer"
    },
    "unitPrice": {
      "type": "number",
      "format": "double"
    },
    "lineTotal": {
      "type": "number",
      "format": "double"
    },
    "status": {
      "type": "string"
    },
    "fulfillmentType": {
      "type": "string",
      "enum": [
        "SHIP_TO_HOME",
        "SHIP_TO_STORE",
        "PICKUP_IN_STORE",
        "DELIVERY"
      ]
    }
  }
}