sources
Data license: CC-BY
1 row where datasetId = 3199 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 |
---|---|---|---|---|---|---|---|---|
16703 | BLS (2004); ILO (2018) | { "link": "https://www.bls.gov/fls/; https://www.ilo.org/global/statistics-and-databases/research-and-databases/kilm/lang--en/index.htm; https://data.worldbank.org/indicator/SL.IND.EMPL.ZS?locations=DE-FR-KR-GB-US-JP-TW-CN ", "additionalInfo": "International Labour Organization, ILOSTAT database accessed through The World Bank indicators.", "dataPublishedBy": "US Bureau of Labor Statistics (2004). International Labor Comparisons (ILC). Updated 14 October; International Labour Association (2018). ILOSTAT Database" } |
2019-01-26 21:54:42 | 2019-01-26 21:54:42 | TE-16.18 3199 | International Labour Organization, ILOSTAT database accessed through The World Bank indicators. | https://www.bls.gov/fls/; https://www.ilo.org/global/statistics-and-databases/research-and-databases/kilm/lang--en/index.htm; https://data.worldbank.org/indicator/SL.IND.EMPL.ZS?locations=DE-FR-KR-GB-US-JP-TW-CN | US Bureau of Labor Statistics (2004). International Labor Comparisons (ILC). Updated 14 October; International Labour Association (2018). ILOSTAT Database |
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");