sources
Data license: CC-BY
1 row where datasetId = 5052 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 |
---|---|---|---|---|---|---|---|---|
17783 | Investment: Machinery | { "link": "http://www.fao.org/faostat/en/?#data/", "retrievedDate": "13-Feb-2020", "additionalInfo": "The definition of all agricultural machinery and equipment items included in the Machinery database is available here.", "dataPublishedBy": "Food and Agriculture Organization of the United Nations (FAO) (2020)", "dataPublisherSource": "Primary data source: FAO annual questionnaire on Agricultural Machinery and Equipment for the country-level data. The annual Agricultural Machinery and Equipment questionnaire covers the following dimensions: quantity in use, production, import and export for the following categories: agricultural tractors, harvester \u2013 threshers, milking machines and cultivation planting/seeding implements. The data on import and export (quantity and value) are obtained from the UN COMTRADE database and sometimes from the questionnaires. The Harmonized System Classification (HS) and descriptions are used in the questionnaire. Country data is usually obtained from national agricultural censuses generally performed every 10 years. These official statistics may be complemented with government data sources such as yearbooks and ministerial data portals. Data gaps may be filled with secondary sources such as country studies from other International organizations. Data are flagged according to the type of data and the source." } |
2020-02-14 03:21:15 | 2020-02-14 03:21:15 | Investment: Machinery 5052 | The definition of all agricultural machinery and equipment items included in the Machinery database is available here. | 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");