sources
Data license: CC-BY
1 row where datasetId = 4200 sorted by id descending
This data as json, CSV (advanced)
Suggested facets: createdAt (date), updatedAt (date)
id ▲ | name | description | createdAt | updatedAt | datasetId | additionalInfo | link | dataPublishedBy |
---|---|---|---|---|---|---|---|---|
17028 | Gapminder (2017) | { "link": "https://ourworldindata.org/child-mortality#estimates-for-child-mortality-over-the-last-two-centuries, https://ourworldindata.org/fertility-rate#total-fertility-rate-around-the-world-over-recent-centuries", "retrievedDate": "4/9/2019", "additionalInfo": "The number of children that died before 5 years of age per women is calculated by multiplying the child mortality rate by the fertility rate of a country for a given year.\n\nChild mortality is the share of newborns who die before reaching the age of 5. The dataset comes from version 10 of Gapminder, the latest version as of 2019. \n\nTotal fertility rate represents the number of children that would be born to a woman if she were to live to the end of her childbearing years and bear children in accordance with age-specific fertility rates of the specified year. The dataset comes from version 12 of Gapminder, the latest version as of 2019.", "dataPublishedBy": "OWID", "dataPublisherSource": "Child Mortality (Select Gapminder, v10) (2017), Fertility Rate (Select Gapminder, v12) (2017)" } |
2019-09-04 17:39:33 | 2019-09-04 17:39:33 | Children that died before 5 years of age per woman - Gapminder (2017) 4200 | The number of children that died before 5 years of age per women is calculated by multiplying the child mortality rate by the fertility rate of a country for a given year. Child mortality is the share of newborns who die before reaching the age of 5. The dataset comes from version 10 of Gapminder, the latest version as of 2019. Total fertility rate represents the number of children that would be born to a woman if she were to live to the end of her childbearing years and bear children in accordance with age-specific fertility rates of the specified year. The dataset comes from version 12 of Gapminder, the latest version as of 2019. | https://ourworldindata.org/child-mortality#estimates-for-child-mortality-over-the-last-two-centuries, https://ourworldindata.org/fertility-rate#total-fertility-rate-around-the-world-over-recent-centuries | OWID |
Advanced export
JSON shape: default, array, newline-delimited, object
CREATE TABLE "sources" ( "id" INTEGER PRIMARY KEY AUTOINCREMENT, "name" VARCHAR(512) NULL , "description" TEXT NOT NULL , "createdAt" DATETIME NOT NULL DEFAULT CURRENT_TIMESTAMP , "updatedAt" DATETIME NULL , "datasetId" INTEGER NULL, additionalInfo TEXT GENERATED ALWAYS as (JSON_EXTRACT(description, '$.additionalInfo')) VIRTUAL, link TEXT GENERATED ALWAYS as (JSON_EXTRACT(description, '$.link')) VIRTUAL, dataPublishedBy TEXT GENERATED ALWAYS as (JSON_EXTRACT(description, '$.dataPublishedBy')) VIRTUAL, FOREIGN KEY("datasetId") REFERENCES "datasets" ("id") ON UPDATE RESTRICT ON DELETE RESTRICT ); CREATE INDEX "sources_datasetId" ON "sources" ("datasetId");