AB Tasty · Schema

CampaignResponseSimple

CampaignResponseSimple schema from AB Tasty Decision API

AggregationExperimentationFeature FlagsPersonalizationA/B Testing

Properties

Name Type Description
campaignsVariation array
mergedModifications object All remote values merged into a single object
View JSON Schema on GitHub

JSON Schema

decision-api-campaign-response-simple-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-simple-schema.json",
  "title": "CampaignResponseSimple",
  "description": "CampaignResponseSimple schema from AB Tasty Decision API",
  "type": "object",
  "properties": {
    "campaignsVariation": {
      "type": "array",
      "items": {
        "$ref": "#/components/schemas/CampaignVariation"
      }
    },
    "mergedModifications": {
      "type": "object",
      "additionalProperties": true,
      "description": "All remote values merged into a single object",
      "example": {
        "button_color": "blue",
        "feature_enabled": true,
        "welcome_text": "Hello!"
      }
    }
  }
}