sources
Data license: CC-BY
1 row where datasetId = 2457 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 |
---|---|---|---|---|---|---|---|---|
14661 | Air Pollutant Emissions - OECD | { "link": "https://stats.oecd.org/Index.aspx?DataSetCode=AIR_EMISSIONS", "retrievedDate": "20th February 2018", "additionalInfo": "Air pollutant emissions reported for OECD countries, where data is available, measured in tonnes per year. \n\nIndexed figures relate to changes since the year 1990 (1990 is assumed equal to 100). A figure lower than 100 indicates a reduction in emissions (e.g. 40 indicates a 60% reduction since 1990). Indexed figures are only available for countries with data extending to 1990.", "dataPublishedBy": "Organization for Economic Cooperation and Development (OECD)", "dataPublisherSource": null } |
2018-02-20 11:18:17 | 2018-02-20 11:18:17 | Air Pollutant Emissions - OECD 2457 | Air pollutant emissions reported for OECD countries, where data is available, measured in tonnes per year. Indexed figures relate to changes since the year 1990 (1990 is assumed equal to 100). A figure lower than 100 indicates a reduction in emissions (e.g. 40 indicates a 60% reduction since 1990). Indexed figures are only available for countries with data extending to 1990. | https://stats.oecd.org/Index.aspx?DataSetCode=AIR_EMISSIONS | Organization for Economic Cooperation and Development (OECD) |
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");