-
Notifications
You must be signed in to change notification settings - Fork 323
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'master' into update-v0.94
- Loading branch information
Showing
8 changed files
with
623 additions
and
243 deletions.
There are no files selected for viewing
Large diffs are not rendered by default.
Oops, something went wrong.
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
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,57 @@ | ||
{ | ||
"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/segmentmembershipitem", | ||
"$schema": "http://json-schema.org/draft-06/schema#", | ||
"title": "Segment Membership Item", | ||
"type": "object", | ||
"description": "List item that contains details of segment membership combined the identities to which the membership applies", | ||
"definitions": { | ||
"membershipIdentities": { | ||
"properties": { | ||
"xdm:identities": { | ||
"title": "All User Identities", | ||
"type": "array", | ||
"items": { | ||
"$ref": "https://ns.adobe.com/xdm/context/identity" | ||
}, | ||
"minItems": 1, | ||
"description": "Array of Identities. Condensed, normalized encapsulation of all end user identifiers." | ||
} | ||
} | ||
} | ||
}, | ||
"allOf": [ | ||
{ | ||
"$ref": "https://ns.adobe.com/xdm/context/segmentmembership" | ||
}, | ||
{ | ||
"$ref": "#/definitions/membershipIdentities" | ||
} | ||
], | ||
"meta:status": "experimental", | ||
"examples": [ | ||
{ | ||
"xdm:segmentID": { | ||
"@id": "https://data.adobe.io/entities/identity/92312748749128", | ||
"xdm:namespace": { | ||
"xdm:code": "AAM" | ||
} | ||
}, | ||
"xdm:profileStitchID": { | ||
"@id": "https://data.adobe.io/entities/profileStitchIdentity/1", | ||
"xdm:namespace": { | ||
"xdm:code": "AAM" | ||
}, | ||
"xdm:lastQualificationTime": "2017-09-26T15:52:25+00:00", | ||
"xdm:version": "1.0", | ||
"xdm:validUntil": "2017-12-26T15:52:25+00:00", | ||
"xdm:status": "realized" | ||
} | ||
} | ||
] | ||
} |
Oops, something went wrong.