-
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.
- Loading branch information
Showing
72 changed files
with
2,897 additions
and
1,403 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
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
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
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
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
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
6 changes: 6 additions & 0 deletions
6
components/fieldgroups/profile/profile-responses.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,6 @@ | ||
{ | ||
"xdm:emailResponse": { | ||
"xdm:emailBouncedDate": "2020-04-11T05:05:05Z", | ||
"xdm:emailBouncedReason": "Mail Does not exist" | ||
} | ||
} |
50 changes: 50 additions & 0 deletions
50
components/fieldgroups/profile/profile-responses.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,50 @@ | ||
{ | ||
"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/profile-responses", | ||
"$schema": "http://json-schema.org/draft-06/schema#", | ||
"title": "Phone Responses (Experimental, please expect breaking changes)", | ||
"type": "object", | ||
"meta:extensible": true, | ||
"meta:abstract": true, | ||
"meta:intendedToExtend": ["https://ns.adobe.com/xdm/context/profile"], | ||
"description": "Use this to add various profile responses like email, postal mail etc(Experimental, please expect breaking changes).", | ||
"definitions": { | ||
"profile-response": { | ||
"properties": { | ||
"xdm:emailResponse": { | ||
"type": "object", | ||
"title": "Email responses", | ||
"properties": { | ||
"xdm:isEmailBounced": { | ||
"title": "Email Bounced Indicator", | ||
"type": "boolean", | ||
"description": "Email bounced Indicator." | ||
}, | ||
"xdm:emailBouncedDate": { | ||
"title": "Email Bounced Date", | ||
"type": "string", | ||
"format": "date-time", | ||
"description": "Email bounced date." | ||
}, | ||
"xdm:emailBouncedReason": { | ||
"title": "Email Bounced Reason", | ||
"type": "string", | ||
"description": "Email bounced reason." | ||
} | ||
} | ||
} | ||
} | ||
} | ||
}, | ||
"allOf": [ | ||
{ | ||
"$ref": "#/definitions/profile-response" | ||
} | ||
], | ||
"meta:status": "experimental" | ||
} |
5 changes: 5 additions & 0 deletions
5
components/fieldgroups/profile/profile-source-system-markers.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 @@ | ||
{ | ||
"xdm:sourceSystemName": "sales force", | ||
"xdm:recordTypeID": "type", | ||
"xdm:recordStatus": "created" | ||
} |
49 changes: 49 additions & 0 deletions
49
components/fieldgroups/profile/profile-source-system-markers.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,49 @@ | ||
{ | ||
"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/profile-source-system-markers", | ||
"$schema": "http://json-schema.org/draft-06/schema#", | ||
"title": "Phone Source System Markers (Experimental, please expect breaking changes)", | ||
"type": "object", | ||
"meta:extensible": true, | ||
"meta:abstract": true, | ||
"meta:intendedToExtend": ["https://ns.adobe.com/xdm/context/profile"], | ||
"description": "Use this to add source system specific markers or record traits for a profile fragment (Experimental, please expect breaking changes).", | ||
"definitions": { | ||
"profile-source": { | ||
"properties": { | ||
"xdm:sourceSystemName": { | ||
"title": "Source System Name", | ||
"type": "string", | ||
"description": "Source system name where the profile fragment is ingested from." | ||
}, | ||
"xdm:recordTypeID": { | ||
"title": "Record type ID", | ||
"type": "string", | ||
"description": "Record type identifier." | ||
}, | ||
"xdm:recordStatus": { | ||
"title": "Record Status", | ||
"type": "string", | ||
"description": "Record status." | ||
}, | ||
"xdm:recordSource": { | ||
"title": "Record Source`", | ||
"type": "string", | ||
"description": "Record source." | ||
} | ||
}, | ||
"required": ["xdm:sourceSystemName"] | ||
} | ||
}, | ||
"allOf": [ | ||
{ | ||
"$ref": "#/definitions/profile-source" | ||
} | ||
], | ||
"meta:status": "experimental" | ||
} |
Oops, something went wrong.