forked from adobe/xdm
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathprofile-consents.schema.json
More file actions
110 lines (110 loc) · 3.96 KB
/
profile-consents.schema.json
File metadata and controls
110 lines (110 loc) · 3.96 KB
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
{
"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-consents",
"$schema": "http://json-schema.org/draft-06/schema#",
"title": "Consent and Preference Details",
"description": "This schema captures privacy, personalization and marketing preferences (consents).",
"type": "object",
"meta:extensible": true,
"meta:abstract": true,
"meta:tags": {
"industry": [
"all"
]
},
"meta:intendedToExtend": [
"https://ns.adobe.com/xdm/context/profile"
],
"definitions": {},
"allOf": [
{
"$ref": "https://ns.adobe.com/xdm/datatypes/consents-and-preferences#/definitions/profile-consents"
}
],
"meta:status": "stable",
"meta:createdDate": "2020-11-04",
"meta:titleId": "profile-consents##title##22741",
"meta:descriptionId": "profile-consents##description##42021",
"examples": [
{
"xdm:consents": {
"xdm:collect": {
"xdm:val": "VI"
},
"xdm:share": {
"xdm:val": "y"
},
"xdm:personalize": {
"xdm:content": {
"xdm:val": "y"
}
},
"xdm:marketing": {
"xdm:preferred": "email",
"xdm:any": {
"xdm:val": "y"
},
"xdm:email": {
"xdm:val": "y"
}
},
"xdm:idSpecific": {
"ECID": {
"12345678-abcdef09-87654321-fedcba90": {
"xdm:share": {
"xdm:val": "n"
},
"xdm:marketing": {
"xdm:push": {
"xdm:val": "n",
"xdm:time": "2020-09-30T01:02:33+00:00",
"xdm:reason": "not relevant"
}
}
},
"11112222-33334444-55556666-77778888": {
"xdm:adID": {
"xdm:val": "n",
"xdm:idType": "IDFA"
},
"xdm:personalize": {
"xdm:content": {
"xdm:val": "n"
}
},
"xdm:marketing": {
"xdm:push": {
"xdm:val": "y"
}
}
}
},
"email": {
"john@xyz.com": {
"xdm:marketing": {
"xdm:email": {
"xdm:val": "y"
}
}
},
"johnny@company.com": {
"xdm:marketing": {
"xdm:email": {
"xdm:val": "n"
}
}
}
}
},
"xdm:metadata": {
"xdm:time": "2019-01-01T15:52:25+00:00"
}
}
}
]
}