{ "$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!" } } } }