sources
Data license: CC-BY
1 row where datasetId = 5150 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 |
---|---|---|---|---|---|---|---|---|
17880 | O’Brien and Hunt (1993), UK Public Revenue (2020) | { "link": "http://www.ukpublicrevenue.co.uk/download_multi_year_1700_2016UKk_16c1li011mcn_F1t10t40t; http://www.esfdb.org/table.aspx?resourceid=11686", "additionalInfo": "Data before 1700 is obtained from O\u2019Brien and Hunt (1993), after 1700 from UK Public Revenue (2020). Interpolation is used for years with missing data.", "dataPublishedBy": "UK Public Revenue (2020); Patrick K. O\u2019Brien and Philip A. Hunt (1993) \u2018The rise of a fiscal state in England, 1485-1815\u2019. Historical Research 66 (160): pp.129\u201376" } |
2020-08-03 11:12:52 | 2020-08-03 11:12:52 | TE-22.2 5150 | Data before 1700 is obtained from O’Brien and Hunt (1993), after 1700 from UK Public Revenue (2020). Interpolation is used for years with missing data. | http://www.ukpublicrevenue.co.uk/download_multi_year_1700_2016UKk_16c1li011mcn_F1t10t40t; http://www.esfdb.org/table.aspx?resourceid=11686 | UK Public Revenue (2020); Patrick K. O’Brien and Philip A. Hunt (1993) ‘The rise of a fiscal state in England, 1485-1815’. Historical Research 66 (160): pp.129–76 |
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");