brevo · Schema

CategoryList

Properties

Name Type Description
count integer Total number of categories.
categories array List of category records.
View JSON Schema on GitHub

JSON Schema

brevo-categorylist-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/CategoryList",
  "title": "CategoryList",
  "type": "object",
  "properties": {
    "count": {
      "type": "integer",
      "format": "int64",
      "description": "Total number of categories."
    },
    "categories": {
      "type": "array",
      "description": "List of category records.",
      "items": {
        "$ref": "#/components/schemas/Category"
      }
    }
  }
}