sources
Data license: CC-BY
1 row where datasetId = 583 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 |
---|---|---|---|---|---|---|---|---|
2222 | Daily fat supply- FAO (2017) | { "link": "http://www.fao.org/faostat/en/#data/FBS", "retrievedDate": "18/07/2017", "additionalInfo": "Daily fat supply is defined as the average per capita fat availability. Note that this indicates the fat availability delivered to households but does not necessarily indicate the quantity of fat actually consumed (food may be wasted at the consumer level).\n\nData from 1961-1991 for Post-Soviet states are assumed to be in line with reported data for the USSR over this period.", "dataPublishedBy": "United Nations Food and Agricultural Organization (FAO)", "dataPublisherSource": "Household survey and census data" } |
2017-07-18 18:22:12 | 2017-11-02 13:04:39 | Daily fat supply- FAO (2017) 583 | Daily fat supply is defined as the average per capita fat availability. Note that this indicates the fat availability delivered to households but does not necessarily indicate the quantity of fat actually consumed (food may be wasted at the consumer level). Data from 1961-1991 for Post-Soviet states are assumed to be in line with reported data for the USSR over this period. | 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");