sources
Data license: CC-BY
1 row where datasetId = 2425 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 |
---|---|---|---|---|---|---|---|---|
14428 | Ellison (1886) | { "link": "https://archive.org/details/cottontradeofgre00elli", "retrievedDate": "15/02/2018", "additionalInfo": "Full reference: Ellison, T., 1886. The cotton trade of Great Britain: including a history of the Liverpool cotton market and of the Liverpool cotton brokers' association. E. Wilson. [Please see the table at the bottom of page 68 titled 'YARN' and the table at the top of page 69 titled 'GOODS' for the original data.]", "dataPublishedBy": "Ellison, T., 1886. The cotton trade of Great Britain: including a history of the Liverpool cotton market and of the Liverpool cotton brokers' association. E. Wilson.", "dataPublisherSource": "Historical data. " } |
2018-02-15 14:51:02 | 2018-02-16 16:34:57 | Labor productivity in cotton spinning and weaving (Ellison (1886)) 2425 | Full reference: Ellison, T., 1886. The cotton trade of Great Britain: including a history of the Liverpool cotton market and of the Liverpool cotton brokers' association. E. Wilson. [Please see the table at the bottom of page 68 titled 'YARN' and the table at the top of page 69 titled 'GOODS' for the original data.] | https://archive.org/details/cottontradeofgre00elli | Ellison, T., 1886. The cotton trade of Great Britain: including a history of the Liverpool cotton market and of the Liverpool cotton brokers' association. E. Wilson. |
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");