sources
Data license: CC-BY
1 row where datasetId = 2787 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 |
---|---|---|---|---|---|---|---|---|
15524 | World Bank World Development Report (2013) | { "link": "http://siteresources.worldbank.org/EXTNWDR2013/Resources/8258024-1352909193861/8936935-1356011448215/8986901-1380046989056/WDR-2014_Complete_Report.pdf ", "retrievedDate": "07/05/2018", "additionalInfo": "Underlying source: World Bank, Global Financial Inclusion Database, at http://data.worldbank.org/data-catalog/financial_inclusion", "dataPublishedBy": "World Bank. 2013. World Development Report 2014 : Risk and Opportunity\u2014Managing Risk for Development. Washington, DC. \u00a9 World Bank. https://openknowledge.worldbank.org/handle/10986/16092 License: CC BY 3.0 IGO.", "dataPublisherSource": "Survey data" } |
2018-05-07 15:23:28 | 2018-05-07 15:23:28 | Population using informal saving (%) - World Bank World Development Report (2013) 2787 | Underlying source: World Bank, Global Financial Inclusion Database, at http://data.worldbank.org/data-catalog/financial_inclusion | http://siteresources.worldbank.org/EXTNWDR2013/Resources/8258024-1352909193861/8936935-1356011448215/8986901-1380046989056/WDR-2014_Complete_Report.pdf | World Bank. 2013. World Development Report 2014 : Risk and Opportunity—Managing Risk for Development. Washington, DC. © World Bank. https://openknowledge.worldbank.org/handle/10986/16092 License: CC BY 3.0 IGO. |
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");