-
Notifications
You must be signed in to change notification settings - Fork 26
Expand file tree
/
Copy pathworkday.json
More file actions
36 lines (36 loc) · 822 Bytes
/
workday.json
File metadata and controls
36 lines (36 loc) · 822 Bytes
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
{
"version": 1,
"request": {
"url": "https://holidayapi.com/v1/workday",
"method": "GET",
"authorization": {
"type": "QueryParam",
"keyParam": "key"
},
"params": {
"country": true,
"start": true,
"days": true
}
},
"examples": {
"country": "'CA'",
"start": "'2020-01-01'",
"days": "100"
},
"response": {
"ctype": "application/json",
"tablePath": "$.workday[*]",
"schema": {
"date": {
"target": "$.date",
"type": "string"
},
"weekday": {
"target": "$.weekday.name",
"type": "string"
}
},
"orient": "records"
}
}