sources
Data license: CC-BY
1 row where datasetId = 1932 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 |
---|---|---|---|---|---|---|---|---|
13935 | Patents awarded in England, Scotland and Wales - Bottomley | { "link": "https://www.sciencedirect.com/science/article/pii/S0014498314000321#bb0230", "retrievedDate": "2018-01-30", "additionalInfo": "The annual number of patents awarded across all industries and sectors in England, Scotland and Ireland across the period of the Industrial Revolution (1700-1852). ", "dataPublishedBy": "Bottomley, S. (2014). Patenting in England, Scotland and Ireland during the industrial revolution, 1700\u20131852. Explorations in Economic History, 54, 48-63.", "dataPublisherSource": null } |
2018-01-30 18:15:28 | 2023-05-05 09:16:48 | Patents awarded in England, Scotland and Wales - Bottomley 1932 | The annual number of patents awarded across all industries and sectors in England, Scotland and Ireland across the period of the Industrial Revolution (1700-1852). | https://www.sciencedirect.com/science/article/pii/S0014498314000321#bb0230 | Bottomley, S. (2014). Patenting in England, Scotland and Ireland during the industrial revolution, 1700–1852. Explorations in Economic History, 54, 48-63. |
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");