forked from adobe/xdm
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathprofile-consentResults.schema.json
More file actions
74 lines (74 loc) · 3.1 KB
/
profile-consentResults.schema.json
File metadata and controls
74 lines (74 loc) · 3.1 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
{
"meta:license": [
"Copyright 2022 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-consentResults",
"$schema": "http://json-schema.org/draft-06/schema#",
"title": "Consent policies evaluation results map",
"type": "object",
"meta:intendedToExtend": [
"https://ns.adobe.com/xdm/context/profile"
],
"description": "Consent policies evaluation result for individual",
"definitions": {
"profile-consentResults": {
"properties": {
"xdm:consentPoliciesIDMap": {
"title": "consent policies map",
"type": "object",
"meta:xdmType": "map",
"additionalProperties": {
"title": "consent policy id map",
"description": "map of validated fields for a consent policy",
"type": "object",
"meta:xdmType": "map",
"additionalProperties": {
"title": "consented identities per namespace",
"description": "List of identities for each namespace in each consent policy",
"type": "array",
"items": {
"type": "string"
},
"meta:titleId": "profile-consentResults##additionalProperties##title##15641",
"meta:descriptionId": "profile-consentResults##additionalProperties##description##11471"
},
"meta:titleId": "profile-consentResults##additionalProperties##title##89801",
"meta:descriptionId": "profile-consentResults##additionalProperties##description##38471"
},
"meta:titleId": "profile-consentResults##xdm:consentPoliciesIDMap##title##43181"
}
}
}
},
"allOf": [
{
"$ref": "#/definitions/profile-consentResults"
}
],
"meta:status": "stable",
"meta:titleId": "profile-consentResults##title##35151",
"meta:descriptionId": "profile-consentResults##description##64881",
"examples": [
{
"xdm:consentPoliciesIDMap": {
"consentPolicy1": {},
"consentPolicy2": {
"Email": [
"personal.email1@gmail.com",
"work.email1@adobe.com",
"personal.email2@gmail.com"
]
},
"consentPolicy3": {
"AAID": [
"92312748749128",
"30453470347"
]
}
}
}
]
}