-
Notifications
You must be signed in to change notification settings - Fork 322
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #444 from harleensahni/add-profile-stitch-to-segme…
…nt-membership profile stitch
- Loading branch information
Showing
7 changed files
with
195 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
{ | ||
"xdm:profileStitchID": { | ||
"@id": "https://data.adobe.io/entities/profileStitchIdentity/1", | ||
"xdm:namespace": { | ||
"xdm:code": "AAM" | ||
} | ||
}, | ||
"xdm:version": "1.0", | ||
"xdm:endUserIds": { | ||
"https://ns.adobe.com/experience/mcid": { | ||
"xdm:id": "https://data.adobe.io/entities/identity/92312748749128", | ||
"additionalIDs": [ | ||
"https://data.adobe.io/entities/identity/62312748749321", | ||
"https://data.adobe.io/entities/identity/49312748749132" | ||
], | ||
"xdm:namespace": { | ||
"xdm:code": "ECID" | ||
} | ||
} | ||
} | ||
} | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,40 @@ | ||
{ | ||
"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/profileStitch", | ||
"$schema": "http://json-schema.org/draft-06/schema#", | ||
"title": "Profile Stitch", | ||
"type": "object", | ||
"description": "Details about the ids that were joined by profile stitching.", | ||
"definitions": { | ||
"profileStitch": { | ||
"properties": { | ||
"xdm:profileStitchID": { | ||
"title": "Profile Stitch ID", | ||
"$ref": "https://ns.adobe.com/xdm/context/profileStitchIdentity", | ||
"description": "The identity of the segment or snapshot definition in with the domain of the specific system that processes that type of segment." | ||
}, | ||
"xdm:version": { | ||
"title": "Version", | ||
"type": "string", | ||
"description": "The version of the profile stitch definition used. Useful for debugging." | ||
}, | ||
"xdm:endUserIDs": { | ||
"title": "End User IDs", | ||
"$ref": "https://ns.adobe.com/xdm/context/enduserids", | ||
"description": "Condensed, normalized encapsulation of all end user identifiers." | ||
} | ||
} | ||
} | ||
}, | ||
"allOf": [ | ||
{ | ||
"$ref": "#/definitions/profileStitch" | ||
} | ||
], | ||
"meta:status": "experimental" | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
{ | ||
"@id": "https://data.adobe.io/entities/profileStitchIdentity/1", | ||
"xdm:namespace": { | ||
"xdm:code": "AAM" | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,42 @@ | ||
{ | ||
"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/profileStitchIdentity", | ||
"$schema": "http://json-schema.org/draft-06/schema#", | ||
"title": "Identity", | ||
"type": "object", | ||
"description": "ProfileStitchIdentity is used to clearly distinguish Profile Stitching from multiple sources. ProfileStitchIdentity is established by an Profile Stitch identity provider, which itself is referenced in the `namespace` attribute. Within each `namespace`, the profileStitchIdentity is unique.", | ||
"definitions": { | ||
"profileStitchIdentity": { | ||
"properties": { | ||
"@id": { | ||
"title": "Identifier", | ||
"type": "string", | ||
"format": "uri", | ||
"description": "Identity of the Profile Stitch in the related namespace." | ||
}, | ||
"xdm:namespace": { | ||
"title": "Namespace", | ||
"$ref": "https://ns.adobe.com/xdm/context/namespace", | ||
"description": "The namespace associated with the `xid` attribute." | ||
}, | ||
"xdm:xid": { | ||
"title": "Experience Identifier", | ||
"type": "string", | ||
"description": "When present, this value represents a cross-namespace identifier that is unique across all namespace-scoped identifiers in all namespaces." | ||
} | ||
} | ||
} | ||
}, | ||
"allOf": [ | ||
{ | ||
"$ref": "#/definitions/profileStitchIdentity" | ||
} | ||
], | ||
"meta:status": "experimental" | ||
} | ||
|