sources
Data license: CC-BY
1 row where datasetId = 5013 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 |
---|---|---|---|---|---|---|---|---|
17744 | Forestry: Forestry Production and Trade | { "link": "http://www.fao.org/faostat/en/?#data/", "retrievedDate": "13-Feb-2020", "additionalInfo": "Forestry statistics cover the production of and trade in wood products by country. Production is reported in physical units of cubic metres (m3) or tonnes, while trade in basic products is covered in both monetary and physical units.Removals of roundwood comprise all quantities of wood felled and removed from the forest and other wooded land or other felling sites. They are measured in m3 under bark (without bark). The collection includes information on the total trade of each country.Detailed information on wood products and definitions can be found at: http://www.fao.org/forestry/statistics/80572/en/", "dataPublishedBy": "Food and Agriculture Organization of the United Nations (FAO) (2020)", "dataPublisherSource": "The basic data collection is carried out by country correspondents in the Member States." } |
2020-02-14 02:14:54 | 2020-02-14 02:14:54 | Forestry: Forestry Production and Trade 5013 | Forestry statistics cover the production of and trade in wood products by country. Production is reported in physical units of cubic metres (m3) or tonnes, while trade in basic products is covered in both monetary and physical units.Removals of roundwood comprise all quantities of wood felled and removed from the forest and other wooded land or other felling sites. They are measured in m3 under bark (without bark). The collection includes information on the total trade of each country.Detailed information on wood products and definitions can be found at: http://www.fao.org/forestry/statistics/80572/en/ | http://www.fao.org/faostat/en/?#data/ | Food and Agriculture Organization of the United Nations (FAO) (2020) |
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");