sources
Data license: CC-BY
1 row where datasetId = 657 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 |
---|---|---|---|---|---|---|---|---|
2807 | Diet compositions by specific food commodities - FAO (2017) | { "link": "http://www.fao.org/faostat/en/#data/FBS", "retrievedDate": "01/08/2017", "additionalInfo": "Data represents the average daily per capita supply of calories from the range of food commodities. Note that these figures do not correct for waste at the household/consumption level so may not directly reflect the quantity of food finally consumed by a given individual.\n\nValues given for commodities include supply provided in its raw form, as well as products derived from this commodity (for example, figures for 'wheat' are inclusive of wheat consumed in its raw form as well as derivative products such as bread).\n\nFigures for Former Soviet Union states have been allocated the average food supply figures of the USSR for the period 1961-1991, then their respective national values from there onwards.", "dataPublishedBy": "United Nations Food and Agricultural Organization (FAO)", "dataPublisherSource": "Food Balance Sheets (FBS)" } |
2017-08-01 12:19:14 | 2017-11-02 13:04:39 | Diet compositions by specific food commodities - FAO (2017) 657 | Data represents the average daily per capita supply of calories from the range of food commodities. Note that these figures do not correct for waste at the household/consumption level so may not directly reflect the quantity of food finally consumed by a given individual. Values given for commodities include supply provided in its raw form, as well as products derived from this commodity (for example, figures for 'wheat' are inclusive of wheat consumed in its raw form as well as derivative products such as bread). Figures for Former Soviet Union states have been allocated the average food supply figures of the USSR for the period 1961-1991, then their respective national values from there onwards. | http://www.fao.org/faostat/en/#data/FBS | United Nations Food and Agricultural Organization (FAO) |
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");