AB Tasty · Schema

CampaignResponseFull

CampaignResponseFull schema from AB Tasty Decision API

AggregationExperimentationFeature FlagsPersonalizationA/B Testing

Properties

Name Type Description
visitorId string
campaigns array
campaignsVariation array
mergedModifications object
View JSON Schema on GitHub

JSON Schema

decision-api-campaign-response-full-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://raw.githubusercontent.com/api-evangelist/ab-tasty/refs/heads/main/json-schema/decision-api-campaign-response-full-schema.json",
  "title": "CampaignResponseFull",
  "description": "CampaignResponseFull schema from AB Tasty Decision API",
  "type": "object",
  "properties": {
    "visitorId": {
      "type": "string",
      "example": "user123"
    },
    "campaigns": {
      "type": "array",
      "items": {
        "$ref": "#/components/schemas/Campaign"
      }
    },
    "campaignsVariation": {
      "type": "array",
      "items": {
        "$ref": "#/components/schemas/CampaignVariation"
      }
    },
    "mergedModifications": {
      "type": "object",
      "additionalProperties": true
    }
  }
}