Ordoro · Schema

Update Order Line Schema

Order ManagementInventory ManagementShippingDropshippingEcommerceMulti-ChannelFulfillmentLogistics

Properties

Name Type Description
quantity integer
item_price number
total_price number
discount_amount number
details object
product_serial_numbers array
View JSON Schema on GitHub

JSON Schema

ordoro-put_order_line-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-put_order_line-schema.json",
  "title": "Update Order Line Schema",
  "type": "object",
  "additionalProperties": false,
  "properties": {
    "quantity": {
      "type": "integer"
    },
    "item_price": {
      "type": "number"
    },
    "total_price": {
      "type": "number"
    },
    "discount_amount": {
      "type": "number"
    },
    "details": {
      "anyOf": [
        {
          "type": "string"
        },
        {
          "type": "null"
        }
      ]
    },
    "product_serial_numbers": {
      "type": "array",
      "items": {
        "type": "string"
      }
    }
  }
}