contentstack · Schema

BrandKitList

A paginated list of Brand Kits.

Properties

Name Type Description
data array Array of Brand Kit objects.
total integer Total count of Brand Kits in the organization.
View JSON Schema on GitHub

JSON Schema

contentstack-brandkitlist-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/BrandKitList",
  "title": "BrandKitList",
  "type": "object",
  "description": "A paginated list of Brand Kits.",
  "properties": {
    "data": {
      "type": "array",
      "description": "Array of Brand Kit objects.",
      "items": {
        "$ref": "#/components/schemas/BrandKit"
      }
    },
    "total": {
      "type": "integer",
      "description": "Total count of Brand Kits in the organization."
    }
  }
}