-
Notifications
You must be signed in to change notification settings - Fork 1
/
deprecated-profile-consent.schema.json
94 lines (94 loc) · 3.96 KB
/
deprecated-profile-consent.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
{
"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/profile-consent",
"$schema": "http://json-schema.org/draft-06/schema#",
"title": "Privacy/Marketing Preferences (Consent)",
"description": "This schema captures privacy, personalization and marketing preferences (consents).",
"type": "object",
"meta:extensible": true,
"meta:abstract": true,
"meta:intendedToExtend": [
"https://ns.adobe.com/xdm/context/profile"
],
"definitions": {
"profile-consents": {
"properties": {
"xdm:consentsAndPreferences": {
"title": "Global Privacy/Marketing Preference Values",
"description": "Global (User/Profile-level) Privacy/Personalization/Marketing Preferences.",
"$ref": "https://ns.adobe.com/xdm/datatypes/consent-preferences",
"meta:titleId": "profile-consent##xdm:consentsAndPreferences##title##84421",
"meta:descriptionId": "profile-consent##xdm:consentsAndPreferences##description##9401"
}
}
}
},
"allOf": [
{
"$ref": "#/definitions/profile-consents"
}
],
"meta:status": "deprecated",
"meta:createdDate": "2021-02-19",
"meta:titleId": "profile-consent##title##27801",
"meta:descriptionId": "profile-consent##description##76521",
"examples": [
{
"xdm:consentsAndPreferences": {
"xdm:choices": {
"xdm:consents": {
"xdm:dataCollection": {
"xdm:choice": "yes",
"xdm:timestamp": "2019-01-01T15:52:25+00:00",
"xdm:basisOfProcessing": "consent"
},
"xdm:deviceLinking": {
"xdm:basisOfProcessing": "vital_interest"
},
"xdm:pseudonymousAnalysis": {
"xdm:choice": "no"
}
},
"xdm:personalizationPreferences": {
"xdm:anyPersonalization": {
"xdm:choice": "yes",
"xdm:timestamp": "2019-01-01T15:52:25+00:00",
"xdm:basisOfProcessing": "consent"
}
},
"xdm:marketingPreferences": {
"xdm:preferredChannel": "email",
"xdm:anyMarketing": {
"xdm:choice": "unknown"
},
"xdm:iotMessages": {
"xdm:choice": "yes",
"xdm:timestamp": "2019-01-01T15:52:25+00:00",
"xdm:basisOfProcessing": "legitimate_interest"
},
"xdm:pushNotifications": {
"xdm:choice": "yes",
"xdm:source": "OurApp"
},
"xdm:email": {
"xdm:choice": "no",
"xdm:reason": "Too Frequent"
}
}
},
"xdm:choicesMetadata": {
"xdm:version": "1.0.0",
"xdm:timestamp": "2019-01-01T15:52:25+00:00",
"xdm:userCountryRegionCode": "US",
"xdm:countryRegionSource": "ip",
"xdm:source": "CJM"
}
}
}
]
}