sources
Data license: CC-BY
1 row where datasetId = 3219 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 |
---|---|---|---|---|---|---|---|---|
16723 | Learning-Adjusted Years of Schooling - World Bank (2018) | { "link": "https://databank.worldbank.org/data/source/human-capital-index", "retrievedDate": "14 February 2019", "additionalInfo": "The methodology can be read up in Filmer et al. (2018): http://documents.worldbank.org/curated/en/243261538075151093/Learning-Adjusted-Years-of-Schooling-LAYS-Defining-A-New-Macro-Measure-of-Education", "dataPublishedBy": "World Bank", "dataPublisherSource": "Calculations based on TIMSS test, methodology by Filmer et al. (2018)" } |
2019-02-14 12:59:11 | 2019-02-14 12:59:11 | Learning-Adjusted Years of Schooling - World Bank (2018) 3219 | The methodology can be read up in Filmer et al. (2018): http://documents.worldbank.org/curated/en/243261538075151093/Learning-Adjusted-Years-of-Schooling-LAYS-Defining-A-New-Macro-Measure-of-Education | https://databank.worldbank.org/data/source/human-capital-index | World Bank |
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");