sources
Data license: CC-BY
1 row where datasetId = 296 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 |
---|---|---|---|---|---|---|---|---|
399 | Wallis (2000) | { "link": "http://www.jstor.org/stable/2647051", "retrievedDate": "20/09/2016", "additionalInfo": "Source notes: Data after 1902 taken from Department of Commerce (1975, 1985, 1997) and Advisory on Intergovernmental Relations (1994). State revenues 1800 to 1900, data collected by Sylla, Legler, and Wallis. Local revenues 1840 to 1890, Legler, Sylla, and Wallis (1988). GNP from Gallman (1966), up to 1860; remaining years up to 1929 from Balke and Gordon (1989).", "dataPublishedBy": "Wallis, J. J. (2000). American government finance in the long run: 1790 to 1990.\u00a0The Journal of Economic Perspectives,\u00a014(1), 61-82.", "dataPublisherSource": "Various sources (see notes below)" } |
2016-09-21 02:02:55 | 2017-11-02 13:04:39 | Government Revenue – Wallis (2000) 296 | Source notes: Data after 1902 taken from Department of Commerce (1975, 1985, 1997) and Advisory on Intergovernmental Relations (1994). State revenues 1800 to 1900, data collected by Sylla, Legler, and Wallis. Local revenues 1840 to 1890, Legler, Sylla, and Wallis (1988). GNP from Gallman (1966), up to 1860; remaining years up to 1929 from Balke and Gordon (1989). | http://www.jstor.org/stable/2647051 | Wallis, J. J. (2000). American government finance in the long run: 1790 to 1990. The Journal of Economic Perspectives, 14(1), 61-82. |
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");