-
Notifications
You must be signed in to change notification settings - Fork 4
/
datapackage.json
54 lines (54 loc) · 1.36 KB
/
datapackage.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
53
54
{
"name": "s-and-p-500",
"title": "S&P 500 data csv scrapped from Wikipedia",
"license": "PDDL-1.0",
"resources": [
{
"name": "sp500",
"path": "data/sp500.csv",
"format": "csv",
"mediatype": "text/csv",
"schema": {
"fields": [
{
"name": "Symbol",
"description": "Security Ticker Symbol",
"type": "string"
},
{
"name": "Name",
"description": "Security Name",
"type": "string"
},
{
"name": "Sector",
"description": "Sector (GICS)",
"type": "string"
},
{
"name": "Industry",
"description": "Sub-Industry (GICS)",
"type": "string"
},
{
"name": "Headquarters",
"description": "City of Headquarters",
"type": "string"
},
{
"name": "CIK",
"description": "Central Index Key (USA SEC)",
"type": "string"
}
]
}
}
],
"sources": [
{
"name": "Wikipedia",
"url": "https://en.wikipedia.org/wiki/List_of_S%26P_500_companies",
"title": "List of S&P 500 companies"
}
]
}