sources
Data license: CC-BY
1 row where datasetId = 4202 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 |
---|---|---|---|---|---|---|---|---|
17030 | 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 survived past 5 years of age per women is calculated by multiplying the child survival rate by the fertility rate of a country for a given year.\n\nChild survival rate is 1 minus the child mortality rate. 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 18:08:07 | 2019-09-04 18:08:07 | Children that survived past 5 years of age per woman - Gapminder (2017) 4202 | The number of children that survived past 5 years of age per women is calculated by multiplying the child survival rate by the fertility rate of a country for a given year. Child survival rate is 1 minus the child mortality rate. 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");