forked from adobe/xdm
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathexperienceevent-social-network-usage-details.schema.json
121 lines (121 loc) · 6.37 KB
/
experienceevent-social-network-usage-details.schema.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
{
"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/xdm/mixins/experienceevent-social-network-usage-details",
"$schema": "http://json-schema.org/draft-06/schema#",
"title": "Social Network Usage Details",
"type": "object",
"meta:extensible": true,
"meta:abstract": true,
"meta:tags": {
"industry": [
"retail",
"financial_services",
"travel_and_hospitality",
"telecom",
"automotive",
"education",
"health_and_life_sciences",
"high_tech",
"manufacturing",
"media_and_entertainment",
"public_sector"
]
},
"meta:intendedToExtend": [
"https://ns.adobe.com/xdm/context/experienceevent"
],
"description": "Social network usage information such as share, content, and network.",
"definitions": {
"social-network-usage-details": {
"properties": {
"xdm:socialMarketing": {
"type": "object",
"description": "Tracks interactions related to social marketing sites, such as shares and follows.",
"properties": {
"xdm:sharedContent": {
"title": "Shared Content",
"type": "string",
"description": "Tracks the page/url/content/value of the item being shared.",
"meta:titleId": "experienceevent-social-network-usage-details##xdm:sharedContent##title##95261",
"meta:descriptionId": "experienceevent-social-network-usage-details##xdm:sharedContent##description##76641"
},
"xdm:follow": {
"title": "Follow",
"type": "integer",
"description": "Tracks when a social follow event has occurred.",
"meta:titleId": "experienceevent-social-network-usage-details##xdm:follow##title##93991",
"meta:descriptionId": "experienceevent-social-network-usage-details##xdm:follow##description##75351"
},
"xdm:sharedMessage": {
"title": "Shared Message",
"type": "string",
"description": "Message that the sender sent",
"meta:titleId": "experienceevent-social-network-usage-details##xdm:sharedMessage##title##53431",
"meta:descriptionId": "experienceevent-social-network-usage-details##xdm:sharedMessage##description##13931"
},
"xdm:interactions": {
"title": "Interactions",
"type": "integer",
"description": "The total number of social interactions.",
"meta:titleId": "experienceevent-social-network-usage-details##xdm:interactions##title##23441",
"meta:descriptionId": "experienceevent-social-network-usage-details##xdm:interactions##description##99741"
},
"xdm:network": {
"title": "Network",
"type": "string",
"description": "Tracks the social sharing network in use, i.e. Facebook, Twitter, Instagram, etc.",
"meta:titleId": "experienceevent-social-network-usage-details##xdm:network##title##75521",
"meta:descriptionId": "experienceevent-social-network-usage-details##xdm:network##description##91591"
},
"xdm:target": {
"title": "Target",
"type": "string",
"description": "For social interactions, this is the URL (or resource) which receives the social network action.",
"meta:titleId": "experienceevent-social-network-usage-details##xdm:target##title##60271",
"meta:descriptionId": "experienceevent-social-network-usage-details##xdm:target##description##43431"
},
"xdm:recipient": {
"title": "Recipient",
"type": "string",
"description": "Recipient of the shared content",
"meta:titleId": "experienceevent-social-network-usage-details##xdm:recipient##title##75261",
"meta:descriptionId": "experienceevent-social-network-usage-details##xdm:recipient##description##79731"
},
"xdm:share": {
"title": "Share",
"type": "integer",
"description": "Tracks when a social sharing event has occurred.",
"meta:titleId": "experienceevent-social-network-usage-details##xdm:share##title##79281",
"meta:descriptionId": "experienceevent-social-network-usage-details##xdm:share##description##2531"
}
},
"meta:descriptionId": "experienceevent-social-network-usage-details##xdm:socialMarketing ##description##18151"
}
}
}
},
"allOf": [
{
"$ref": "#/definitions/social-network-usage-details"
}
],
"meta:status": "stable",
"meta:createdDate": "2021-01-15",
"meta:titleId": "experienceevent-social-network-usage-details##title##74461",
"meta:descriptionId": "experienceevent-social-network-usage-details##description##1171",
"examples": [
{
"xdm:marketing ": {
"xdm:sharedContent": "Product Page",
"xdm:follow": 1,
"xdm:network": "LinkedIn",
"xdm:share": 1
}
}
]
}