-
Notifications
You must be signed in to change notification settings - Fork 1
/
experienceevent-claim-details.schema.json
144 lines (144 loc) · 7.01 KB
/
experienceevent-claim-details.schema.json
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
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
{
"meta:license": [
"Copyright 2020 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/experienceevent-claim-details",
"$schema": "http://json-schema.org/draft-06/schema#",
"title": "Claim Process",
"type": "object",
"meta:extensible": true,
"meta:abstract": true,
"meta:tags": {
"industry": [
"financial_services",
"health_and_life_sciences",
"high_tech"
]
},
"meta:intendedToExtend": [
"https://ns.adobe.com/xdm/context/experienceevent"
],
"description": "Claim details such as claim policy ID and claim creation steps.",
"definitions": {
"claim-details": {
"properties": {
"xdm:claims": {
"type": "object",
"description": "Captures fields related to a claim when initated by a customer.",
"properties": {
"xdm:ID": {
"title": "Claims ID",
"type": "string",
"description": "Unique identifier for the claim.",
"meta:titleId": "experienceevent-claim-details##xdm:ID##title##82901",
"meta:descriptionId": "experienceevent-claim-details##xdm:ID##description##81161"
},
"xdm:startDate": {
"title": "Start Date",
"type": "string",
"format": "date-time",
"description": "Date the claim was successfully submitted.",
"meta:titleId": "experienceevent-claim-details##xdm:startDate##title##47731",
"meta:descriptionId": "experienceevent-claim-details##xdm:startDate##description##3321"
},
"xdm:status": {
"title": "Status",
"type": "string",
"enum": [
"initiated",
"in progress",
"approved",
"declined"
],
"description": "Captures the status of the claim for any given point in the application process.",
"meta:titleId": "experienceevent-claim-details##xdm:status##title##72781",
"meta:descriptionId": "experienceevent-claim-details##xdm:status##description##93101",
"meta:enum": {
"initiated": "Initiated",
"in progress": "In Progress",
"approved": "Approved",
"declined": "Declined"
}
},
"xdm:type": {
"title": "Type",
"type": "string",
"enum": [
"homeowners",
"automobile",
"renters",
"third party automobile",
"third party home",
"life",
"health",
"dental",
"flood",
"earthquake"
],
"description": "Type of claim submitted.",
"meta:titleId": "experienceevent-claim-details##xdm:type##title##71331",
"meta:descriptionId": "experienceevent-claim-details##xdm:type##description##24821",
"meta:enum": {
"homeowners": "Homeowners",
"automobile": "Automobile",
"renters": "Renters",
"third party automobile": "Third Party Automobile",
"third party home": "Third Party Home",
"life": "Life",
"health": "Health",
"dental": "Dental",
"flood": "Flood",
"earthquake": "Earthquake"
}
},
"xdm:policyID": {
"title": "Policy ID",
"type": "string",
"description": "Policy Identifier.",
"meta:titleId": "experienceevent-claim-details##xdm:policyID##title##9171",
"meta:descriptionId": "experienceevent-claim-details##xdm:policyID##description##73051"
},
"xdm:benefitAmount": {
"title": "Benefit Amount",
"$ref": "https://ns.adobe.com/xdm/datatypes/currency",
"description": "Captures the benefit amount.",
"meta:titleId": "experienceevent-claim-details##xdm:benefitAmount##title##2261",
"meta:descriptionId": "experienceevent-claim-details##xdm:benefitAmount##description##21181"
},
"xdm:steps": {
"title": "Steps",
"$ref": "https://ns.adobe.com/xdm/datatypes/tool-usage",
"description": "Extension of toolUsage data type.",
"meta:status": "deprecated",
"meta:titleId": "experienceevent-claim-details##xdm:steps##title##99191",
"meta:descriptionId": "experienceevent-claim-details##xdm:steps##description##1181"
}
},
"meta:descriptionId": "experienceevent-claim-details##xdm:claims##description##19691"
}
}
}
},
"allOf": [
{
"$ref": "#/definitions/claim-details"
}
],
"meta:status": "stable",
"meta:createdDate": "2021-02-19",
"meta:titleId": "experienceevent-claim-details##title##86181",
"meta:descriptionId": "experienceevent-claim-details##description##24181",
"examples": [
{
"xdm:claims": {
"xdm:ID": "P102819201D",
"xdm:startDate": "2021-03-04T15:52:25+00:00",
"xdm:status": "approved",
"xdm:type": "automobile"
}
}
]
}