sources
Data license: CC-BY
1 row where datasetId = 5140 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 |
---|---|---|---|---|---|---|---|---|
17870 | Wallis (2000), BEA (2020), FRED (2020) | { "link": "https://www.jstor.org/stable/2647051?seq=1#page_scan_tab_contents; https://www.bea.gov/data/government/receipts-and-expenditures; https://fred.stlouisfed.org/series/GNPA", "dataPublishedBy": "Wallis, J. J., (2000) American Government Finance in the Long Run: 1790 to 1990. Journal of Economic Perspectives, 14(1), pp. 61-82; US Bureau of Economic Analysis (2020); Federal Reserve Bank of St Louis (FRED)" } |
2020-07-29 09:21:59 | 2020-07-29 09:21:59 | TE-17.13_gov 5140 | https://www.jstor.org/stable/2647051?seq=1#page_scan_tab_contents; https://www.bea.gov/data/government/receipts-and-expenditures; https://fred.stlouisfed.org/series/GNPA | Wallis, J. J., (2000) American Government Finance in the Long Run: 1790 to 1990. Journal of Economic Perspectives, 14(1), pp. 61-82; US Bureau of Economic Analysis (2020); Federal Reserve Bank of St Louis (FRED) |
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");