sources
Data license: CC-BY
1 row where datasetId = 5106 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 |
---|---|---|---|---|---|---|---|---|
17836 | IMF (2009), IMF (2013) | { "link": "https://www.imf.org/external/pubs/ft/weo/2009/update/01/pdf/0109.pdf; https://www.imf.org/en/Publications/FM/Issues/2016/12/31/Fiscal-Adjustment-in-an-Uncertain-World", "dataPublishedBy": "International Monetary Fund. 2009. World Economic Outlook: January 2009; International Monetary Fund. 2013. \u2018IMF Fiscal Monitor April 2013: Fiscal Adjustment in an Uncertain World, April 2013.\u2019 April 16." } |
2020-07-02 13:14:17 | 2020-07-02 13:14:17 | Figure_17.1c-2 5106 | https://www.imf.org/external/pubs/ft/weo/2009/update/01/pdf/0109.pdf; https://www.imf.org/en/Publications/FM/Issues/2016/12/31/Fiscal-Adjustment-in-an-Uncertain-World | International Monetary Fund. 2009. World Economic Outlook: January 2009; International Monetary Fund. 2013. ‘IMF Fiscal Monitor April 2013: Fiscal Adjustment in an Uncertain World, April 2013.’ April 16. |
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");