sources
Data license: CC-BY
1 row where datasetId = 700 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 |
---|---|---|---|---|---|---|---|---|
2860 | GDP in England (using BoE (2017)) | { "link": "http://www.bankofengland.co.uk/research/Pages/datasets/default.aspx#threecenturies", "retrievedDate": "25/08/2017", "additionalInfo": "This dataset is produced using \u2018A1. Headline Series\u2019 sheet of the BoE dataset. The variables Real GDP (at market prices) and Population are taken directly from BoE. Real GDP per capita is, however, calculated by dividing Real GDP with Population.\u00a0", "dataPublishedBy": "Bank of England (BoE) 2017", "dataPublisherSource": "Broadberry, S., Campbell, B. M., Klein, A., Overton, M., & Van Leeuwen, B. (2015).\u00a0British economic growth, 1270\u20131870.\u00a0Cambridge University Press." } |
2017-08-25 12:02:37 | 2017-11-09 14:16:23 | GDP in England (using BoE, 2017) 700 | This dataset is produced using ‘A1. Headline Series’ sheet of the BoE dataset. The variables Real GDP (at market prices) and Population are taken directly from BoE. Real GDP per capita is, however, calculated by dividing Real GDP with Population. | http://www.bankofengland.co.uk/research/Pages/datasets/default.aspx#threecenturies | Bank of England (BoE) 2017 |
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");