Oracle Retail · Schema

ReturnCreate

RetailMerchandisingOrder ManagementPricingInventoryPoint of SaleOmnichannelOracle

Properties

Name Type Description
orderId string
lines array
View JSON Schema on GitHub

JSON Schema

oracle-retail-returncreate-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/ReturnCreate",
  "title": "ReturnCreate",
  "type": "object",
  "required": [
    "orderId",
    "lines"
  ],
  "properties": {
    "orderId": {
      "type": "string"
    },
    "lines": {
      "type": "array",
      "items": {
        "type": "object",
        "required": [
          "lineId",
          "quantity",
          "reason"
        ],
        "properties": {
          "lineId": {
            "type": "string"
          },
          "quantity": {
            "type": "integer"
          },
          "reason": {
            "type": "string"
          }
        }
      }
    }
  }
}