Add parentSourceMeta entity to AJO entity mixins - #2220
Merged
Conversation
Captures source entity metadata (Campaign, Journey, etc.) that an AJO entity originated from, including source id, type, version, and action id.
hitesh-bhanushali
approved these changes
Jul 30, 2026
| "journey": "Journey", | ||
| "b2bAccountJourneys": "B2B Account Journeys", | ||
| "b2bLeadJourneys": "B2B Lead Journeys", | ||
| "smbCampaign": "SMB Campaign" |
There was a problem hiding this comment.
lets add haloCampaign as well
Addresses review feedback on PR adobe#2220 to include haloCampaign as a documented source type value. Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
GirishPore
approved these changes
Jul 30, 2026
This file contains hidden or 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
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
Adds a new
parentSourceMetaentity to the AJO entity mixins, capturing metadata about the source entity (Campaign, Journey, etc.) that an AJO entity originated from — source id, type,version id, and action id. Non-breaking, additive only.
Motivation
AJO entities need to record where a message originated (the parent source Campaign/Journey) for downstream reporting and lineage. This fieldgroup groups the source identifiers under a
single
parentSourceMetaobject.Changes
extensions/adobe/experience/customerJourneyManagement/ajo-entity-mixins.schema.json— newparentSourceMetaobject withsourceID,sourceType(soft enum),sourceVersionID, andsourceActionID.extensions/adobe/experience/customerJourneyManagement/ajo-entity-mixins.example.1.json— example populated forparentSourceMeta.Validation
npm test— 2408 passingnpm run lint— cleannpm run incompatibility-check— no new failures introduced (additivemeta:enumvalue only; the pre-existingsubtenant.schema.jsonfailure onmasteris unrelated to this change)Breaking changes
None.