Skip to content

Commit

Permalink
Merge pull request #1620 from Alexx-G/cjm-surfaces-fieldgroup
Browse files Browse the repository at this point in the history
Add fieldgroups to support Surfaces in Experience Event
  • Loading branch information
mjasrotia authored Sep 6, 2022
2 parents 60719b9 + 2a6f1a2 commit 5d0797d
Show file tree
Hide file tree
Showing 2 changed files with 45 additions and 0 deletions.
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
{
"https://ns.adobe.com/experience/customerJourneyManagement/surfaces": [
"web://adobe.com/"
]
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,40 @@
{
"meta:license": [
"Copyright 2022 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/experience/customerJourneyManagement/surfaces",
"$schema": "http://json-schema.org/draft-06/schema#",
"title": "Adobe CJM ExperienceEvent - Surfaces",
"description": "Surfaces for the Adobe CJM ExperienceEvent.",
"type": "object",
"meta:extensible": true,
"meta:abstract": true,
"meta:intendedToExtend": ["https://ns.adobe.com/xdm/context/experienceevent"],
"definitions": {
"surfaces": {
"properties": {
"https://ns.adobe.com/experience/customerJourneyManagement/surfaces": {
"title": "Surfaces",
"type": "array",
"items": { "type": "string" },
"description": "Array of Surface for AJO Inbound channel delivery"
}
}
}
},
"required": [
"https://ns.adobe.com/experience/customerJourneyManagement/surfaces"
],
"allOf": [
{
"$ref": "https://ns.adobe.com/xdm/common/extensible#/definitions/@context"
},
{
"$ref": "#/definitions/surfaces"
}
],
"meta:status": "stable"
}

0 comments on commit 5d0797d

Please sign in to comment.