sources
Data license: CC-BY
1 row where datasetId = 569 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 |
---|---|---|---|---|---|---|---|---|
2206 | Oil & Gas Employment - US Bureau of Labor Statistics (2017) | { "link": "https://data.bls.gov/timeseries/CES1021100001?data_tool=XGtable", "retrievedDate": "11/07/2017", "additionalInfo": "Dataset from BLS includes all employees working in oil & gas extraction in the United States.", "dataPublishedBy": "United States Bureau of Labor Statistics (BLS)", "dataPublisherSource": null } |
2017-07-11 17:25:01 | 2017-11-20 18:14:48 | Oil&Gas Employment and Rig Count - US Bureau of Labor Statistics (2017) 569 | Dataset from BLS includes all employees working in oil & gas extraction in the United States. | https://data.bls.gov/timeseries/CES1021100001?data_tool=XGtable | United States Bureau of Labor Statistics (BLS) |
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");