forked from adobe/xdm
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathprofile-work-details.schema.json
More file actions
119 lines (119 loc) · 4.68 KB
/
profile-work-details.schema.json
File metadata and controls
119 lines (119 loc) · 4.68 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
111
112
113
114
115
116
117
118
119
{
"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-work-details",
"$schema": "http://json-schema.org/draft-06/schema#",
"title": "Work Contact Details",
"type": "object",
"meta:extensible": true,
"meta:abstract": true,
"meta:tags": {
"industry": [
"all"
]
},
"meta:intendedToExtend": [
"https://ns.adobe.com/xdm/context/profile"
],
"description": "Work-related details of a person such as work address, work email, work phone number, and organizations to which the person belongs.",
"definitions": {
"profile-work-details": {
"properties": {
"xdm:workAddress": {
"title": "Work Address",
"$ref": "https://ns.adobe.com/xdm/common/address",
"description": "A work postal address.",
"meta:titleId": "profile-work-details##xdm:workAddress##title##70681",
"meta:descriptionId": "profile-work-details##xdm:workAddress##description##6351"
},
"xdm:workEmail": {
"title": "Work Email",
"$ref": "https://ns.adobe.com/xdm/context/emailaddress",
"description": "A work email address.",
"meta:titleId": "profile-work-details##xdm:workEmail##title##5061",
"meta:descriptionId": "profile-work-details##xdm:workEmail##description##77641"
},
"xdm:workPhone": {
"title": "Work Phone",
"$ref": "https://ns.adobe.com/xdm/context/phonenumber",
"description": "Work phone number.",
"meta:titleId": "profile-work-details##xdm:workPhone##title##72561",
"meta:descriptionId": "profile-work-details##xdm:workPhone##description##61541"
},
"xdm:organizations": {
"title": "Organizations",
"type": "array",
"items": {
"type": "string"
},
"meta:titleId": "profile-work-details##xdm:organizations##title##55021"
}
}
}
},
"allOf": [
{
"$ref": "https://ns.adobe.com/xdm/common/extensible#/definitions/@context"
},
{
"$ref": "#/definitions/profile-work-details"
}
],
"meta:status": "stable",
"meta:createdDate": "2020-08-10",
"meta:titleId": "profile-work-details##title##83911",
"meta:descriptionId": "profile-work-details##description##64201",
"examples": [
{
"xdm:workAddress": {
"@id": "https://data.adobe.io/entities/address/123",
"xdm:primary": false,
"xdm:street1": "345 Park Ave",
"xdm:city": "San Jose",
"xdm:stateProvince": "US-CA",
"xdm:postalCode": "95110",
"xdm:country": "United States",
"xdm:countryCode": "US",
"schema:latitude": 37.3382,
"schema:longitude": -121.8863,
"xdm:status": "active",
"xdm:lastVerifiedDate": "2018-01-02"
},
"xdm:workEmail": {
"xdm:primary": false,
"xdm:address": "jsmith@xyzinc.com",
"xdm:label": "John Smith",
"xdm:type": "work",
"xdm:status": "active"
},
"xdm:workPhone": {
"xdm:primary": true,
"xdm:number": "1-408-888-8888",
"xdm:status": "active"
},
"xdm:assistantDetails": {
"xdm:name": {
"xdm:firstName": "John",
"xdm:middleName": "S",
"xdm:lastName": "Doe",
"xdm:fullName": "John S. Doe"
},
"xdm:phone": {
"xdm:primary": true,
"xdm:number": "1-408-888-7777",
"xdm:status": "active"
}
},
"xdm:reportsToID": "RPT10000",
"xdm:departments": [
"Finance",
"Marketing"
],
"xdm:jobTitle": "Account manager"
}
]
}