Ordoro · Schema

Supplier List Schema

Order ManagementInventory ManagementShippingDropshippingEcommerceMulti-ChannelFulfillmentLogistics

Properties

Name Type Description
count integer
supplier array
limit integer
offset integer
View JSON Schema on GitHub

JSON Schema

ordoro-supplier_list-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-supplier_list-schema.json",
  "title": "Supplier List Schema",
  "type": "object",
  "properties": {
    "count": {
      "type": "integer"
    },
    "supplier": {
      "type": "array",
      "items": {
        "$ref": "#/components/schemas/supplier"
      }
    },
    "limit": {
      "type": "integer",
      "default": 10
    },
    "offset": {
      "type": "integer",
      "default": 0
    }
  },
  "required": [
    "count",
    "supplier",
    "limit",
    "offset"
  ]
}