# Labor Overtime Wage Register Scraper

**Use case:** 

Extract Department of Labor overtime and wage rules from the Federal Register. Get titles, dates, agencies, and document links in structured, ready to use data.

## Input

```json
{
  "maxDocuments": 10,
  "withDetails": true,
  "term": "overtime",
  "documentTypes": [
    "RULE",
    "PRORULE"
  ],
  "agencies": [
    "labor-department",
    "wage-and-hour-division"
  ]
}
```

## Output

```json
{
  "title": {
    "label": "Title",
    "format": "text"
  },
  "type": {
    "label": "Type",
    "format": "text"
  },
  "documentNumber": {
    "label": "Document Number",
    "format": "text"
  },
  "publicationDate": {
    "label": "Published",
    "format": "text"
  },
  "agencies": {
    "label": "Agencies",
    "format": "array"
  },
  "citation": {
    "label": "Citation",
    "format": "text"
  },
  "htmlUrl": {
    "label": "URL",
    "format": "link"
  },
  "observedAt": {
    "label": "Scraped",
    "format": "date"
  },
  "error": {
    "label": "Error",
    "format": "text"
  }
}
```

## About this Actor

This example demonstrates how to use [Federal Register Rules & Notices Scraper (USA)](https://apify.com/scrapers_lat/federal-register-scraper) with a specific input configuration. Visit the [Actor detail page](https://apify.com/scrapers_lat/federal-register-scraper) to learn more, explore other use cases, and run it yourself.