Ordoro · Schema

API Key List Schema

Order ManagementInventory ManagementShippingDropshippingEcommerceMulti-ChannelFulfillmentLogistics

Properties

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

JSON Schema

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