sources
Data license: CC-BY
1 row where datasetId = 482 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 |
---|---|---|---|---|---|---|---|---|
614 | Renewable electricity (% electricity production) - World Bank (2015) | { "link": "http://data.worldbank.org/indicator/EG.ELC.RNEW.ZS?name_desc=true&view=map&year=2015", "retrievedDate": "18/05/2017", "additionalInfo": "Countries aggregated by income group have been classified based on the World Bank's own definition of income level (low, lower middle, middle, middle upper, and high)", "dataPublishedBy": "World Bank, World Development Indicators (WDI)", "dataPublisherSource": "World Bank, Sustainable Energy for All (SE4ALL) database from the SE4ALL Global Tracking Framework led jointly by the World Bank, International Energy Agency, and the Energy Sector Management Assistance Program" } |
2017-05-18 20:35:56 | 2017-11-23 11:22:20 | Renewable Energy (% electricity production) - World Bank (2015) 482 | Countries aggregated by income group have been classified based on the World Bank's own definition of income level (low, lower middle, middle, middle upper, and high) | http://data.worldbank.org/indicator/EG.ELC.RNEW.ZS?name_desc=true&view=map&year=2015 | World Bank, World Development Indicators (WDI) |
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");