sources
Data license: CC-BY
1 row where datasetId = 3030 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 |
---|---|---|---|---|---|---|---|---|
15434 | Cressy (1980) | { "link": "https://www.cambridge.org/core/books/literacy-and-the-social-order/9BF11637A57C37D8C833896E79BED5FF", "retrievedDate": "26/03/2018", "additionalInfo": "Original data provides the percentage who are illiterate. To arrive at current estimates: % who are literate = 100 - (% who are illiterate).", "dataPublishedBy": "Cressy, D., Literacy and the social order: reading and writing in Tudor and Stuart England (Cambridge, 1980). estimates illiteracy in the diocese of London (City and Middlesex) between, pp.1580-1700.", "dataPublisherSource": "Historical data - ecclesiastical court declarations" } |
2018-03-26 14:59:52 | 2018-03-26 14:59:52 | Male literacy rate (Cressy (1980)) (split) 3030 | Original data provides the percentage who are illiterate. To arrive at current estimates: % who are literate = 100 - (% who are illiterate). | https://www.cambridge.org/core/books/literacy-and-the-social-order/9BF11637A57C37D8C833896E79BED5FF | Cressy, D., Literacy and the social order: reading and writing in Tudor and Stuart England (Cambridge, 1980). estimates illiteracy in the diocese of London (City and Middlesex) between, pp.1580-1700. |
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");