sources
Data license: CC-BY
1 row where datasetId = 4151 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 |
---|---|---|---|---|---|---|---|---|
16979 | UNDP, HDR (2018) | { "link": "http://hdr.undp.org/en/indicators/69706#", "retrievedDate": "17/06/19", "additionalInfo": "This series was published by the United Nations Development Programme (UNDP) Human Development Reports (HDR), which combines data from: UNESCO Institute for Statistics (2018); ICF Macro Demographic and Health Surveys; UNICEF Multiple Indicator Cluster Surveys; and OECD (2017a).", "dataPublishedBy": "UNDP, HDR (2018)", "dataPublisherSource": "Household and/or labor force surveys" } |
2019-06-17 11:31:10 | 2019-06-17 11:31:10 | Expected Years of Schooling - UNDP (2018) 4151 | This series was published by the United Nations Development Programme (UNDP) Human Development Reports (HDR), which combines data from: UNESCO Institute for Statistics (2018); ICF Macro Demographic and Health Surveys; UNICEF Multiple Indicator Cluster Surveys; and OECD (2017a). | http://hdr.undp.org/en/indicators/69706# | UNDP, HDR (2018) |
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");