contentstack · Schema

AudienceList

A list of audience segment definitions.

Properties

Name Type Description
data array Array of audience objects.
View JSON Schema on GitHub

JSON Schema

contentstack-audiencelist-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/AudienceList",
  "title": "AudienceList",
  "type": "object",
  "description": "A list of audience segment definitions.",
  "properties": {
    "data": {
      "type": "array",
      "description": "Array of audience objects.",
      "items": {
        "$ref": "#/components/schemas/Audience"
      }
    }
  }
}