sources
Data license: CC-BY
1 row where datasetId = 2427 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 |
---|---|---|---|---|---|---|---|---|
14430 | Musson (1976) | { "link": "https://www.jstor.org/stable/2595302", "retrievedDate": "15/02/2018", "additionalInfo": "Data published by: Musson, A. E. \u201cIndustrial Motive Power in the United Kingdom, 1800-70.\u201d The Economic History Review, vol. 29, no. 3, 1976, pp. 415\u2013439. JSTOR, JSTOR, www.jstor.org/stable/2595302. Adapted from table on page 424.", "dataPublishedBy": "Musson (1976) - Industrial Motive Power in the United Kingdom, 1800\u201370 ", "dataPublisherSource": "Historical data" } |
2018-02-15 15:46:22 | 2018-02-15 16:01:59 | Industrial motive power in the UK 1800-70 (Musson (1976)) 2427 | Data published by: Musson, A. E. “Industrial Motive Power in the United Kingdom, 1800-70.” The Economic History Review, vol. 29, no. 3, 1976, pp. 415–439. JSTOR, JSTOR, www.jstor.org/stable/2595302. Adapted from table on page 424. | https://www.jstor.org/stable/2595302 | Musson (1976) - Industrial Motive Power in the United Kingdom, 1800–70 |
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");