Oracle Retail · Schema

ItemCreate

RetailMerchandisingOrder ManagementPricingInventoryPoint of SaleOmnichannelOracle

Properties

Name Type Description
item string
itemDesc string
dept integer
class integer
subclass integer
itemType string
unitRetail number
currencyCode string
View JSON Schema on GitHub

JSON Schema

oracle-retail-itemcreate-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/ItemCreate",
  "title": "ItemCreate",
  "type": "object",
  "required": [
    "item",
    "itemDesc",
    "dept",
    "class",
    "subclass"
  ],
  "properties": {
    "item": {
      "type": "string",
      "maxLength": 25
    },
    "itemDesc": {
      "type": "string",
      "maxLength": 250
    },
    "dept": {
      "type": "integer"
    },
    "class": {
      "type": "integer"
    },
    "subclass": {
      "type": "integer"
    },
    "itemType": {
      "type": "string",
      "enum": [
        "REG",
        "CON",
        "TFM",
        "RB",
        "SB",
        "T"
      ],
      "default": "REG"
    },
    "unitRetail": {
      "type": "number",
      "format": "double"
    },
    "currencyCode": {
      "type": "string",
      "maxLength": 3
    }
  }
}