sources
Data license: CC-BY
2 rows where datasetId = 5920 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 |
---|---|---|---|---|---|---|---|---|
29555 | U.S. Bureau of Labor Statistics (2023) | { "link": "https://www.bls.gov/data/tools.htm", "retrievedDate": "2023-03-09", "additionalInfo": "\nThe Bureau of Labor Statistics report on the monthly Consumer Price Index (CPI) of individual goods and services for urban consumers at the national, city, and state level.\n\nCPI is presented on an annual basis, which we have derived as the average of the monthly CPIs in a given year.\n", "dataPublishedBy": "U.S. Bureau of Labor Statistics" } |
2023-12-14 12:02:57 | 2024-05-05 18:56:08 | USA consumer prices (U.S. Bureau of Labor Statistics, 2023) 5920 | The Bureau of Labor Statistics report on the monthly Consumer Price Index (CPI) of individual goods and services for urban consumers at the national, city, and state level. CPI is presented on an annual basis, which we have derived as the average of the monthly CPIs in a given year. | https://www.bls.gov/data/tools.htm | U.S. Bureau of Labor Statistics |
27428 | U.S. Bureau of Labor Statistics (2023) | { "link": "https://www.bls.gov/data/tools.htm", "retrievedDate": "2023-03-09", "additionalInfo": "The Bureau of Labor Statistics report on the monthly Consumer Price Index (CPI) of individual goods and services for urban consumers at the national, city, and state level.\n\nCPI is presented on an annual basis, which we have derived as the average of the monthly CPIs in a given year.\n", "dataPublishedBy": "U.S. Bureau of Labor Statistics" } |
2023-03-13 11:05:04 | 2024-05-05 18:56:07 | USA consumer prices (U.S. Bureau of Labor Statistics, 2023) 5920 | The Bureau of Labor Statistics report on the monthly Consumer Price Index (CPI) of individual goods and services for urban consumers at the national, city, and state level. CPI is presented on an annual basis, which we have derived as the average of the monthly CPIs in a given year. | https://www.bls.gov/data/tools.htm | U.S. Bureau of Labor Statistics |
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");