DWC COVID-19 Claims Data
State of California
@usgov.ca_gov_dwc_covid_19_claims_data
State of California
@usgov.ca_gov_dwc_covid_19_claims_data
The Division of Workers’ Compensation (DWC), Workers’ Compensation Information System (WCIS) has been collecting First Reports of Injury (FROI) and Subsequent Reports of Injury (SROI) submitted electronically by claims administrators and their trading partners using the International Association of Industrial Accident Boards and Commissions (IAIABC) FROI/SROI Release 1.0 standard since 2000. The numbers reflect the WCIS database information as of the run date of the report.
Organization: State of California
Last updated: 2025-08-23T12:53:51.117900
Tags: coronavirus, covid, covid-19, covid19, dwc
CREATE TABLE all_claims_vs_covid_19_claims (
"year" DOUBLE,
"month" VARCHAR,
"number_of_total_claims" BIGINT,
"number_of_total_denied_claims" BIGINT,
"number_of_covid_19_frois" BIGINT,
"number_of_covid_19_denials" BIGINT
);
CREATE TABLE covid_19_cases_by_injured_workers_age_group (
"year" DOUBLE,
"month" VARCHAR,
"n_14_17_years" BIGINT -- 14 - 17 Years,
"n_18_29_years" BIGINT -- 18 - 29 Years,
"n_30_49_years" BIGINT -- 30 - 49 Years,
"n_50_65_years" BIGINT -- 50 - 65 Years,
"n_66_and_over" BIGINT -- 66 And Over,
"age_unknown" BIGINT,
"total_covid_19_cases" BIGINT
);
Anyone who has the link will be able to view this.