forked from tmegow/countdown-exporter
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdeadlines.json
48 lines (48 loc) · 1.19 KB
/
deadlines.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
{
"deadlines": [
{
"name": "Server Certificate",
"description": "Used for Server auth",
"deadline-time": "2021-05-16T22:30:00Z",
"threshold": 30,
"threshold-type": "days"
},
{
"name": "Client Certificate",
"description": "Used for Client auth",
"deadline-time": "2021-05-17T22:30:00Z",
"threshold": 30,
"threshold-type": "days"
},
{
"name": "Rent Due",
"description": "Rent due first of month",
"deadline-time": "2019-06-01T00:00:00Z",
"threshold": 12,
"threshold-type": "hours"
},
{
"name": "Veterinary Appointment",
"description": "Spot's 6-month checkup",
"deadline-time": "2020-02-01T00:00:00Z",
"threshold": 1,
"threshold-type": "month"
},
{
"name": "Electric Bill Due",
"description": "(Custom Deadline Time Format Constant Provided)",
"deadline-time": "Mon Jul 29 9:00:00 EDT 2019",
"deadline-time-format": "UnixDate",
"threshold": 7,
"threshold-type": "days"
},
{
"name": "Dental Appointment",
"description": "(Custom Deadline Time Format Provided)",
"deadline-time": "21 Jan 2020 11:00 EDT",
"deadline-time-format": "02 Jan 2006 15:04 MST",
"threshold": 7,
"threshold-type": "days"
}
]
}