# Chicago Building Violations Ward 1 Scraper

**Use case:** 

Scrape Chicago building violations in Ward 1 with docket number, NOV number, issuing department, and hearing date. Export structured data to CSV.

## Input

```json
{
  "ward": 1,
  "maxItems": 50
}
```

## Output

```json
{
  "id": {
    "label": "Id",
    "format": "text"
  },
  "docketNumber": {
    "label": "Docket Number",
    "format": "text"
  },
  "novNumber": {
    "label": "Nov Number",
    "format": "text"
  },
  "ward": {
    "label": "Ward",
    "format": "text"
  },
  "issuingDepartment": {
    "label": "Issuing Department",
    "format": "text"
  },
  "hearingDate": {
    "label": "Hearing Date",
    "format": "text"
  },
  "caseDisposition": {
    "label": "Case Disposition",
    "format": "date"
  },
  "imposedFine": {
    "label": "Imposed Fine",
    "format": "text"
  },
  "adminCosts": {
    "label": "Admin Costs",
    "format": "text"
  },
  "lastModifiedDate": {
    "label": "Last Modified Date",
    "format": "text"
  },
  "violationCode": {
    "label": "Violation Code",
    "format": "text"
  },
  "violationDescription": {
    "label": "Violation Description",
    "format": "date"
  },
  "violationDate": {
    "label": "Violation Date",
    "format": "text"
  },
  "respondents": {
    "label": "Respondents",
    "format": "text"
  },
  "address": {
    "label": "Address",
    "format": "text"
  },
  "streetNumber": {
    "label": "Street Number",
    "format": "text"
  }
}
```

## About this Actor

This example demonstrates how to use [Chicago Building Violations Scraper](https://apify.com/parseforge/chicago-building-violations-scraper) with a specific input configuration. Visit the [Actor detail page](https://apify.com/parseforge/chicago-building-violations-scraper) to learn more, explore other use cases, and run it yourself.