sources
Data license: CC-BY
1 row where datasetId = 5104 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 |
---|---|---|---|---|---|---|---|---|
17834 | Almunia et al. (2010) | { "link": "https://www.nber.org/papers/w15524", "additionalInfo": "The 7 countries in the sample are France, Germany, UK, Poland, Sweden, Japan, UK and US.\t\t", "dataPublishedBy": "Miguel Almunia, Agust\u00edn B\u00e9n\u00e9trix, Barry Eichengreen, Kevin H. O\u2019Rourke, and Gisela Rua. 2010. \u2018From Great Depression to Great Credit Crisis: Similarities, Differences and Lessons.\u2019 Economic Policy 25 (62): pp. 219\u201365." } |
2020-07-02 12:38:48 | 2020-07-02 12:38:48 | Figure_17.1b-2 5104 | The 7 countries in the sample are France, Germany, UK, Poland, Sweden, Japan, UK and US. | https://www.nber.org/papers/w15524 | Miguel Almunia, Agustín Bénétrix, Barry Eichengreen, Kevin H. O’Rourke, and Gisela Rua. 2010. ‘From Great Depression to Great Credit Crisis: Similarities, Differences and Lessons.’ Economic Policy 25 (62): pp. 219–65. |
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");