Ordoro · Schema

shipper_list

Order ManagementInventory ManagementShippingDropshippingEcommerceMulti-ChannelFulfillmentLogistics

Properties

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

JSON Schema

ordoro-shipper_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-shipper_list-schema.json",
  "title": "shipper_list",
  "type": "object",
  "properties": {
    "limit": {
      "type": "integer"
    },
    "offset": {
      "type": "integer"
    },
    "count": {
      "type": "integer"
    },
    "shipper": {
      "type": "array",
      "items": {
        "$ref": "#/components/schemas/any_of_shipper_type"
      }
    }
  },
  "required": [
    "limit",
    "offset",
    "count",
    "shipper"
  ]
}