sources
Data license: CC-BY
1 row where datasetId = 5032 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 |
---|---|---|---|---|---|---|---|---|
17763 | Investment: Credit to Agriculture | { "link": "http://www.fao.org/faostat/en/?#data/", "retrievedDate": "13-Feb-2020", "additionalInfo": "Variables provided: 1. Credit to Agriculture (broad definition which includes Forestry and Fishing), 2. Total credit to the economy; 3. Agriculture share of total credit; 4. Agricultural orientation index. For some countries the subsectors are completely specified and in these cases there are additional varibles: 1a. Agriculture (narrow definition), 1b. Forestry, 1c. Fishing.", "dataPublishedBy": "Food and Agriculture Organization of the United Nations (FAO) (2020)", "dataPublisherSource": "The basic source for the dataset on Credit to Agriculture are the Central Banks websites and their reports." } |
2020-02-14 02:51:29 | 2020-02-14 02:51:29 | Investment: Credit to Agriculture 5032 | Variables provided: 1. Credit to Agriculture (broad definition which includes Forestry and Fishing), 2. Total credit to the economy; 3. Agriculture share of total credit; 4. Agricultural orientation index. For some countries the subsectors are completely specified and in these cases there are additional varibles: 1a. Agriculture (narrow definition), 1b. Forestry, 1c. Fishing. | 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");