sources
Data license: CC-BY
1 row where datasetId = 2822 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 |
---|---|---|---|---|---|---|---|---|
15553 | US Census Bureau (2010) | { "link": "https://www.census.gov/population/censusdata/table-4.pdf and https://www.census.gov/prod/cen2010/cph-2-1.pdf (Table 4, page 6)", "retrievedDate": "21/06/2018", "additionalInfo": "For further information on the US Census Bureau's urban and rural classifications see: https://www.census.gov/geo/reference/ua/uafaq.html or https://www.census.gov/geo/reference/ua/urban-rural-2010.html", "dataPublishedBy": "US Census Bureau", "dataPublisherSource": "National statistics" } |
2018-06-21 09:37:06 | 2018-06-21 09:37:06 | Urban and rural populations in the United States - US Census Bureau (2010) 2822 | For further information on the US Census Bureau's urban and rural classifications see: https://www.census.gov/geo/reference/ua/uafaq.html or https://www.census.gov/geo/reference/ua/urban-rural-2010.html | https://www.census.gov/population/censusdata/table-4.pdf and https://www.census.gov/prod/cen2010/cph-2-1.pdf (Table 4, page 6) | US 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");