Ordoro · Schema

Integration list schema

Order ManagementInventory ManagementShippingDropshippingEcommerceMulti-ChannelFulfillmentLogistics

Properties

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

JSON Schema

ordoro-integration_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-integration_list-schema.json",
  "title": "Integration list schema",
  "type": "object",
  "properties": {
    "limit": {
      "type": "integer"
    },
    "offset": {
      "type": "integer"
    },
    "count": {
      "type": "integer"
    },
    "integration": {
      "type": "array",
      "items": {
        "$ref": "#/components/schemas/any_of_integration_type"
      }
    }
  },
  "required": [
    "limit",
    "offset",
    "count",
    "order"
  ]
}