sources
Data license: CC-BY
1 row where datasetId = 5048 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 |
---|---|---|---|---|---|---|---|---|
17779 | Inputs: Fertilizers archive | { "link": "http://www.fao.org/faostat/en/?#data/", "retrievedDate": "13-Feb-2020", "additionalInfo": "The variables provided are Production, Import, Export and Consumption for the 3 main fertilizer categories (Nitrogen, Phosphate and Potash) in terms of nutrients. Data are also summed up in order to obtain the N, P, K (and N+ P+ K) totals in terms of nutrients. Price are expressed in terms of local currency per product.", "dataPublishedBy": "Food and Agriculture Organization of the United Nations (FAO) (2020)", "dataPublisherSource": "Primary data source: FAO Questionnaires on Fertilizers.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:17:19 | 2020-02-14 03:17:19 | Inputs: Fertilizers archive 5048 | The variables provided are Production, Import, Export and Consumption for the 3 main fertilizer categories (Nitrogen, Phosphate and Potash) in terms of nutrients. Data are also summed up in order to obtain the N, P, K (and N+ P+ K) totals in terms of nutrients. Price are expressed in terms of local currency per product. | 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");