sources
Data license: CC-BY
1 row where datasetId = 245 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 |
---|---|---|---|---|---|---|---|---|
269 | US Bureau of the Census and NCES (2017) | { "link": "https://www.census.gov/data.html and https://nces.ed.gov/datatools/", "retrievedDate": "30/09/2017", "additionalInfo": null, "dataPublishedBy": "US Bureau of the Census and NCES (2017)", "dataPublisherSource": "US Census Bureau and NCES\nRevenue Data:\n(a) Historical Statistics of the United States Colonial Times to 1970 (1890-1970)\n\n(b) NCES Digest of Education Statistics 2015 (1970-2010)\nGDP Data:\n\n(c) Historical Statistics of the United States Colonial Times to 1970 (1890-1930)\n\n(d) US Census Bureau. Statistical Abstract of the United States: 2012 (1930-2010)" } |
2016-07-12 20:50:09 | 2017-11-02 13:04:39 | US Revenue Public Schools - US Bureau of the Census and NCES (2017) 245 | https://www.census.gov/data.html and https://nces.ed.gov/datatools/ | US Bureau of the Census and NCES (2017) |
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");