Zendit · Schema

BrandList

Paginated brand list.

eSIMGift CardsMobile Top-UpPaymentsPrepaid

Properties

Name Type Description
list array
offset integer
limit integer
total integer
View JSON Schema on GitHub

JSON Schema

zendit-api-brand-list-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "title": "BrandList",
  "description": "Paginated brand list.",
  "$id": "https://raw.githubusercontent.com/api-evangelist/zendit/refs/heads/main/json-schema/zendit-api-brand-list-schema.json",
  "type": "object",
  "properties": {
    "list": {
      "type": "array",
      "items": {
        "$ref": "#/components/schemas/Brand"
      },
      "example": [
        {}
      ]
    },
    "offset": {
      "type": "integer",
      "example": 0
    },
    "limit": {
      "type": "integer",
      "example": 100
    },
    "total": {
      "type": "integer",
      "example": 250
    }
  }
}