-
Notifications
You must be signed in to change notification settings - Fork 24
/
Copy pathcountries.json
43 lines (43 loc) · 1.04 KB
/
countries.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
{
"version": 1,
"request": {
"url": "https://finnhub.io/api/v1/country",
"method": "GET",
"authorization": {
"type": "QueryParam",
"keyParam": "token"
},
"params": {}
},
"response": {
"ctype": "application/json",
"tablePath": "$[*]",
"schema": {
"country": {
"target": "$.country",
"type": "string"
},
"code2": {
"target": "$.code2",
"type": "string"
},
"code3": {
"target": "$.code3",
"type": "string"
},
"codeNo": {
"target": "$.codeNo",
"type": "string"
},
"currency": {
"target": "$.currency",
"type": "string"
},
"currencyCode": {
"target": "$.currencyCode",
"type": "string"
}
},
"orient": "records"
}
}