contentstack · Schema

ManifestExperience

An active experience entry in the manifest with variant assignment.

Properties

Name Type Description
experience_uid string Unique identifier of the experience.
experience_short_uid string Short identifier of the experience for use in content querying.
variant_uid string Unique identifier of the variant assigned to this user.
variant_short_uid string Short identifier of the variant for use in content querying.
View JSON Schema on GitHub

JSON Schema

contentstack-manifestexperience-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/ManifestExperience",
  "title": "ManifestExperience",
  "type": "object",
  "description": "An active experience entry in the manifest with variant assignment.",
  "properties": {
    "experience_uid": {
      "type": "string",
      "description": "Unique identifier of the experience."
    },
    "experience_short_uid": {
      "type": "string",
      "description": "Short identifier of the experience for use in content querying."
    },
    "variant_uid": {
      "type": "string",
      "description": "Unique identifier of the variant assigned to this user."
    },
    "variant_short_uid": {
      "type": "string",
      "description": "Short identifier of the variant for use in content querying."
    }
  }
}