-
Notifications
You must be signed in to change notification settings - Fork 1
/
experienceevent-loan-application-details.schema.json
130 lines (130 loc) · 7.22 KB
/
experienceevent-loan-application-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
{
"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-loan-application-details",
"$schema": "http://json-schema.org/draft-06/schema#",
"title": "Loan Application Details",
"type": "object",
"meta:extensible": true,
"meta:abstract": true,
"meta:tags": {
"industry": [
"financial_services",
"automotive"
]
},
"meta:intendedToExtend": [
"https://ns.adobe.com/xdm/context/experienceevent"
],
"description": "Loan application details such as ID, type, approval, and status.",
"definitions": {
"loan-application-details": {
"properties": {
"xdm:personalFinances": {
"type": "object",
"description": "Financial details including transactions, accounts, and applications.",
"properties": {
"xdm:loanApplicationDetails": {
"type": "object",
"properties": {
"xdm:loan": {
"title": "Loan",
"$ref": "https://ns.adobe.com/xdm/datatypes/form-applications",
"description": "Extension of form application data type.",
"meta:titleId": "experienceevent-loan-application-details##xdm:loan##title##15091",
"meta:descriptionId": "experienceevent-loan-application-details##xdm:loan##description##24641"
}
},
"xdm:annualPercentageRate": {
"title": "Annual Percentage Rate",
"type": "number",
"description": "Records the annual percentage rate of the loan.",
"meta:titleId": "experienceevent-loan-application-details##xdm:annualPercentageRate##title##68141",
"meta:descriptionId": "experienceevent-loan-application-details##xdm:annualPercentageRate##description##7181"
},
"xdm:downpayment": {
"title": "Downpayment",
"$ref": "https://ns.adobe.com/xdm/datatypes/currency",
"description": "Captures the downpayment amount of loan.",
"meta:titleId": "experienceevent-loan-application-details##xdm:downpayment##title##33291",
"meta:descriptionId": "experienceevent-loan-application-details##xdm:downpayment##description##3601"
},
"xdm:startDate": {
"title": "Start Date",
"type": "string",
"format": "date-time",
"description": "Records the anticipated start date of the loan.",
"meta:titleId": "experienceevent-loan-application-details##xdm:startDate##title##94651",
"meta:descriptionId": "experienceevent-loan-application-details##xdm:startDate##description##98721"
},
"xdm:endDate": {
"title": "End Date",
"type": "string",
"format": "date-time",
"description": "Records the anticipated end date of the loan.",
"meta:titleId": "experienceevent-loan-application-details##xdm:endDate##title##76061",
"meta:descriptionId": "experienceevent-loan-application-details##xdm:endDate##description##28871"
},
"xdm:interestRate": {
"title": "Interest Rate",
"type": "number",
"description": "Records the interest rate of the loan.",
"meta:titleId": "experienceevent-loan-application-details##xdm:interestRate##title##53571",
"meta:descriptionId": "experienceevent-loan-application-details##xdm:interestRate##description##93651"
},
"xdm:interestType": {
"title": "Interest Type",
"type": "string",
"description": "Records the type interest rate of the loan, i.e. fixed or variable.",
"meta:titleId": "experienceevent-loan-application-details##xdm:interestType##title##8441",
"meta:descriptionId": "experienceevent-loan-application-details##xdm:interestType##description##23621"
},
"xdm:term": {
"title": "Term",
"type": "integer",
"description": "Records the duration of the loan, in months.",
"meta:titleId": "experienceevent-loan-application-details##xdm:term##title##88841",
"meta:descriptionId": "experienceevent-loan-application-details##xdm:term##description##59901"
}
}
},
"meta:descriptionId": "experienceevent-loan-application-details##xdm:personalFinances##description##20531"
}
}
}
},
"allOf": [
{
"$ref": "#/definitions/loan-application-details"
}
],
"meta:status": "stable",
"meta:createdDate": "2021-02-19",
"meta:titleId": "experienceevent-loan-application-details##title##9441",
"meta:descriptionId": "experienceevent-loan-application-details##description##28091",
"examples": [
{
"xdm:personalFinances": {
"xdm:loanApplicationDetails": {
"xdm:loan": {
"xdm:form-applications": {
"xdm:formApplicationApproved": "",
"xdm:formApplicationDeclined": "",
"xdm:formApplicationID": "F102931032",
"xdm:formApplicationRequestedAmount": "2000.00",
"xdm:formApplicationStatus": "initiated",
"xdm:formApplicationStatusUpdate": "",
"xdm:formApplicationType": "loan",
"xdm:formApplicationUnderReview": "",
"xdm:formApplicationUsage": ""
}
}
}
}
}
]
}