-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
datapackage.json
83 lines (83 loc) · 2.13 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-cdc-nchs-us-births-1969-1988",
"version": "",
"title": "US Births (1969-1988)",
"description": "US birth data from 1969 to 1988.",
"resources": [
{
"name": "cdc-nchs-us-births-1969-1988-json",
"title": "US Births (1969-1988)",
"description": "US birth data from 1969 to 1988.",
"format": "json",
"mediatype": "application/json",
"encoding": "UTF-8",
"hash": "",
"path": "./data/data.json"
},
{
"name": "cdc-nchs-us-births-1969-1988-csv",
"title": "US Births (1969-1988)",
"description": "US birth data from 1969 to 1988.",
"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": "Center for Disease Control and Prevention",
"web": "https://data.cdc.gov"
}
],
"keywords": [
"us",
"usa",
"united states",
"cdc",
"births",
"timeseries",
"time-series"
],
"license": "PDDL-1.0 AND CC0-1.0"
}