sources
Data license: CC-BY
1 row where datasetId = 4905 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 |
---|---|---|---|---|---|---|---|---|
17636 | A Millennium of Macroeconomic Data - Bank of England | { "link": "https://www.bankofengland.co.uk/statistics/research-datasets", "retrievedDate": "21/01/2020", "additionalInfo": "This dataset consists of all the variables from the Headline Annual Composite Series and real GDP per capita taken from the 'Summary of Population and GDP per capita 1086-2016' worksheet available from the Bank of England's 'A Millennium of Macroeconomic Data'.", "dataPublishedBy": "Bank of England", "dataPublisherSource": "Historical data" } |
2020-01-21 16:54:55 | 2020-01-21 16:54:55 | A Millennium of Macroeconomic Data - Bank of England (2016) 4905 | This dataset consists of all the variables from the Headline Annual Composite Series and real GDP per capita taken from the 'Summary of Population and GDP per capita 1086-2016' worksheet available from the Bank of England's 'A Millennium of Macroeconomic Data'. | https://www.bankofengland.co.uk/statistics/research-datasets | Bank of England |
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");