sources
Data license: CC-BY
1 row where datasetId = 678 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 |
---|---|---|---|---|---|---|---|---|
2838 | World Bank, PovcalNet (2017) | { "link": "http://iresearch.worldbank.org/PovcalNet/povOnDemand.aspx", "retrievedDate": "22/08/2017", "additionalInfo": "Countries for which both consumption and income expenditure data was available, we present mean and median per capita consumption expenditure only.", "dataPublishedBy": "PovcalNet, World Bank", "dataPublisherSource": "World Bank's poverty measures" } |
2017-08-22 15:47:18 | 2017-11-02 13:04:39 | PolcalNet Global Poverty (2017) 678 | Countries for which both consumption and income expenditure data was available, we present mean and median per capita consumption expenditure only. | http://iresearch.worldbank.org/PovcalNet/povOnDemand.aspx | PovcalNet, 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");