sources
Data license: CC-BY
1 row where datasetId = 704 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 |
---|---|---|---|---|---|---|---|---|
2864 | Our World In Data (2017) | { "link": "http://www.barrolee.com/data/wholepop.htm", "retrievedDate": "2017 August 26", "additionalInfo": "Shown is the average of mean years of schooling for mean between 15 and 49 years of age. This is calculated as the average of the estimates published by Barro and Lee.", "dataPublishedBy": "Our World In Data (2017)", "dataPublisherSource": "Barro and Lee, census data" } |
2017-08-26 18:30:11 | 2017-11-02 13:04:39 | Mean years of schooling, women (15 to 49) – Our World In Data (2017) 704 | Shown is the average of mean years of schooling for mean between 15 and 49 years of age. This is calculated as the average of the estimates published by Barro and Lee. | http://www.barrolee.com/data/wholepop.htm | Our World In Data (2017) |
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");