# Parse Project Manager Resumes

**Use case:** 

Extract certifications, roles and skills from a project manager resume into fields your applicant tracking system can use.

## Input

```json
{
  "resumes": [
    {
      "text": "Robert Ellis, Seattle WA. Project Manager. Experience: Senior PM at Microsoft 2019 to present. PM at Boeing 2015 to 2019. Skills: Agile, Scrum, stakeholder management, budgeting. PMP certified. MBA, University of Washington."
    }
  ]
}
```

## 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.