sources
Data license: CC-BY
1 row where datasetId = 3163 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 |
---|---|---|---|---|---|---|---|---|
16667 | US Federal Reserve; US Bureau of Economic Analysis and The FRED (2016) | { "link": "Credit market debt: http://www.federalreserve.gov/releases/Z1/default.htm; Disposable income: http://www.bea.gov/\t\t\t\t\t\t\t\t\t", "additionalInfo": "The household debt to income ratio is outstanding households and nonprofit organizations credit market debt divided by disposable personal income. ", "dataPublishedBy": "US Federal Reserve. 2016. \u2018Financial Accounts of the United States, Historical\u2019. December 10; US Bureau of Economic Analysis" } |
2019-01-02 13:38:55 | 2019-01-02 13:38:55 | Figure_17.19 3163 | The household debt to income ratio is outstanding households and nonprofit organizations credit market debt divided by disposable personal income. | Credit market debt: http://www.federalreserve.gov/releases/Z1/default.htm; Disposable income: http://www.bea.gov/ | US Federal Reserve. 2016. ‘Financial Accounts of the United States, Historical’. December 10; US Bureau of Economic Analysis |
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");