forked from adobe/xdm
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathprofile-preferences-details.schema.json
More file actions
100 lines (100 loc) · 5.39 KB
/
profile-preferences-details.schema.json
File metadata and controls
100 lines (100 loc) · 5.39 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
{
"meta:license": [
"Copyright 2018 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/context/profile-preferences-details",
"$schema": "http://json-schema.org/draft-06/schema#",
"title": "Preference Details",
"type": "object",
"meta:extensible": true,
"meta:abstract": true,
"meta:intendedToExtend": [
"https://ns.adobe.com/xdm/context/profile"
],
"description": "Preferences such as opt-in and opt-out, time zone, preferred language, and email format.",
"definitions": {
"profile-preferences-details": {
"properties": {
"xdm:preferredLanguage": {
"title": "Preferred language",
"type": "string",
"pattern": "^(((([A-Za-z]{2,3}(-([A-Za-z]{3}(-[A-Za-z]{3}){0,2}))?)|[A-Za-z]{4}|[A-Za-z]{5,8})(-([A-Za-z]{4}))?(-([A-Za-z]{2}|[0-9]{3}))?(-([A-Za-z0-9]{5,8}|[0-9][A-Za-z0-9]{3}))*(-([0-9A-WY-Za-wy-z](-[A-Za-z0-9]{2,8})+))*(-(x(-[A-Za-z0-9]{1,8})+))?)|(x(-[A-Za-z0-9]{1,8})+)|((en-GB-oed|i-ami|i-bnn|i-default|i-enochian|i-hak|i-klingon|i-lux|i-mingo|i-navajo|i-pwn|i-tao|i-tay|i-tsu|sgn-BE-FR|sgn-BE-NL|sgn-CH-DE)|(art-lojban|cel-gaulish|no-bok|no-nyn|zh-guoyu|zh-hakka|zh-min|zh-min-nan|zh-xiang)))$",
"examples": [
"en-GB",
"de-DE",
"yue-HK"
],
"description": "Describes the preferred system of communication used by the profile. Language codes are expressed in BCP 47 format.",
"meta:titleId": "profile-preferences-details##xdm:preferredLanguage##title##6281",
"meta:descriptionId": "profile-preferences-details##xdm:preferredLanguage##description##20921"
},
"xdm:profilePictureLink": {
"title": "Profile picture link",
"type": "string",
"description": "Link to profile's picture.",
"meta:titleId": "profile-preferences-details##xdm:profilePictureLink##title##67351",
"meta:descriptionId": "profile-preferences-details##xdm:profilePictureLink##description##42051"
},
"xdm:emailFormat": {
"title": "Email format",
"type": "string",
"description": "Email format preferred by the profile. This can be rich text or plain text.",
"meta:enum": {
"html": "Rich text",
"plaintext": "Plain text"
},
"meta:titleId": "profile-preferences-details##xdm:emailFormat##title##18781",
"meta:descriptionId": "profile-preferences-details##xdm:emailFormat##description##4401"
},
"xdm:timeZone": {
"title": "Time zone",
"type": "string",
"examples": [
"America/Barbados",
"Antarctica/Davis",
"Asia/Calcutta"
],
"description": "Describes which time zone the profile is present in, most frequently the time zone preferred by the profile. Time zones are expressed according to the IETF tz database: https://www.ietf.org/timezones/tzdb-2016i/tz-link.htm",
"meta:titleId": "profile-preferences-details##xdm:timeZone##title##57321",
"meta:descriptionId": "profile-preferences-details##xdm:timeZone##description##30991"
},
"xdm:optInOut": {
"title": "OptInOut",
"$ref": "https://ns.adobe.com/xdm/context/optinout",
"description": "Describes a users opting in and out preferences for communication by medium and communication type.",
"meta:status": "deprecated",
"meta:titleId": "profile-preferences-details##xdm:optInOut##title##15761",
"meta:descriptionId": "profile-preferences-details##xdm:optInOut##description##47851"
}
}
}
},
"allOf": [
{
"$ref": "https://ns.adobe.com/xdm/common/extensible#/definitions/@context"
},
{
"$ref": "#/definitions/profile-preferences-details"
}
],
"meta:status": "stable",
"meta:createdDate": "2020-08-10",
"meta:titleId": "profile-preferences-details##title##71061",
"meta:descriptionId": "profile-preferences-details##description##75861",
"examples": [
{
"xdm:optInOut": {
"https://ns.adobe.com/xdm/channels/email": "pending",
"https://ns.adobe.com/xdm/channels/phone": "out",
"https://ns.adobe.com/xdm/channels/sms": "in",
"https://ns.adobe.com/xdm/channels/fax": "not_provided",
"https://ns.adobe.com/xdm/channels/direct-mail": "not_provided",
"https://ns.adobe.com/xdm/channels/apns": "not_provided",
"xdm:globalOptout": false
}
}
]
}