Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

XDM -1784 Adding support for messageType in sms #1783

Merged
merged 5 commits into from
Oct 16, 2023
Merged
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
Original file line number Diff line number Diff line change
Expand Up @@ -91,7 +91,18 @@
"twilio": "Twilio sms provider",
"vibes": "Vibes sms Provider "
}
},
"https://ns.adobe.com/experience/customerJourneyManagement/smsChannelContext/messageType": {
"title": "SMS messageType",
"type": "string",
"description": "SMS provider, e.g. inbound, inboundReply or send"
},
"https://ns.adobe.com/experience/customerJourneyManagement/smsChannelContext/inboundMessage": {
"title": "SMS inbound Message",
"type": "string",
"description": "SMS inbound reply, e.g. stop, start, subscribe, etc.",
}

}
}
},
Expand Down Expand Up @@ -123,4 +134,4 @@
"https://ns.adobe.com/experience/customerJourneyManagement/emailChannelContext/outboundIP": "52.247.77.92"
}
]
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -47,6 +47,7 @@ Message Profile details for the Adobe CJM ExperienceEvent.
| [https://ns.adobe.com/experience/customerJourneyManagement/messageProfile/variant](#httpsnsadobecomexperiencecustomerjourneymanagementmessageprofilevariant) | `string` | Optional | Adobe CJM ExperienceEvent - Message Profile Details (this schema) |
| [https://ns.adobe.com/experience/customerJourneyManagement/pushChannelContext/platform](#httpsnsadobecomexperiencecustomerjourneymanagementpushchannelcontextplatform) | `string` | Optional | Adobe CJM ExperienceEvent - Message Profile Details (this schema) |
| [https://ns.adobe.com/experience/customerJourneyManagement/smsChannelContext/smsProvider](#httpsnsadobecomexperiencecustomerjourneymanagementsmschannelcontextsmsprovider) | `string` | Optional | Adobe CJM ExperienceEvent - Message Profile Details (this schema) |
| [https://ns.adobe.com/experience/customerJourneyManagement/smsChannelContext/messageType](#httpsnsadobecomexperiencecustomerjourneymanagementsmschannelcontextmessageType) | `string` | Optional | Adobe CJM ExperienceEvent - Message Profile Details (this schema) |
| `*` | any | Additional | this schema *allows* additional properties |

## https://ns.adobe.com/experience/customerJourneyManagement/emailChannelContext/address
Expand Down Expand Up @@ -236,7 +237,7 @@ Push provider service, e.g. apns or fcm
## https://ns.adobe.com/experience/customerJourneyManagement/smsChannelContext/smsProvider
### SMS Provider

SMS provider , e.g. sinch or twilio
SMS provider , e.g. sinch, infobip or twilio

`https://ns.adobe.com/experience/customerJourneyManagement/smsChannelContext/smsProvider`
* is optional
Expand All @@ -250,12 +251,49 @@ SMS provider , e.g. sinch or twilio



### https://ns.adobe.com/experience/customerJourneyManagement/smsChannelContext/smsProvider Known Values
### https://ns.adobe.com/experience/customerJourneyManagement/smsChannelContext/messageType Known Values
| Value | Description |
|-------|-------------|
| `sinch` | Sinch sms provider |
| `twilio` | Twilio sms provider |
| `vibes` | Vibes sms Provider |
| `inbound` | Inbound received for the profile |
| `inboundReply` | Replied with custom message for inbound |
| `send` | sms send |

## https://ns.adobe.com/experience/customerJourneyManagement/smsChannelContext/messageType
### SMS messageType

SMS provider, e.g. inbound, inboundReply or send

`https://ns.adobe.com/experience/customerJourneyManagement/smsChannelContext/messageType`
* is optional
* type: `string`
* defined in this schema

### https://ns.adobe.com/experience/customerJourneyManagement/smsChannelContext/messageType Type


`string`



### https://ns.adobe.com/experience/customerJourneyManagement/smsChannelContext/inboundMessage Known Values

## https://ns.adobe.com/experience/customerJourneyManagement/smsChannelContext/inboundMessage
### SMS inbound Message

SMS inbound reply, e.g. stop, start, subscribe, etc.

`https://ns.adobe.com/experience/customerJourneyManagement/smsChannelContext/inboundMessage`
* is optional
* type: `string`
* defined in this schema

### https://ns.adobe.com/experience/customerJourneyManagement/smsChannelContext/inboundMessage Type


`string`






Original file line number Diff line number Diff line change
Expand Up @@ -91,9 +91,20 @@
"description": "SMS provider , e.g. sinch or twilio",
"meta:enum": {
"sinch": "Sinch sms provider",
"infobip": "Twilio sms provider",
"twilio": "Twilio sms provider",
"vibes": "Vibes sms Provider "
}
},
"https://ns.adobe.com/experience/customerJourneyManagement/smsChannelContext/messageType": {
"title": "SMS messageType",
"type": "string",
"description": "SMS provider, e.g. inbound, inboundReply or send"
},
"https://ns.adobe.com/experience/customerJourneyManagement/smsChannelContext/inboundMessage": {
"title": "SMS inbound Message",
"type": "string",
"description": "SMS inbound reply, e.g. stop, start, subscribe, etc."
}
}
}
Expand Down