Ordoro · Schema

Purchase Order Counts Response Schema

Order ManagementInventory ManagementShippingDropshippingEcommerceMulti-ChannelFulfillmentLogistics

Properties

Name Type Description
all integer
unsent integer
sent integer
partial integer
received integer
cancelled integer
View JSON Schema on GitHub

JSON Schema

ordoro-purchase_order_counts-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_counts-schema.json",
  "title": "Purchase Order Counts Response Schema",
  "additionalProperties": false,
  "type": "object",
  "properties": {
    "all": {
      "type": "integer"
    },
    "unsent": {
      "type": "integer"
    },
    "sent": {
      "type": "integer"
    },
    "partial": {
      "type": "integer"
    },
    "received": {
      "type": "integer"
    },
    "cancelled": {
      "type": "integer"
    }
  },
  "required": [
    "all",
    "unsent",
    "sent",
    "partial",
    "received",
    "cancelled"
  ]
}