forked from adobe/xdm
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathperson-identifier.schema.json
More file actions
48 lines (48 loc) · 1.89 KB
/
person-identifier.schema.json
File metadata and controls
48 lines (48 loc) · 1.89 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
{
"meta:license": [
"Copyright 2021 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/person-identifier",
"$schema": "http://json-schema.org/draft-06/schema#",
"title": "Person Identifier",
"type": "object",
"meta:intendedToExtend": [],
"description": "Used to store Person ID for an entity.",
"definitions": {
"person-id": {
"properties": {
"xdm:personID": {
"title": "Person ID",
"description": "Person unique identifier.",
"type": "string",
"meta:titleId": "person-identifier##xdm:personID##title##75321",
"meta:descriptionId": "person-identifier##xdm:personID##description##61151"
},
"xdm:personKey": {
"title": "Person Key",
"description": "Unique composite identifier of the Person.",
"$ref": "https://ns.adobe.com/xdm/datatypes/b2b-source",
"meta:titleId": "person-identifier##xdm:personKey##title##34821",
"meta:descriptionId": "person-identifier##xdm:personKey##description##12581"
}
}
}
},
"allOf": [
{
"$ref": "#/definitions/person-id"
}
],
"meta:status": "stable",
"meta:createdDate": "2021-02-19",
"meta:titleId": "person-identifier##title##62361",
"meta:descriptionId": "person-identifier##description##76761",
"examples": [
{
"xdm:personID": "gjukoyi1234"
}
]
}