-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdatapackage.json
83 lines (83 loc) · 2.11 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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
{
"name": "stdlib-datasets-ssa-us-births-2000-2014",
"version": "",
"title": "US Births (2000-2014)",
"description": "US birth data from 2000 to 2014.",
"resources": [
{
"name": "ssa-us-births-2000-2014-json",
"title": "US Births (2000-2014)",
"description": "US birth data from 2000 to 2014.",
"format": "json",
"mediatype": "application/json",
"encoding": "UTF-8",
"hash": "",
"path": "./data/data.json"
},
{
"name": "ssa-us-births-2000-2014-csv",
"title": "US Births (2000-2014)",
"description": "US birth data from 2000 to 2014.",
"format": "csv",
"mediatype": "text/csv",
"encoding": "UTF-8",
"hash": "",
"path": "./data/data.csv",
"schema": {
"fields": [
{
"name": "year",
"title": "Year",
"description": "Year.",
"type": "integer",
"format": "default"
},
{
"name": "month",
"title": "Month",
"description": "Month number, where January is denoted by `1`.",
"type": "integer",
"format": "default"
},
{
"name": "date_of_month",
"title": "Date of Month",
"description": "Day number of the month.",
"type": "integer",
"format": "default"
},
{
"name": "day_of_week",
"title": "Day of Week",
"description": "Day of week, where Monday is `1` and Sunday is `7`.",
"type": "integer",
"format": "default"
},
{
"name": "births",
"title": "Births",
"description": "Number of births.",
"type": "integer",
"format": "default"
}
]
}
}
],
"sources": [
{
"name": "Social Security Administration",
"web": "https://www.ssa.gov/data/"
}
],
"keywords": [
"us",
"usa",
"united states",
"ssa",
"births",
"timeseries",
"time-series"
],
"license": "PDDL-1.0 AND CC0-1.0"
}