forked from adobe/xdm
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathexperienceevent-stitching.schema.json
66 lines (66 loc) · 2.42 KB
/
experienceevent-stitching.schema.json
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
{
"meta:license": [
"Copyright 2022 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/experienceevent-stitching",
"$schema": "http://json-schema.org/draft-06/schema#",
"title": "Stitching Fields",
"type": "object",
"meta:extensible": true,
"meta:abstract": true,
"meta:tags": {
"industry": [
"all"
]
},
"meta:intendedToExtend": [
"https://ns.adobe.com/xdm/context/experienceevent"
],
"description": "Values computed by the Stitching service, which are meant to provide a more accurate customer journey.",
"definitions": {
"experienceevent-stitching": {
"properties": {
"xdm:stitchedID": {
"title": "Stitched ID",
"$ref": "https://ns.adobe.com/xdm/context/identity",
"description": "Identifier computed by the Stitching service, containing a pair of (id, namespace) that uniquely identifies an individual to which this event belongs.",
"meta:titleId": "experienceevent-stitching##xdm:stitchedID##title##54581",
"meta:descriptionId": "experienceevent-stitching##xdm:stitchedID##description##53511"
}
}
}
},
"allOf": [
{
"$ref": "https://ns.adobe.com/xdm/common/extensible#/definitions/@context"
},
{
"$ref": "#/definitions/experienceevent-stitching"
}
],
"meta:status": "stable",
"meta:createdDate": "2022-03-24",
"meta:titleId": "experienceevent-stitching##title##22731",
"meta:descriptionId": "experienceevent-stitching##description##79081",
"examples": [
{
"xdm:stitchedID": {
"xdm:id": "[email protected]",
"xdm:namespace": {
"xdm:code": "EMAIL"
}
}
},
{
"xdm:stitchedID": {
"xdm:id": "5D0CC0572CE5A754-7164B1DCC49F9A5B",
"xdm:namespace": {
"xdm:code": "AVID"
}
}
}
]
}