-
Notifications
You must be signed in to change notification settings - Fork 1
/
experienceevent-bill-pay-details.schema.json
110 lines (110 loc) · 6.23 KB
/
experienceevent-bill-pay-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
{
"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-bill-pay-details",
"$schema": "http://json-schema.org/draft-06/schema#",
"title": "Bill Pay Details",
"type": "object",
"meta:extensible": true,
"meta:abstract": true,
"meta:tags": {
"industry": [
"financial_services"
]
},
"meta:intendedToExtend": [
"https://ns.adobe.com/xdm/context/experienceevent"
],
"description": "Bill pay details such as transaction information, service account ID, and balance.",
"definitions": {
"bill-pay-details": {
"properties": {
"xdm:personalFinances": {
"type": "object",
"description": "Financial details including transactions, accounts, and applications.",
"properties": {
"xdm:billPayDetails": {
"type": "object",
"properties": {
"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-bill-pay-details##xdm:steps##title##67611",
"meta:descriptionId": "experienceevent-bill-pay-details##xdm:steps##description##96461"
},
"xdm:transaction": {
"title": "Transaction",
"$ref": "https://ns.adobe.com/xdm/datatypes/transaction",
"description": "Extension of transaction data type.",
"meta:titleId": "experienceevent-bill-pay-details##xdm:transaction##title##90541",
"meta:descriptionId": "experienceevent-bill-pay-details##xdm:transaction##description##5461"
},
"xdm:financialAccount": {
"title": "Financial Account",
"$ref": "https://ns.adobe.com/xdm/datatypes/financial-account",
"description": "Extension of financialAccount data type. Details the account to which the balance is being transferred.",
"meta:titleId": "experienceevent-bill-pay-details##xdm:financialAccount##title##63131",
"meta:descriptionId": "experienceevent-bill-pay-details##xdm:financialAccount##description##96381"
},
"xdm:scheduledTransactionDate": {
"title": "Scheduled Transaction Date",
"type": "string",
"format": "date-time",
"description": "Records the scheduled date/time of the transaction.",
"meta:titleId": "experienceevent-bill-pay-details##xdm:scheduledTransactionDate##title##11581",
"meta:descriptionId": "experienceevent-bill-pay-details##xdm:scheduledTransactionDate##description##65331"
},
"xdm:serviceProvider": {
"type": "object",
"description": "Tracks all details related to a biller.",
"properties": {
"xdm:name": {
"title": "Service Provider Name",
"type": "string",
"description": "The name/nickname for the service provider.",
"meta:titleId": "experienceevent-bill-pay-details##xdm:name##title##7831",
"meta:descriptionId": "experienceevent-bill-pay-details##xdm:name##description##82791"
},
"xdm:userAccountID": {
"title": "User Account ID",
"type": "string",
"description": "The user account ID for the service provider.",
"meta:titleId": "experienceevent-bill-pay-details##xdm:userAccountID##title##6371",
"meta:descriptionId": "experienceevent-bill-pay-details##xdm:userAccountID##description##75451"
}
},
"meta:descriptionId": "experienceevent-bill-pay-details##xdm:serviceProvider##description##37971"
}
}
}
},
"meta:descriptionId": "experienceevent-bill-pay-details##xdm:personalFinances##description##69171"
}
}
}
},
"allOf": [
{
"$ref": "#/definitions/bill-pay-details"
}
],
"meta:status": "stable",
"meta:createdDate": "2021-03-30",
"meta:titleId": "experienceevent-bill-pay-details##title##72581",
"meta:descriptionId": "experienceevent-bill-pay-details##description##40741",
"examples": [
{
"xdm:personalFinances": {
"xdm:billPayDetails": {
"xdm:scheduledTransactionDate": "2020-04-11T05:05:05Z"
}
}
}
]
}