# Resume Parser for Chicago Candidates

**Use case:** 

Convert Chicago resumes into structured JSON for ATS integration.

## Input

```json
{
  "maxResumes": 5,
  "resumes": [
    {
      "text": "ROBERT JOHNSON\nChicago, IL | robert.johnson@example.com | (312) 555-0180 | linkedin.com/in/robertjohnson\n\nData Scientist\n\nSUMMARY\nData Scientist with expertise in machine learning and data visualization, passionate about turning data into actionable insights.\n\nSKILLS\nPython, R, SQL, TensorFlow, Tableau\n\nEXPERIENCE\nData Scientist, Analytics Co. (Feb 2021 - Present)\nDeveloped predictive models that increased sales by 25%.\n\nIntern Data Analyst, Data Insights (Jun 2020 - Jan 2021)\nAssisted in data cleaning and analysis for various projects.\n\nEDUCATION\nM.S. Data Science, University of Chicago, 2020\n\nLINKS\nhttps://github.com/robertjohnson"
    }
  ]
}
```

## Output

```json
{
  "fullName": {
    "label": "Name",
    "format": "text"
  },
  "email": {
    "label": "Email",
    "format": "text"
  },
  "phone": {
    "label": "Phone",
    "format": "text"
  },
  "location": {
    "label": "Location",
    "format": "text"
  },
  "headline": {
    "label": "Headline",
    "format": "text"
  },
  "summary": {
    "label": "Summary",
    "format": "text"
  },
  "skills": {
    "label": "Skills",
    "format": "array"
  },
  "experience": {
    "label": "Experience",
    "format": "array"
  },
  "education": {
    "label": "Education",
    "format": "array"
  },
  "links": {
    "label": "Links",
    "format": "array"
  },
  "sourceUrl": {
    "label": "Source URL",
    "format": "link"
  },
  "truncated": {
    "label": "Truncated",
    "format": "boolean"
  },
  "observedAt": {
    "label": "Parsed at",
    "format": "text"
  },
  "error": {
    "label": "Error",
    "format": "text"
  }
}
```

## About this Actor

This example demonstrates how to use [Tool: Resume & CV Parser to JSON](https://apify.com/scrapers_lat/resume-parser-tool) with a specific input configuration. Visit the [Actor detail page](https://apify.com/scrapers_lat/resume-parser-tool) to learn more, explore other use cases, and run it yourself.