> ## Documentation Index
> Fetch the complete documentation index at: https://docs.peopledatalabs.com/llms.txt
> Use this file to discover all available pages before exploring further.

# Output Response - Job Title Enrichment API

## Response Data Structure

Here is the structure of an example response from the Job Title Enrichment API:

```json
{
  "cleaned_job_title": "supply manager",
  "similar_job_titles": [
    "senior supply manager",
    "supply chain manager",
    "supply specialist",
    "supply supervisor",
    "supply coordinator"
  ],
  "relevant_skills": [
    "supply management",
    "spend analysis",
    "supplier development",
    "demand planning",
    "strategic sourcing"
  ]
}
```

## Response Fields

### `cleaned_job_title`

| Type     | Description                                                                                                   |
| :------- | :------------------------------------------------------------------------------------------------------------ |
| `String` | The job title that matches the API input `job_title` after passing it through our internal job title cleaner. |

<br />

### `similar_job_titles`

| Type             | Description                                                                                                                           |
| :--------------- | :------------------------------------------------------------------------------------------------------------------------------------ |
| `Array [String]` | A list of up to five of the most contextually-similar job titles to the `cleaned_job_title`, determined using our global resume data. |

<br />

### `relevant_skills`

| Type             | Description                                                                                                                       |
| :--------------- | :-------------------------------------------------------------------------------------------------------------------------------- |
| `Array [String]` | A list of up to five of the most contextually-similar skills to the `cleaned_job_title`, determined using our global resume data. |