Add meta:tags to Paid Media class for Schema Editor class picker visibility - #2228
Open
ejsuncy wants to merge 1 commit into
Open
Add meta:tags to Paid Media class for Schema Editor class picker visibility#2228ejsuncy wants to merge 1 commit into
ejsuncy wants to merge 1 commit into
Conversation
…lity The Paid Media class was missing meta:tags, so it did not appear in the AEP Schema Editor class picker even though it exists in the registry global container and works via the Schema Registry API. Every UI-browsable class (profile, experienceevent, summarymetrics) carries meta:tags.industry; the untagged classes are the internal/system set. Add industry:["all"] so the class is offered in the picker. Metadata-only, additive, non-breaking. Closes adobe#2227 Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
ejsuncy
marked this pull request as ready for review
August 4, 2026 22:52
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
Closes #2227
Adds
meta:tags(industry: ["all"]) to thePaid Mediaclass so it is offered in the AEP Schema Editor class picker. Metadata-only, additive, non-breaking.Motivation
The
Paid Mediaclass (https://ns.adobe.com/xdm/classes/paid-media) does not appear in the Schema Editor class picker, even though it exists in the Schema Registry global container and schemas built on it work when created via the Schema Registry API.Root cause: the class was missing
meta:tags. Every XDM class that surfaces in the UI class picker carries an industry vertical tag —profile,experienceevent, andsummarymetricsall havemeta:tags.industry. The classes that lackmeta:tagsare the internal/system classes (campaign,consentpolicy,segmentdefinition,graphs,weather, …) pluspaid-media. The picker groups/filters available global classes by industry vertical, so an untagged global class has no bucket to render under: reachable by$idvia API, absent from the UI browse list.Changes
components/classes/paid-media.schema.json— add"meta:tags": { "industry": ["all"] }Validation
npm test— 2408 passingnpm run lint— cleannpm run validate schemas/paid-media components/classes— 74/74 passed, 0 failednpm run incompatibility-check— cleanBreaking changes
None. Metadata-only additive change; no properties, types, or enum values changed, no example updates required.