Skip to content
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 @@ -150,17 +150,24 @@
"xdm:devicePathBreakdown": {
"type": "object",
"title": "Device Path Breakdown",
"description": "Conversion counts grouped by the device transition path leading up to the conversion",
"properties": {
"xdm:mobileToDesktop": {
"type": "number",
"title": "Mobile to Desktop Conversions",
"description": "Conversions where the user transitioned from a mobile device to a desktop device along the conversion path",
"minimum": 0
},
"xdm:desktopToMobile": {
"type": "number",
"title": "Desktop to Mobile Conversions",
"description": "Conversions where the user transitioned from a desktop device to a mobile device along the conversion path",
"minimum": 0
},
"xdm:mobileToMobileApp": {
"type": "number",
"title": "Mobile Web to Mobile App Conversions",
"description": "Conversions where the user transitioned from a mobile web experience to a mobile app along the conversion path",
"minimum": 0
}
}
Expand Down Expand Up @@ -297,13 +304,19 @@
"type": "object",
"properties": {
"xdm:channel": {
"type": "string"
"type": "string",
"title": "Channel",
"description": "Marketing channel for this step in the conversion path"
},
"xdm:position": {
"type": "integer"
"type": "integer",
"title": "Position",
"description": "Ordered position of this channel within the conversion path (1-based)"
},
"xdm:weight": {
"type": "number"
"type": "number",
"title": "Weight",
"description": "Attribution weight assigned to this channel within the conversion path"
}
}
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -332,11 +332,14 @@
"xdm:schedule": {
"type": "array",
"title": "Schedule",
"description": "Day-of-week and time-of-day windows during which the campaign is eligible to serve",
"items": {
"type": "object",
"properties": {
"xdm:dayOfWeek": {
"type": "string",
"title": "Day of Week",
"description": "Day of the week this schedule entry applies to",
"enum": [
"monday",
"tuesday",
Expand All @@ -358,11 +361,15 @@
},
"xdm:startHour": {
"type": "integer",
"title": "Start Hour",
"description": "Hour of the day the schedule window opens, expressed in 24-hour format (0-23)",
"minimum": 0,
"maximum": 23
},
"xdm:endHour": {
"type": "integer",
"title": "End Hour",
"description": "Hour of the day the schedule window closes, expressed in 24-hour format (0-23)",
"minimum": 0,
"maximum": 23
}
Expand Down