sources
Data license: CC-BY
1 row where datasetId = 696 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 |
---|---|---|---|---|---|---|---|---|
2856 | Fertilizer prices - World Bank (2017) | { "link": "http://databank.worldbank.org/data/reports.aspx?source=commodity-prices-~-history-and-projections#", "retrievedDate": "24/08/2017", "additionalInfo": "Fertilizer prices are measured as a real price index, where prices in 2010 are equal to 100 (2010 = 100).\n\nUrea prices are reported in real US$ per metric ton.", "dataPublishedBy": "World Bank Commodity Prices", "dataPublisherSource": null } |
2017-08-24 19:08:20 | 2017-11-02 13:04:39 | Fertilizer prices - World Bank (2017) 696 | Fertilizer prices are measured as a real price index, where prices in 2010 are equal to 100 (2010 = 100). Urea prices are reported in real US$ per metric ton. | http://databank.worldbank.org/data/reports.aspx?source=commodity-prices-~-history-and-projections# | World Bank Commodity Prices |
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");