-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request adobe#1454 from rushinshah7942/B2BAEP-2658
B2BAEP-2658 Marketo Activities - Expand XDM for Change Revenue Stage
- Loading branch information
Showing
3 changed files
with
83 additions
and
0 deletions.
There are no files selected for viewing
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
1 change: 1 addition & 0 deletions
1
components/fieldgroups/experience-event/events/revenueStageChanged.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 @@ | ||
{} |
81 changes: 81 additions & 0 deletions
81
components/fieldgroups/experience-event/events/revenueStageChanged.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,81 @@ | ||
{ | ||
"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/xdm/mixins/events/revenueStageChanged", | ||
"$schema": "http://json-schema.org/draft-06/schema#", | ||
"title": "Revenue Stage Changed", | ||
"type": "object", | ||
"meta:tags": { | ||
"b2bSchema": true | ||
}, | ||
"meta:conditionalField": "xdm:eventType", | ||
"meta:conditionalValue": "leadOperation.revenueStageChanged", | ||
"meta:intendedToExtend": [ | ||
"https://ns.adobe.com/xdm/context/experienceevent" | ||
], | ||
"description": "Use to capture details when revenue model stage for a person changes.", | ||
"definitions": { | ||
"revenueStageChanged": { | ||
"properties": { | ||
"xdm:leadOperation": { | ||
"title": "Lead Operation", | ||
"type": "object", | ||
"properties": { | ||
"xdm:changeRevenueStage": { | ||
"title": "Change Revenue Stage", | ||
"type": "object", | ||
"properties": { | ||
"xdm:modelKey": { | ||
"title": "Model Key", | ||
"description": "Unique composite identifier for the model of the Revenue Cycle Modeler.", | ||
"$ref": "https://ns.adobe.com/xdm/datatypes/b2b-source" | ||
}, | ||
"xdm:modelName": { | ||
"title": "Model Name", | ||
"type": "string", | ||
"description": "Name of the model for Revenue Cycle Modeler." | ||
}, | ||
"xdm:newStageKey": { | ||
"title": "New Stage Key", | ||
"description": "Unique composite identifier of the stage person assigned to.", | ||
"$ref": "https://ns.adobe.com/xdm/datatypes/b2b-source" | ||
}, | ||
"xdm:newStageName": { | ||
"title": "New Stage Name", | ||
"type": "string", | ||
"description": "Name of the new stage person assigned to." | ||
}, | ||
"xdm:previousStageKey": { | ||
"title": "Previous Stage Key", | ||
"description": "Unique composite identifier of the previous stage person assigned from.", | ||
"$ref": "https://ns.adobe.com/xdm/datatypes/b2b-source" | ||
}, | ||
"xdm:previousStageName": { | ||
"title": "Previous Stage Name", | ||
"type": "string", | ||
"description": "Name of the previous stage person assigned from." | ||
}, | ||
"xdm:reason": { | ||
"title": "Reason", | ||
"type": "string", | ||
"description": "Reason to indicate changes in model stages for a person." | ||
} | ||
} | ||
} | ||
} | ||
} | ||
} | ||
} | ||
}, | ||
"allOf": [ | ||
{ | ||
"$ref": "#/definitions/revenueStageChanged" | ||
} | ||
], | ||
"meta:status": "experimental", | ||
"meta:createdDate": "2022-02-15" | ||
} |