-
Notifications
You must be signed in to change notification settings - Fork 25
/
Copy pathcompanies.json
52 lines (52 loc) · 1.27 KB
/
companies.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
{
"version": 1,
"request": {
"url": "https://www.themuse.com/api/public/companies",
"method": "GET",
"authorization": {
"type": "QueryParam",
"keyParam": "apikey"
},
"params": {
"page": true,
"descending": false,
"industry": false,
"size": false,
"location": false
}
},
"examples": {
"page": "1"
},
"response": {
"ctype": "application/json",
"tablePath": "$.results[*]",
"schema": {
"id": {
"target": "$.id",
"type": "string"
},
"name": {
"target": "$.name",
"type": "string"
},
"locations": {
"target": "$.locations",
"type": "list"
},
"size": {
"target": "$.size.[*].name",
"type": "string"
},
"publication_date": {
"target": "$.publication_date",
"type": "string"
},
"url": {
"target": "$.refs.landing_page",
"type": "string"
}
},
"orient": "records"
}
}