sources
Data license: CC-BY
1 row where datasetId = 4102 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 |
---|---|---|---|---|---|---|---|---|
16932 | US Federal Reserve (2016), Bank of England (2012) | { "link": "US data: http://www.federalreserve.gov/releases/Z1/default.htm; UK data: https://www.bankofengland.co.uk/financial-stability-report/2012/june-2012", "additionalInfo": "Most recent UK data received directly from the \u200bBank of England.", "dataPublishedBy": "US Federal Reserve. 2016. \u2018Financial Accounts of the United States, Historical.\u2019 December 10; Bank of England. 2012. Financial Stability Report, Issue 31." } |
2019-05-05 20:09:10 | 2019-05-05 20:09:10 | Figure 17.21_updated 4102 | Most recent UK data received directly from the Bank of England. | US data: http://www.federalreserve.gov/releases/Z1/default.htm; UK data: https://www.bankofengland.co.uk/financial-stability-report/2012/june-2012 | US Federal Reserve. 2016. ‘Financial Accounts of the United States, Historical.’ December 10; Bank of England. 2012. Financial Stability Report, Issue 31. |
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");