-
Notifications
You must be signed in to change notification settings - Fork 1
/
chargeExpired.json
47 lines (47 loc) · 1.18 KB
/
chargeExpired.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
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"name": "chargeExpired",
"type": "object",
"properties": {
"chargeID": {
"type": "string",
"description": "Unique ID for the charge that has been expired"
},
"amount": {
"type": "number",
"description": "The amount of the charge"
},
"currency": {
"type": "string",
"description": "The currency of the amount"
},
"chargeTimestamp": {
"type": "number",
"description": "The unix timetsamp of when the charge was attempted"
},
"renewalNumber": {
"type": "number",
"description": "The charge renewal number"
},
"attemptNumber": {
"type": "number",
"description": "The charge attempt number"
},
"transactionNumber": {
"type": "number",
"description": "The charge transaction number"
},
"policyID": {
"type": "string",
"description": "ID of the policy triggering the expiry"
},
"reason": {
"type": "string",
"description": "Reason for the charge expiry"
},
"reasonCode": {
"type": "number",
"description": "Reason code for the expiry"
}
}
}