sources
Data license: CC-BY
1 row where datasetId = 650 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 |
---|---|---|---|---|---|---|---|---|
2800 | Share of energy from cereals, roots and tubers - FAO (2017) | { "link": "http://www.fao.org/faostat/en/#data/FS", "retrievedDate": "27/07/2017", "additionalInfo": "This data details the average share of dietary energy supplied by cereals, roots or tuber food commodities. It is often used as a key indicator of dietary diversity, with individuals at lower-income levels relying on cereals, roots and tubers for a high percentage of total energy intake (indicating poor dietary diversity).", "dataPublishedBy": "United Nations Food and Agricultural Organization (FAO) Food Security Indicators", "dataPublisherSource": "Food Balance Sheets and Household Survey Data" } |
2017-07-27 18:20:03 | 2017-11-02 13:04:39 | Share of energy from cereals, roots and tubers - FAO (2017) 650 | This data details the average share of dietary energy supplied by cereals, roots or tuber food commodities. It is often used as a key indicator of dietary diversity, with individuals at lower-income levels relying on cereals, roots and tubers for a high percentage of total energy intake (indicating poor dietary diversity). | http://www.fao.org/faostat/en/#data/FS | United Nations Food and Agricultural Organization (FAO) Food Security Indicators |
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");