sources
Data license: CC-BY
1 row where datasetId = 2842 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 |
---|---|---|---|---|---|---|---|---|
15573 | Bairoch (1988) | { "link": "http://press.uchicago.edu/ucp/books/book/chicago/C/bo5971175.html", "retrievedDate": "19/07/2018", "additionalInfo": "See Table 29.1 (pp. 459) for original data.", "dataPublishedBy": "Bairoch, P., 1988. Cities and Economic Development, translated by Christopher Braider.", "dataPublisherSource": "Historical and scholarly sources." } |
2018-07-19 16:49:26 | 2018-08-15 13:56:57 | Levels of Urbanization and per capita GNP in Various Regions - Bairoch (1988) 2842 | See Table 29.1 (pp. 459) for original data. | http://press.uchicago.edu/ucp/books/book/chicago/C/bo5971175.html | Bairoch, P., 1988. Cities and Economic Development, translated by Christopher Braider. |
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");