sources
Data license: CC-BY
1 row where datasetId = 2800 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 |
---|---|---|---|---|---|---|---|---|
15537 | Ramey and Francis (2009) | { "link": "http://econweb.ucsd.edu/~vramey/research/Century_Published.pdf", "retrievedDate": "06/06/2018", "additionalInfo": null, "dataPublishedBy": "Ramey, V.A. and Francis, N., 2009. A century of work and leisure. American Economic Journal: Macroeconomics, 1(2), pp.189-224.", "dataPublisherSource": "Census and current population surveys, time use surveys, census data and government statistics" } |
2018-06-06 10:33:50 | 2018-06-06 15:04:55 | A Century of Work and Leisure - Ramey and Francis (2009) 2800 | http://econweb.ucsd.edu/~vramey/research/Century_Published.pdf | Ramey, V.A. and Francis, N., 2009. A century of work and leisure. American Economic Journal: Macroeconomics, 1(2), pp.189-224. |
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");