brevo · Schema

ContactListCollection

Properties

Name Type Description
count integer Total number of contact lists.
lists array List of contact list summaries.
View JSON Schema on GitHub

JSON Schema

brevo-contactlistcollection-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/ContactListCollection",
  "title": "ContactListCollection",
  "type": "object",
  "properties": {
    "count": {
      "type": "integer",
      "format": "int64",
      "description": "Total number of contact lists."
    },
    "lists": {
      "type": "array",
      "description": "List of contact list summaries.",
      "items": {
        "$ref": "#/components/schemas/ContactListDetail"
      }
    }
  }
}