# Parse Ofsted Children's Home Report PDF

**Use case:** 

Pass direct files.ofsted.gov.uk PDF URLs as start URLs with max_depth: 1 to skip crawling and extract structured data straight from the PDFs.

## Input

```json
{
  "start_urls": [
    {
      "url": "https://files.ofsted.gov.uk/v1/file/50305056"
    }
  ],
  "only_latest_inspection": true,
  "include_unsupported": true,
  "max_depth": 1,
  "enable_db_export": false,
  "rescrape": false
}
```

## Output

```json
{
  "PDF URL": {
    "label": "PDF URL",
    "format": "link"
  },
  "Unique reference number": {
    "label": "URN",
    "format": "text"
  },
  "Registered provider": {
    "label": "Registered Provider",
    "format": "text"
  },
  "Registered provider address": {
    "label": "Provider Address",
    "format": "text"
  },
  "Provision sub-type": {
    "label": "Provision Sub-type",
    "format": "text"
  },
  "Responsible individual": {
    "label": "Responsible Individual",
    "format": "text"
  },
  "Registered manager": {
    "label": "Registered Manager",
    "format": "text"
  },
  "Inspection dates": {
    "label": "Inspection Dates",
    "format": "text"
  },
  "Inspection type": {
    "label": "Inspection Type",
    "format": "text"
  },
  "Overall experiences and progress": {
    "label": "Overall Experiences & Progress",
    "format": "text"
  },
  "Help and protection": {
    "label": "Help & Protection",
    "format": "text"
  },
  "Leadership and management": {
    "label": "Leadership & Management",
    "format": "text"
  },
  "Date of last inspection": {
    "label": "Last Inspection Date",
    "format": "text"
  },
  "Overall judgement at last inspection": {
    "label": "Last Inspection Judgement",
    "format": "text"
  },
  "Enforcement action since last inspection": {
    "label": "Enforcement Action",
    "format": "text"
  },
  "Inspectors": {
    "label": "Inspectors",
    "format": "array"
  },
  "Home Capacity": {
    "label": "Home Capacity",
    "format": "number"
  },
  "Home Type": {
    "label": "Home Type",
    "format": "text"
  }
}
```

## About this Actor

This example demonstrates how to use [Ofsted Reports Data Scraper](https://apify.com/alkausari_mujahid/ofsted-reports-data-scraper) with a specific input configuration. Visit the [Actor detail page](https://apify.com/alkausari_mujahid/ofsted-reports-data-scraper) to learn more, explore other use cases, and run it yourself.