# Extract Jobs with Salary Ranges from Workday Sites

**Use case:** 

Pull jobs with published pay ranges from Workday careers sites: salary min, max, and currency extracted from each posting, plus titles, locations, and links.

## Input

```json
{
  "startUrls": [
    {
      "url": "https://nvidia.wd5.myworkdayjobs.com/NVIDIAExternalCareerSite"
    }
  ],
  "searchText": "",
  "maxJobsPerSite": 300,
  "includeDetails": true,
  "descriptionFormat": "both",
  "detailConcurrency": 5
}
```

## Output

```json
{
  "title": {
    "label": "Job Title",
    "format": "string"
  },
  "company": {
    "label": "Company",
    "format": "string"
  },
  "locationsText": {
    "label": "Locations Text",
    "format": "string"
  },
  "salaryText": {
    "label": "Salary Text",
    "format": "string"
  },
  "salaryMin": {
    "label": "Salary Min",
    "format": "number"
  },
  "salaryMax": {
    "label": "Salary Max",
    "format": "number"
  },
  "salaryCurrency": {
    "label": "Salary Currency",
    "format": "string"
  },
  "url": {
    "label": "Job URL",
    "format": "string"
  }
}
```

## About this Actor

This example demonstrates how to use [Workday Careers API](https://apify.com/johnvc/workday-careers-api) with a specific input configuration. Visit the [Actor detail page](https://apify.com/johnvc/workday-careers-api) to learn more, explore other use cases, and run it yourself.