forked from adobe/xdm
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathprofile-owning-entities.schema.json
More file actions
60 lines (60 loc) · 2.66 KB
/
profile-owning-entities.schema.json
File metadata and controls
60 lines (60 loc) · 2.66 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
{
"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-owning-entities",
"$schema": "http://json-schema.org/draft-06/schema#",
"title": "Profile owning entity details",
"type": "object",
"meta:extensible": true,
"meta:abstract": true,
"meta:intendedToExtend": [
"https://ns.adobe.com/xdm/context/profile"
],
"description": "Geographical unit information such as labels, organization name, and geographical unit name.",
"definitions": {
"profile-owning-entities": {
"properties": {
"xdm:orgUnit": {
"title": "Organizational unit",
"$ref": "https://ns.adobe.com/xdm/common/orgunit",
"description": "The unit within the organization owning the profile. This can be used to reference the organization details maintained in another dataset.",
"meta:titleId": "profile-owning-entities##xdm:orgUnit##title##20321",
"meta:descriptionId": "profile-owning-entities##xdm:orgUnit##description##30781"
},
"xdm:geoUnit": {
"title": "Geographical unit",
"$ref": "https://ns.adobe.com/xdm/common/geounit",
"description": "The geographical unit within the organization owning the profile. This can be used to reference the geographical information maintained in another dataset.",
"meta:titleId": "profile-owning-entities##xdm:geoUnit##title##91451",
"meta:descriptionId": "profile-owning-entities##xdm:geoUnit##description##30521"
}
}
}
},
"allOf": [
{
"$ref": "https://ns.adobe.com/xdm/common/extensible#/definitions/@context"
},
{
"$ref": "#/definitions/profile-owning-entities"
}
],
"meta:status": "stable",
"meta:createdDate": "2020-08-10",
"meta:titleId": "profile-owning-entities##title##63601",
"meta:descriptionId": "profile-owning-entities##description##80851",
"examples": [
{
"xdm:orgUnit": {
"@id": "https://data.adobe.io/org-apparals-men"
},
"xdm:geoUnit": {
"@id": "https://data.adobe.io/geo-france"
}
}
]
}