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

Batch Journey XDM Schema #1925

Merged
merged 7 commits into from
Jan 30, 2025
Merged
Show file tree
Hide file tree
Changes from 6 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 @@ -45,6 +45,17 @@
"https://ns.adobe.com/experience/customerJourneyManagement/entities/journeyNodeType": "segmentTrigger",
"https://ns.adobe.com/experience/customerJourneyManagement/entities/journeyProfileNamespace": "ECID"
},
"https://ns.adobe.com/experience/customerJourneyManagement/entities/batchJourney": {
"https://ns.adobe.com/experience/customerJourneyManagement/entities/bathcJourneyVersionID": "03832ee5-51ff-4706-af8a-a8ff6756308b",
"https://ns.adobe.com/experience/customerJourneyManagement/entities/batchJourneyName": "Batch Journey Test",
"https://ns.adobe.com/experience/customerJourneyManagement/entities/batchJourneyID": "0979238rf-51ff-4706-af8a-a8ff6756308b",
"https://ns.adobe.com/experience/customerJourneyManagement/entities/batchJourneyCode": "Send Welcome Email Message",
"https://ns.adobe.com/experience/customerJourneyManagement/entities/batchJourneyAction": {
"https://ns.adobe.com/experience/customerJourneyManagement/entities/batchJourneyActionID": "0899238rf-51ff",
"https://ns.adobe.com/experience/customerJourneyManagement/entities/batchJourneyActionName": "Email Service",
"https://ns.adobe.com/experience/customerJourneyManagement/entities/batchJourneyIdentityNamespace": "Profile"
}
},
"https://ns.adobe.com/experience/customerJourneyManagement/entities/tags": {
"https://ns.adobe.com/experience/customerJourneyManagement/entities/values": [
"NewsLetter",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -221,6 +221,55 @@
}
}
},
"https://ns.adobe.com/experience/customerJourneyManagement/entities/batchJourney": {
"title": "AJO Batch Journey Entity",
"type": "object",
"description": "AJO Batch Journey Entity Specific Fields",
"properties": {
"https://ns.adobe.com/experience/customerJourneyManagement/entities/batchJourneyVersionID": {
ankusharma246 marked this conversation as resolved.
Show resolved Hide resolved
"title": "Batch Journey Version ID",
"type": "string",
"description": "Represents a frozen version of a Batch Journey"
},
"https://ns.adobe.com/experience/customerJourneyManagement/entities/batchJourneyName": {
"title": "Batch Journey Name",
"type": "string",
"description": "Represents the Batch Journey Name"
},
"https://ns.adobe.com/experience/customerJourneyManagement/entities/batchJourneyID": {
"title": "Batch Journey ID",
"type": "string",
"description": "Represents the Batch Journey ID"
},
"https://ns.adobe.com/experience/customerJourneyManagement/entities/batchJourneyCode": {
"title": "Batch Journey Code",
"type": "string",
"description": "Represents the Batch Journey Code"
},
"https://ns.adobe.com/experience/customerJourneyManagement/entities/batchJourneyAction": {
"title": "Batch Journey Action",
"type": "object",
"description": "Represents the Batch Journey Action",
"properties": {
"https://ns.adobe.com/experience/customerJourneyManagement/entities/batchJourneyActionID": {
"title": "Batch Journey Action ID",
"type": "string",
"description": "Represents the Batch Journey Action ID"
},
"https://ns.adobe.com/experience/customerJourneyManagement/entities/batchJourneyActionName": {
"title": "Batch Journey Action Name",
"type": "string",
"description": "Represents the Batch Journey Action Name"
},
"https://ns.adobe.com/experience/customerJourneyManagement/entities/batchJourneyIdentityNamespace": {
"title": "Batch Journey Action Identity Namespace",
"type": "string",
"description": "Represents the Batch Journey Action Identity Namespace"
}
}
}
}
},
"https://ns.adobe.com/experience/customerJourneyManagement/entities/tags": {
"title": "AJO Entity tags",
"type": "object",
Expand Down