Skip to content

Commit

Permalink
Merge pull request adobe#1454 from rushinshah7942/B2BAEP-2658
Browse files Browse the repository at this point in the history
B2BAEP-2658 Marketo Activities - Expand XDM for Change Revenue Stage
  • Loading branch information
prabhum2 authored Feb 23, 2022
2 parents 6e7e490 + 3f610e1 commit 3aba5cf
Show file tree
Hide file tree
Showing 3 changed files with 83 additions and 0 deletions.
1 change: 1 addition & 0 deletions components/behaviors/time-series.schema.json
Original file line number Diff line number Diff line change
Expand Up @@ -70,6 +70,7 @@
"listOperation.removeFromList": "List Operation Remove From List",
"listOperation.addToList": "List Operation Add To List",
"leadOperation.scoreChanged": "Lead Operation Score Changed",
"leadOperation.revenueStageChanged": "Lead Operation Revenue Stage changed",
"leadOperation.statusInCampaignProgressionChanged": "Lead Operation Status In Campaign Progression Changed",
"leadOperation.interestingMoment": "Lead Operation Interesting Moment",
"leadOperation.newLead": "Lead Operation New Lead",
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
{}
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"
}

0 comments on commit 3aba5cf

Please sign in to comment.