forked from adobe/xdm
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathprofile-personal-details.schema.json
More file actions
101 lines (101 loc) · 4.51 KB
/
profile-personal-details.schema.json
File metadata and controls
101 lines (101 loc) · 4.51 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
{
"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-personal-details",
"$schema": "http://json-schema.org/draft-06/schema#",
"title": "Personal Contact Details",
"type": "object",
"meta:extensible": true,
"meta:abstract": true,
"meta:tags": {
"industry": [
"all"
]
},
"meta:intendedToExtend": [
"https://ns.adobe.com/xdm/context/profile",
"https://ns.adobe.com/xdm/context/experienceevent"
],
"description": "Contact information for an individual person such as home address, phone number, fax, and email.",
"definitions": {
"profile-personal-details": {
"properties": {
"xdm:homeAddress": {
"title": "Home Address",
"$ref": "https://ns.adobe.com/xdm/common/address",
"description": "A home postal address.",
"meta:titleId": "profile-personal-details##xdm:homeAddress##title##98571",
"meta:descriptionId": "profile-personal-details##xdm:homeAddress##description##35241"
},
"xdm:personalEmail": {
"title": "Personal Email",
"$ref": "https://ns.adobe.com/xdm/context/emailaddress",
"description": "A personal email address.",
"meta:titleId": "profile-personal-details##xdm:personalEmail##title##13501",
"meta:descriptionId": "profile-personal-details##xdm:personalEmail##description##54181"
},
"xdm:homePhone": {
"title": "Home Phone",
"$ref": "https://ns.adobe.com/xdm/context/phonenumber",
"description": "Home phone number.",
"meta:titleId": "profile-personal-details##xdm:homePhone##title##28261",
"meta:descriptionId": "profile-personal-details##xdm:homePhone##description##45111"
},
"xdm:mobilePhone": {
"title": "Mobile Phone",
"$ref": "https://ns.adobe.com/xdm/context/phonenumber",
"description": "Mobile phone number.",
"meta:titleId": "profile-personal-details##xdm:mobilePhone##title##76241",
"meta:descriptionId": "profile-personal-details##xdm:mobilePhone##description##51801"
},
"xdm:faxPhone": {
"title": "Fax Phone",
"$ref": "https://ns.adobe.com/xdm/context/phonenumber",
"description": "Fax phone number.",
"meta:titleId": "profile-personal-details##xdm:faxPhone##title##15761",
"meta:descriptionId": "profile-personal-details##xdm:faxPhone##description##5951"
},
"xdm:shippingAddress": {
"title": "Shipping Address",
"$ref": "https://ns.adobe.com/xdm/common/address",
"description": "Shipping postal address."
},
"xdm:billingAddress": {
"title": "Billing Address",
"$ref": "https://ns.adobe.com/xdm/common/address",
"description": "Billing postal address."
},
"xdm:mailingAddress": {
"title": "Mailing Address",
"$ref": "https://ns.adobe.com/xdm/common/address",
"description": "Mailing postal address."
}
}
}
},
"allOf": [
{
"$ref": "https://ns.adobe.com/xdm/common/extensible#/definitions/@context"
},
{
"$ref": "#/definitions/profile-personal-details"
}
],
"meta:status": "stable",
"meta:createdDate": "2020-08-10",
"meta:titleId": "profile-personal-details##title##17051",
"meta:descriptionId": "profile-personal-details##description##5771",
"examples": [
{
"xdm:mobilePhone": {
"xdm:primary": true,
"xdm:number": "1-408-888-8888",
"xdm:status": "active"
}
}
]
}