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
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
{
"xdm:experienceContent": {
"xdm:idSource": "adobe-analytics",
"xdm:channel": "web",
"xdm:experience": {
"xdm:experienceID": "https://domain.com:2023-01-01",
"xdm:experienceSource": "https://domain.com",
Expand All @@ -23,6 +25,10 @@
"xdm:verticalPixelDepth": {
"xdm:value": 0.0
}
},
"xdm:experienceExtras": {
"viewDurations": 15.5,
"loadDurations": 2.3
}
},
"xdm:assets": [
Expand All @@ -41,6 +47,10 @@
},
"xdm:assetViews": {
"xdm:value": 20
},
"xdm:assetExtras": {
"viewDurations": 8.2,
"loadDurations": 1.1
}
},
{
Expand All @@ -58,6 +68,10 @@
},
"xdm:assetViews": {
"xdm:value": 30
},
"xdm:assetExtras": {
"viewDurations": 12.7,
"loadDurations": 0.8
}
}
],
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,16 @@
"type": "object",
"description": "Experience information content.",
"properties": {
"xdm:idSource": {
"title": "ID Source",
"type": "string",
"description": "Content ID source."
},
"xdm:channel": {
"title": "Channel",
"type": "string",
"description": "Content channel."
},
"xdm:experience": {
"title": "Content Experience",
"description": "Content experience tracking",
Expand Down Expand Up @@ -78,6 +88,23 @@
"$ref": "https://ns.adobe.com/xdm/data/measure"
}
}
},
"xdm:experienceExtras": {
"title": "Experience Extras",
"type": "object",
"meta:xdmType": "map",
"description": "Additional experience properties.",
"additionalProperties": {
"type": [
"string",
"number",
"integer",
"boolean",
"object",
"array"
],
"description": "Additional property value of any type"
}
}
}
},
Expand Down Expand Up @@ -150,6 +177,23 @@
"title": "Asset Views",
"description": "Content asset views.",
"$ref": "https://ns.adobe.com/xdm/data/measure"
},
"xdm:assetExtras": {
"title": "Asset Extras",
"type": "object",
"meta:xdmType": "map",
"description": "Additional asset properties.",
"additionalProperties": {
"type": [
"string",
"number",
"integer",
"boolean",
"object",
"array"
],
"description": "Additional property value of any type"
}
}
}
}
Expand Down