sources
Data license: CC-BY
1 row where datasetId = 967 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 |
---|---|---|---|---|---|---|---|---|
6826 | Food waste in the European Union - Europa (2010) | { "link": "http://ec.europa.eu/environment/archives/eussd/pdf/bio_foodwaste_report.pdf", "retrievedDate": "12/10/2017", "additionalInfo": "Data is measured as total food waste per year, measured in mass terms (tonnes per year).\n\nFood waste is disaggregated by wastage from manufacturing, households and 'other' categories. 'Other' is inclusive of all other sectors where food waste occurs, including agricultural production, distribution, retail and catering.", "dataPublishedBy": " European Commission (2010). Preparatory study on food waste across EU27", "dataPublisherSource": "National reports & non-governmental studies" } |
2017-10-12 16:52:51 | 2017-11-02 13:04:39 | Food waste in the European Union - Europa (2010) 967 | Data is measured as total food waste per year, measured in mass terms (tonnes per year). Food waste is disaggregated by wastage from manufacturing, households and 'other' categories. 'Other' is inclusive of all other sectors where food waste occurs, including agricultural production, distribution, retail and catering. | http://ec.europa.eu/environment/archives/eussd/pdf/bio_foodwaste_report.pdf | European Commission (2010). Preparatory study on food waste across EU27 |
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");