-
Notifications
You must be signed in to change notification settings - Fork 325
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add fieldgroups to support Surfaces in Experience Event
- Loading branch information
1 parent
1501234
commit 706f2e0
Showing
2 changed files
with
47 additions
and
0 deletions.
There are no files selected for viewing
5 changes: 5 additions & 0 deletions
5
extensions/adobe/experience/customerJourneyManagement/surfaces.example.1.json
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
{ | ||
"https://ns.adobe.com/experience/customerJourneyManagement/surfaces": [ | ||
"web://adobe.com/" | ||
] | ||
} |
42 changes: 42 additions & 0 deletions
42
extensions/adobe/experience/customerJourneyManagement/surfaces.schema.json
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,42 @@ | ||
{ | ||
"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": { | ||
|
||
}, | ||
"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" | ||
} |