sources
Data license: CC-BY
1 row where datasetId = 352 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 |
---|---|---|---|---|---|---|---|---|
459 | China share of World Poverty - World Bank (WDI) (2017) | { "link": "http://data.worldbank.org/?name_desc=false", "retrievedDate": "16/02/2017", "additionalInfo": "Definitions: \r\n\r\nOur definition of poverty is defined using World Bank's poverty headcount. People are considered poor if they live with less than 1.90$ per day (2011 int $ PPP). For more information on how the OurWorldInData team defines poverty following the World Bank's definitions see our entry on \"Global Extreme Poverty\".", "dataPublishedBy": "World Bank (World Development Indicators)", "dataPublisherSource": "World Bank (Development Research Group). PovcalNet" } |
2017-02-16 06:15:08 | 2017-11-14 14:35:31 | China share of World Poverty - World Bank (WDI) (2017) 352 | Definitions: Our definition of poverty is defined using World Bank's poverty headcount. People are considered poor if they live with less than 1.90$ per day (2011 int $ PPP). For more information on how the OurWorldInData team defines poverty following the World Bank's definitions see our entry on "Global Extreme Poverty". | http://data.worldbank.org/?name_desc=false | World Bank (World Development Indicators) |
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");