AB Tasty · Schema

CampaignResponseNormal

CampaignResponseNormal schema from AB Tasty Decision API

AggregationExperimentationFeature FlagsPersonalizationA/B Testing

Properties

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

JSON Schema

decision-api-campaign-response-normal-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-normal-schema.json",
  "title": "CampaignResponseNormal",
  "description": "CampaignResponseNormal schema from AB Tasty Decision API",
  "type": "object",
  "properties": {
    "visitorId": {
      "type": "string",
      "example": "user123"
    },
    "campaigns": {
      "type": "array",
      "items": {
        "$ref": "#/components/schemas/Campaign"
      }
    }
  }
}