sources
Data license: CC-BY
1 row where datasetId = 2970 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 |
---|---|---|---|---|---|---|---|---|
15688 | Council of Economic Advisers and National Center for Health Statistics | { "link": "(i)https://www.whitehouse.gov/sites/default/files/docs/longtermhealthinsuranceseriesmethodologyfinal.pdf.(ii) http://www.cdc.gov/nchs/data/nhis/earlyrelease/earlyrelease201605_01.pdf", "retrievedDate": "19/07/2016", "additionalInfo": "For 1978-2015, both\u00a0CEA and NCHS\u00a0relied on historical data from the National Health Interview Survey (NHIS). \u00a0For years prior to 1978\u00a0CEA estimated the overall uninsured rate by combining information from the NHIS on trends in private coverage, with administrative data on Medicare and Medicaid enrollment during those years. See the links above for further details.", "dataPublishedBy": "(i) 1963-2013, Council of Economic Advisers; (ii) 2014-2015, National Center for Health Statistics", "dataPublisherSource": null } |
2018-09-21 06:20:03 | 2018-09-21 06:20:03 | Percentage of persons without health insurance - Council of Economic Advisers and National Center for Health Statistics 2970 | For 1978-2015, both CEA and NCHS relied on historical data from the National Health Interview Survey (NHIS). For years prior to 1978 CEA estimated the overall uninsured rate by combining information from the NHIS on trends in private coverage, with administrative data on Medicare and Medicaid enrollment during those years. See the links above for further details. | (i)https://www.whitehouse.gov/sites/default/files/docs/longtermhealthinsuranceseriesmethodologyfinal.pdf.(ii) http://www.cdc.gov/nchs/data/nhis/earlyrelease/earlyrelease201605_01.pdf | (i) 1963-2013, Council of Economic Advisers; (ii) 2014-2015, National Center for Health Statistics |
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");