sources
Data license: CC-BY
1 row where datasetId = 395 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 |
---|---|---|---|---|---|---|---|---|
517 | Jolliffe and Prydz (2016) | { "link": "http://www-wds.worldbank.org/", "retrievedDate": "17/04/2016", "additionalInfo": null, "dataPublishedBy": "Jolliffe, D., & Prydz, E. B. (2016). Estimating international poverty lines from comparable national thresholds. The Journal of Economic Inequality, 14(2), 185-198.", "dataPublisherSource": "National poverty headcounts from national sources, and consumption and income distributions from PovcalNet" } |
2017-04-17 22:47:29 | 2017-11-02 13:04:39 | National Poverty Lines - Jolliffe and Prydz (2016) 395 | http://www-wds.worldbank.org/ | Jolliffe, D., & Prydz, E. B. (2016). Estimating international poverty lines from comparable national thresholds. The Journal of Economic Inequality, 14(2), 185-198. |
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");