diff --git a/schemas/context/experienceevent.example.1.json b/schemas/context/experienceevent.example.1.json index 3b47b4999..59380f8c1 100644 --- a/schemas/context/experienceevent.example.1.json +++ b/schemas/context/experienceevent.example.1.json @@ -115,7 +115,7 @@ "xdm:marketing": { "xdm:trackingCode": "marketingcampaign111" }, - "xdm:profileStitching": [ + "xdm:profileStitch": [ { "xdm:profileStitchID": { "@id": "https://data.adobe.io/entities/profileStitchIdentity/1", diff --git a/schemas/context/experienceevent.schema.json b/schemas/context/experienceevent.schema.json index b624ccfb7..883cd030d 100644 --- a/schemas/context/experienceevent.schema.json +++ b/schemas/context/experienceevent.schema.json @@ -111,14 +111,20 @@ "$ref": "https://ns.adobe.com/xdm/context/media", "description": "The media activity information related to the experience event" }, - "xdm:profileStitching" : { - "title": "Profile Stitching", + "xdm:profileStitch" : { + "title": "Profile Stitch", "description": "Details about the ids that were joined by profile stitching.", "type" : "array", "items" : { "$ref": "https://ns.adobe.com/xdm/context/profileStitch" } }, + "xdm:profileStitching" : { + "meta:status": "deprecated", + "title": "Profile Stitching", + "description": "Details about the ids that were joined by profile stitching. Deprecated, use `xdm:profileStitch`", + "$ref": "https://ns.adobe.com/xdm/context/profileStitch" + }, "xdm:segmentMemberships": { "title": "Segment Memberships", "description": "The segments associated with this experience event", diff --git a/schemas/context/profilestitch.schema.json b/schemas/context/profilestitch.schema.json index 732440702..f3e41334c 100644 --- a/schemas/context/profilestitch.schema.json +++ b/schemas/context/profilestitch.schema.json @@ -31,6 +31,12 @@ }, "minItems": 1, "description": "Array of Identities. Condensed, normalized encapsulation of all end user identifiers." + }, + "xdm:endUserIDs": { + "meta:status": "deprecated", + "title": "End User IDs", + "$ref": "https://ns.adobe.com/xdm/context/enduserids", + "description": "Condensed, normalized encapsulation of all end user identifiers. Deprecated" } } } diff --git a/schemas/context/segmentmembershipitem.schema.json b/schemas/context/segmentmembershipitem.schema.json index ac2e592b2..256221992 100644 --- a/schemas/context/segmentmembershipitem.schema.json +++ b/schemas/context/segmentmembershipitem.schema.json @@ -15,6 +15,17 @@ "properties": { "xdm:profileStitchID": { "$ref": "https://ns.adobe.com/xdm/context/profileStitchIdentity" + }, + "xdm:identities": { + "meta:status": "deprecated", + "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. Deprecated" } } }