Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 9 additions & 0 deletions components/behaviors/time-series.schema.json
Original file line number Diff line number Diff line change
Expand Up @@ -96,6 +96,15 @@
"directMarketing.emailOpened": "Direct Marketing Email Opened",
"directMarketing.emailClicked": "Direct Marketing Email Clicked",
"directMarketing.emailSent": "Direct Marketing Email Sent",
"directMarketing.whatsAppSent": "Direct Marketing WhatsApp Sent",
"directMarketing.whatsAppDelivered": "Direct Marketing WhatsApp Delivered",
"directMarketing.whatsAppRead": "Direct Marketing WhatsApp Read",
"directMarketing.whatsAppBounced": "Direct Marketing WhatsApp Bounced",
"directMarketing.whatsAppDelayed": "Direct Marketing WhatsApp Delayed",
"directMarketing.whatsAppDenylist": "Direct Marketing WhatsApp Denylist",
"directMarketing.whatsAppDuplicate": "Direct Marketing WhatsApp Duplicate",
"directMarketing.whatsAppError": "Direct Marketing WhatsApp Error",
"directMarketing.whatsAppExcluded": "Direct Marketing WhatsApp Excluded",
"opportunityEvent.removeFromOpportunity": "Opportunity Event Remove From Opportunity",
"opportunityEvent.addToOpportunity": "Opportunity Event Add To Opportunity",
"opportunityEvent.opportunityUpdated": "Opportunity Event Opportunity Updated",
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
{
"https://ns.adobe.com/experience/customerJourneyManagement/whatsAppMessageEvents/eventType": "directMarketing.whatsAppSent"
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
{
"https://ns.adobe.com/experience/customerJourneyManagement/whatsAppMessageEvents/eventType": "directMarketing.whatsAppDelivered"
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
{
"https://ns.adobe.com/experience/customerJourneyManagement/whatsAppMessageEvents/eventType": "directMarketing.whatsAppRead"
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,62 @@
{
"meta:license": [
"Copyright 2020 Adobe Systems Incorporated. All rights reserved.",
"This work is licensed under a Creative Commons Attribution 4.0 International (CC BY 4.0) license",
"you may not use this file except in compliance with the License. You may obtain a copy",
"of the License at https://creativecommons.org/licenses/by/4.0/"
],
"$id": "https://ns.adobe.com/experience/customerJourneyManagement/whatsapp-message-events",
"$schema": "http://json-schema.org/draft-06/schema#",
"title": "Adobe CJM ExperienceEvent - WhatsApp Message Event Details",
"description": "Defines event types for WhatsApp message lifecycle events. Use with message profile and message delivery feedback when the channel is WhatsApp.",
"type": "object",
"meta:extensible": true,
"meta:abstract": true,
"meta:intendedToExtend": ["https://ns.adobe.com/xdm/context/experienceevent"],
"definitions": {
"whatsappMessageEvents": {
"properties": {
"https://ns.adobe.com/experience/customerJourneyManagement/whatsAppMessageEvents/eventType": {
"title": "WhatsApp Message Event Type",
"type": "string",
"description": "The type of WhatsApp message lifecycle event. Maps to delivery feedback states when channel is WhatsApp. Aligns with directMarketing event type naming (e.g. directMarketing.emailSent).",
"enum": [
"directMarketing.whatsAppSent",
"directMarketing.whatsAppDelivered",
"directMarketing.whatsAppRead",
"directMarketing.whatsAppBounced",
"directMarketing.whatsAppDelayed",
"directMarketing.whatsAppDenylist",
"directMarketing.whatsAppDuplicate",
"directMarketing.whatsAppError",
"directMarketing.whatsAppExcluded"
],
"meta:enum": {
"directMarketing.whatsAppSent": "Direct Marketing WhatsApp Sent",
"directMarketing.whatsAppDelivered": "Direct Marketing WhatsApp Delivered",
"directMarketing.whatsAppRead": "Direct Marketing WhatsApp Read",
"directMarketing.whatsAppBounced": "Direct Marketing WhatsApp Bounced",
"directMarketing.whatsAppDelayed": "Direct Marketing WhatsApp Delayed",
"directMarketing.whatsAppDenylist": "Direct Marketing WhatsApp Denylist",
"directMarketing.whatsAppDuplicate": "Direct Marketing WhatsApp Duplicate",
"directMarketing.whatsAppError": "Direct Marketing WhatsApp Error",
"directMarketing.whatsAppExcluded": "Direct Marketing WhatsApp Excluded"
},
"meta:titleId": "whatsapp-message-events##https://ns.adobe.com/experience/customerJourneyManagement/whatsAppMessageEvents/eventType##title##1",
"meta:descriptionId": "whatsapp-message-events##https://ns.adobe.com/experience/customerJourneyManagement/whatsAppMessageEvents/eventType##description##1"
}
}
}
},
"allOf": [
{
"$ref": "https://ns.adobe.com/xdm/common/extensible#/definitions/@context"
},
{
"$ref": "#/definitions/whatsappMessageEvents"
}
],
"meta:status": "stable",
"meta:titleId": "whatsapp-message-events##title##1",
"meta:descriptionId": "whatsapp-message-events##description##1"
}