sources
Data license: CC-BY
1 row where datasetId = 318 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 |
---|---|---|---|---|---|---|---|---|
426 | Luxembourg Income Study (2016) | { "link": "https://ourworldindata.org/incomes-across-the-distribution/", "retrievedDate": "01/11/2016", "additionalInfo": null, "dataPublishedBy": "Luxembourg Income Study (2016)", "dataPublisherSource": "The data source for the Incomes Across the Distribution Database is LIS microdata: Luxembourg Income Study (LIS) Database, http://www.lisdatacenter.org (multiple countries; Micro data runs for multiple countries completed in September 2015.). Luxembourg: LIS." } |
2016-11-02 02:53:01 | 2017-11-13 17:06:08 | Incomes across the Distribution Database, Gini (2016) 318 | https://ourworldindata.org/incomes-across-the-distribution/ | Luxembourg Income Study (2016) |
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");