sources
Data license: CC-BY
2 rows where datasetId = 6082 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 |
---|---|---|---|---|---|---|---|---|
29579 | YouGov (2023) | { "link": "https://docs.cdn.yougov.com/0jv1wfqlmo/results_AI%20Effects%20on%20Job%20Market.pdf", "retrievedDate": "2023-06-08", "additionalInfo": "\nSurvey conducted on 2000 U.S. adults between March 9 - 16, 2023 on what people think the effects of AI will be on job markets.", "dataPublishedBy": "AI Effects on Job Market (YouGov Survey, 2023)" } |
2023-12-14 12:07:01 | 2024-07-08 17:29:28 | AI Effects on Job Market (YouGov Survey, 2023) 6082 | Survey conducted on 2000 U.S. adults between March 9 - 16, 2023 on what people think the effects of AI will be on job markets. | https://docs.cdn.yougov.com/0jv1wfqlmo/results_AI%20Effects%20on%20Job%20Market.pdf | AI Effects on Job Market (YouGov Survey, 2023) |
27737 | YouGov (2023) | { "link": "https://docs.cdn.yougov.com/0jv1wfqlmo/results_AI%20Effects%20on%20Job%20Market.pdf", "retrievedDate": "2023-06-08", "additionalInfo": "Survey conducted on 2000 U.S. adults between March 9 - 16, 2023 on what people think the effects of AI will be on job markets.", "dataPublishedBy": "AI Effects on Job Market (YouGov Survey, 2023)" } |
2023-06-27 09:41:42 | 2024-07-08 17:29:28 | AI Effects on Job Market (YouGov Survey, 2023) 6082 | Survey conducted on 2000 U.S. adults between March 9 - 16, 2023 on what people think the effects of AI will be on job markets. | https://docs.cdn.yougov.com/0jv1wfqlmo/results_AI%20Effects%20on%20Job%20Market.pdf | AI Effects on Job Market (YouGov Survey, 2023) |
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");