Oracle Retail · Schema

ItemUpdate

RetailMerchandisingOrder ManagementPricingInventoryPoint of SaleOmnichannelOracle

Properties

Name Type Description
itemDesc string
status string
unitRetail number
View JSON Schema on GitHub

JSON Schema

oracle-retail-itemupdate-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/ItemUpdate",
  "title": "ItemUpdate",
  "type": "object",
  "properties": {
    "itemDesc": {
      "type": "string",
      "maxLength": 250
    },
    "status": {
      "type": "string",
      "enum": [
        "A",
        "C",
        "D"
      ]
    },
    "unitRetail": {
      "type": "number",
      "format": "double"
    }
  }
}