Ordoro · Schema

Purchase Order Item Schema

Order ManagementInventory ManagementShippingDropshippingEcommerceMulti-ChannelFulfillmentLogistics

Properties

Name Type Description
sku string
quantity integer
unit_price number
discount_amount number
View JSON Schema on GitHub

JSON Schema

ordoro-purchase_order_item-schema.json Raw ↑
{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "$id": "https://raw.githubusercontent.com/api-evangelist/ordoro/refs/heads/main/json-schema/ordoro-purchase_order_item-schema.json",
  "title": "Purchase Order Item Schema",
  "type": "object",
  "additionalProperties": false,
  "properties": {
    "sku": {
      "type": "string"
    },
    "quantity": {
      "type": "integer"
    },
    "unit_price": {
      "type": "number"
    },
    "discount_amount": {
      "type": "number"
    }
  },
  "required": [
    "sku",
    "quantity"
  ]
}