-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdatapackage.json
More file actions
73 lines (73 loc) · 1.91 KB
/
datapackage.json
File metadata and controls
73 lines (73 loc) · 1.91 KB
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
{
"name": "stdlib-datasets-cdc-nchs-us-infant-mortality-bw-1915-2013",
"version": "",
"title": "US Infant Mortality by Race (1915-2013)",
"description": "US infant mortality data, by race, from 1915 to 2013.",
"resources": [
{
"name": "cdc-nchs-us-infant-mortality-bw-1915-2013-json",
"title": "US Infant Mortality by Race (1915-2013)",
"description": "US infant mortality data, by race, from 1915 to 2013.",
"format": "json",
"mediatype": "application/json",
"encoding": "UTF-8",
"hash": "",
"path": "./data/data.json"
},
{
"name": "cdc-nchs-us-infant-mortality-bw-1915-2013-csv",
"title": "US Infant Mortality By Race (1915-2013)",
"description": "US infant mortality data, by race, from 1915 to 2013.",
"format": "csv",
"mediatype": "text/csv",
"encoding": "UTF-8",
"hash": "",
"path": "./data/data.csv",
"schema": {
"fields": [
{
"name": "race",
"title": "Race",
"description": "Race (either black or white).",
"type": "string",
"format": "default"
},
{
"name": "year",
"title": "Year",
"description": "Year.",
"type": "integer",
"format": "default"
},
{
"name": "infant_mortality_rate",
"title": "Infant Mortality Rate",
"description": "Infant mortality rate.",
"type": "number",
"format": "default"
}
]
}
}
],
"sources": [
{
"name": "Center for Disease Control and Prevention",
"web": "https://data.cdc.gov"
}
],
"keywords": [
"us",
"usa",
"united states",
"cdc",
"mortality",
"race",
"inequality",
"infant",
"birth",
"timeseries",
"time-series"
],
"license": "PDDL-1.0 AND CC0-1.0"
}