sources
Data license: CC-BY
1 row where datasetId = 2768 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 |
---|---|---|---|---|---|---|---|---|
15505 | Ozone-depleting emissions index - EEA | { "link": "https://www.eea.europa.eu/data-and-maps/daviz/consumption-of-controlled-ozone-depleting-substances", "retrievedDate": "3rd March 2021", "additionalInfo": "Data represents the consumption of ozone-depleting substances (in ozone-depleting potential tonnes), measured as an index relative to emissions in the year 1986 (1986 = 100).", "dataPublishedBy": "European Environment Agency", "dataPublisherSource": "UNEP (Ozone Secretariat)" } |
2018-04-26 16:35:53 | 2018-04-26 16:35:53 | Ozone-depleting emissions index - EEA 2768 | Data represents the consumption of ozone-depleting substances (in ozone-depleting potential tonnes), measured as an index relative to emissions in the year 1986 (1986 = 100). | https://www.eea.europa.eu/data-and-maps/daviz/consumption-of-controlled-ozone-depleting-substances | European Environment Agency |
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");