sources
Data license: CC-BY
1 row where datasetId = 1003 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 |
---|---|---|---|---|---|---|---|---|
6863 | National Women's Law Center (2014) | { "link": "https://www.nwlc.org/wp-content/uploads/2015/08/women_are_76_percent_of_workers_in_the_10_largest_low-wage_jobs_and_suffer_a_10_percent_wage_gap_april_2014.pdf", "retrievedDate": "01/11/2017", "additionalInfo": null, "dataPublishedBy": "National Women's Law Center", "dataPublisherSource": "BLS, Occupational Employment Statistics, 2013 and Current Population Survey, 2013" } |
2017-11-04 22:47:16 | 2017-11-13 17:11:38 | Lowest paying occupations, percent female – NWLC (2014) 1003 | https://www.nwlc.org/wp-content/uploads/2015/08/women_are_76_percent_of_workers_in_the_10_largest_low-wage_jobs_and_suffer_a_10_percent_wage_gap_april_2014.pdf | National Women's Law Center |
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");