Add Semantic Signal Details experience event field group - #2245
Open
AkankshaN wants to merge 4 commits into
Open
Add Semantic Signal Details experience event field group#2245AkankshaN wants to merge 4 commits into
AkankshaN wants to merge 4 commits into
Conversation
AkankshaN
marked this pull request as ready for review
August 20, 2026 19:22
Prashanthi-Ram
requested changes
Aug 20, 2026
| "$schema": "http://json-schema.org/draft-06/schema#", | ||
| "title": "Semantic Signal Details", | ||
| "type": "object", | ||
| "meta:extensible": true, |
Collaborator
There was a problem hiding this comment.
Please also add to the fieldgroup. meta:abstract: true.
meta:abstract : true means you can't directly instantiate the JSON as an XDM schema
For example, you can't use classes, field groups, data types directly as XDM schema and load data against it. These are abstract components, and you only can refer them from a schema to create an instance
It is required on every global FG, classes, data types
Prashanthi-Ram
approved these changes
Aug 25, 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
Closes #2244
Adds a new experimental, system-generated field group,
Semantic Signal Details, that captures a qualified semantic signal extracted from an unstructured source interaction (conversation, session, or document). Extendsexperienceevent. Non-breaking, additive-only change — no existing schemas are modified.Motivation
Conversational/agentic experiences (chat, voice, document interactions) need a standard way to record derived semantic signals — e.g. intent or preference qualifiers scored by an extraction model — as system-generated telemetry on an ExperienceEvent.
Changes
components/fieldgroups/agentic/semantic-signal-details.schema.json— new field group definingxdm:semanticSignal(markedmeta:usereditable: false), withxdm:name,xdm:group,xdm:score,xdm:strength(hard enum:low/medium/high, documented viameta:enum),xdm:channel(reuses existingchannels/channeldatatype),xdm:sourceId,xdm:definitionVersion,xdm:extractionModelVersion.meta:status: experimental,meta:intendedToExtend: experienceevent.components/fieldgroups/agentic/semantic-signal-details.example.1.json— new example validating the schema.Validation
npm test— 2417 passing, 1 pendingnpm run lint— cleannpm run validate— 58 failures, identical tomasterbaseline (zero new failures)npm run incompatibility-check— cleanBreaking changes
None.