# California OSHA Construction Amputation Extractor

**Use case:** 

Extract OSHA severe injury reports for California construction amputations by NAICS prefix, employer, city, and narrative.

## Input

```json
{
  "maxItems": 250,
  "startDate": "2023-01-01",
  "states": [
    "CA"
  ],
  "naicsPrefixes": [
    "23"
  ],
  "hospitalizedOnly": false,
  "amputationOnly": true,
  "lossOfEyeOnly": false,
  "includeRawRecord": false
}
```

## Output

```json
{
  "reportId": {
    "label": "OSHA report ID"
  },
  "eventDate": {
    "label": "Event date",
    "format": "date"
  },
  "employer": {
    "label": "Employer"
  },
  "city": {
    "label": "City"
  },
  "state": {
    "label": "State"
  },
  "primaryNaics": {
    "label": "Primary NAICS"
  },
  "hospitalizedCount": {
    "label": "Hospitalized"
  },
  "amputationCount": {
    "label": "Amputations"
  },
  "lossOfEyeCount": {
    "label": "Loss of eye"
  },
  "inspectionId": {
    "label": "Inspection ID"
  },
  "finalNarrative": {
    "label": "Final narrative"
  },
  "natureTitle": {
    "label": "Nature"
  },
  "partOfBodyTitle": {
    "label": "Part of body"
  },
  "eventTitle": {
    "label": "Event"
  },
  "sourceTitle": {
    "label": "Source"
  },
  "datasetFilename": {
    "label": "Dataset file"
  },
  "datasetUrl": {
    "label": "Dataset URL",
    "format": "link"
  },
  "scrapedAt": {
    "label": "Scraped at",
    "format": "date"
  }
}
```

## About this Actor

This example demonstrates how to use [OSHA Severe Injury Reports Scraper](https://apify.com/automation-lab/osha-severe-injury-reports-scraper) with a specific input configuration. Visit the [Actor detail page](https://apify.com/automation-lab/osha-severe-injury-reports-scraper) to learn more, explore other use cases, and run it yourself.