forked from adobe/xdm
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathprofile-source-system-markers.schema.json
More file actions
70 lines (70 loc) · 3.2 KB
/
profile-source-system-markers.schema.json
File metadata and controls
70 lines (70 loc) · 3.2 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
{
"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.",
"meta:titleId": "profile-source-system-markers##xdm:sourceSystemName##title##29811",
"meta:descriptionId": "profile-source-system-markers##xdm:sourceSystemName##description##21791"
},
"xdm:recordTypeID": {
"title": "Record type ID",
"type": "string",
"description": "Record type identifier.",
"meta:titleId": "profile-source-system-markers##xdm:recordTypeID##title##2031",
"meta:descriptionId": "profile-source-system-markers##xdm:recordTypeID##description##16351"
},
"xdm:recordStatus": {
"title": "Record Status",
"type": "string",
"description": "Record status.",
"meta:titleId": "profile-source-system-markers##xdm:recordStatus##title##9581",
"meta:descriptionId": "profile-source-system-markers##xdm:recordStatus##description##27301"
},
"xdm:recordSource": {
"title": "Record Source`",
"type": "string",
"description": "Record source.",
"meta:titleId": "profile-source-system-markers##xdm:recordSource##title##70531",
"meta:descriptionId": "profile-source-system-markers##xdm:recordSource##description##34221"
}
},
"required": [
"xdm:sourceSystemName"
]
}
},
"allOf": [
{
"$ref": "#/definitions/profile-source"
}
],
"meta:status": "experimental",
"meta:titleId": "profile-source-system-markers##title##58291",
"meta:descriptionId": "profile-source-system-markers##description##38771",
"examples": [
{
"xdm:sourceSystemName": "sales force",
"xdm:recordTypeID": "type",
"xdm:recordStatus": "created"
}
]
}