# Resume Parser for New York Professionals

**Use case:** 

Transform resumes from New York into structured JSON format for analysis.

## Input

```json
{
  "maxResumes": 15,
  "resumes": [
    {
      "text": "JOHN DOE\nNew York, NY | john.doe@example.com | (212) 555-0199 | linkedin.com/in/johndoe\n\nProduct Manager\n\nSUMMARY\nExperienced Product Manager with a track record in tech startups. Skilled in agile development and cross-functional leadership.\n\nSKILLS\nAgile, Scrum, Product Development, Market Research, User Experience\n\nEXPERIENCE\nProduct Manager, Tech Innovations (Mar 2019 - Present)\nLed product strategy for a suite of applications. Increased user engagement by 30%.\n\nAssociate Product Manager, Startups Inc. (Jan 2017 - Feb 2019)\nAssisted in the launch of new products and coordinated with engineering teams.\n\nEDUCATION\nM.S. Business Administration, New York University, 2016\n\nLINKS\nhttps://github.com/johndoe"
    }
  ]
}
```

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