# Roll up California labor enforcement by employer

**Use case:** 

Aggregate DOL OSHA and wage-hour enforcement cases in California since 2023 by employer — counts, penalties and repeat-offender flags.

## Input

```json
{
  "apiKey": "***",
  "mode": "rollup",
  "sources": [],
  "state": "CA",
  "sinceDate": "2023-01-01",
  "repeatThreshold": 1,
  "maxResults": 500
}
```

## Output

```json
{
  "employer_name": {
    "label": "Employer name",
    "format": "string"
  },
  "agency": {
    "label": "Agency",
    "format": "string"
  },
  "state": {
    "label": "State",
    "format": "string"
  },
  "naics": {
    "label": "NAICS",
    "format": "string"
  },
  "total_cases": {
    "label": "Total cases",
    "format": "number"
  },
  "total_back_wages": {
    "label": "Total back wages",
    "format": "number"
  },
  "total_employees": {
    "label": "Total employees affected",
    "format": "number"
  },
  "repeat_violator": {
    "label": "Repeat violator",
    "format": "boolean"
  },
  "first_finding": {
    "label": "First finding",
    "format": "string"
  },
  "last_finding": {
    "label": "Last finding",
    "format": "string"
  }
}
```

## About this Actor

This example demonstrates how to use [DOL Enforcement Rollup — Employer Wage-Theft Violator API](https://apify.com/malonestar/dol-enforcement-rollup) with a specific input configuration. Visit the [Actor detail page](https://apify.com/malonestar/dol-enforcement-rollup) to learn more, explore other use cases, and run it yourself.