contentstack · Schema

ExperienceList

A list of personalization experiences.

Properties

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

JSON Schema

contentstack-experiencelist-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/ExperienceList",
  "title": "ExperienceList",
  "type": "object",
  "description": "A list of personalization experiences.",
  "properties": {
    "data": {
      "type": "array",
      "description": "Array of experience objects.",
      "items": {
        "$ref": "#/components/schemas/Experience"
      }
    }
  }
}