sources
Data license: CC-BY
1 row where datasetId = 4900 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 |
---|---|---|---|---|---|---|---|---|
17631 | U.S. Census Bureau | { "link": "https://www.census.gov/data/tables/time-series/demo/same-sex-couples/ssc-house-characteristics.html?#", "retrievedDate": "14 January 2020", "additionalInfo": "The series includes data for the period 2005-2008, but these estimates are not comparable to those for the period 2008-2018. This is because of changes in the survey questionnaires. The source notes: \"Changes in the questionnaire format and data capture procedures between 2007 and 2008 resulted in significant declines in the estimated number of same-sex partner households in 2008. For more explanation, see the following working paper: https://www.census.gov/library/working-papers/2010/demo/oconnell-01.html\"", "dataPublishedBy": "U.S. Census Bureau", "dataPublisherSource": "U.S. Census Bureau, 2005 through 2018 American Community Survey 1-year data files" } |
2020-01-14 11:16:05 | 2020-01-14 11:16:05 | Same-sex married households in the US 4900 | The series includes data for the period 2005-2008, but these estimates are not comparable to those for the period 2008-2018. This is because of changes in the survey questionnaires. The source notes: "Changes in the questionnaire format and data capture procedures between 2007 and 2008 resulted in significant declines in the estimated number of same-sex partner households in 2008. For more explanation, see the following working paper: https://www.census.gov/library/working-papers/2010/demo/oconnell-01.html" | https://www.census.gov/data/tables/time-series/demo/same-sex-couples/ssc-house-characteristics.html?# | U.S. Census Bureau |
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");