# Export All NXP Jobs with Salaries and Locations

**Use case:** 

Get every live NXP job posting from its Workday careers site as JSON: titles, locations, posted dates, pay ranges, and apply URLs. Pay per result.

## Input

```json
{
  "startUrls": [
    {
      "url": "https://nxp.wd3.myworkdayjobs.com/careers"
    }
  ],
  "searchText": "",
  "maxJobsPerSite": 0,
  "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"
  },
  "postedDate": {
    "label": "Posted Date",
    "format": "string"
  },
  "postedOn": {
    "label": "Posted (relative)",
    "format": "string"
  },
  "timeType": {
    "label": "Time Type",
    "format": "string"
  },
  "remoteType": {
    "label": "Remote Type",
    "format": "string"
  },
  "jobReqId": {
    "label": "Requisition ID",
    "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.