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

# Deepline Native Job Change: Inputs, Cost & CLI Example

> Detect a person's recent job change. Includes inputs, outputs, pricing notes, Deepline CLI examples, and GTM automation guidance.

## Run in Enrichment Spreadsheet

<Info>
  Use this function as a column step in `deepline enrich`.
</Info>

```bash theme={null}
deepline enrich --input leads.csv --output leads.enriched.csv --with 'result=deepline_native_job_change:{}' --json
```

<Tip>
  Map payload values to spreadsheet columns with `{{column_name}}` placeholders.
</Tip>

## Input Schema

| Name                         | Type     | Required | Default | Description                                                                                |
| ---------------------------- | -------- | -------- | ------- | ------------------------------------------------------------------------------------------ |
| `payload.company_domain`     | `string` | No       |         | Domain of the person's previous/current employer (2-500 chars, e.g. acme.com).             |
| `payload.company_linkedin`   | `string` | No       |         | LinkedIn company page URL or ID of the person's previous/current employer (max 500 chars). |
| `payload.professional_email` | `string` | No       |         | Work email address of the contact (max 254 chars).                                         |
| `payload.personal_email`     | `string` | No       |         | Personal email address of the contact (max 254 chars).                                     |
| `payload.contact_linkedin`   | `string` | No       |         | LinkedIn profile URL or ID of the contact (max 500 chars).                                 |
| `payload.contact_full_name`  | `string` | No       |         | Full name of the contact when LinkedIn is unavailable (max 250 chars).                     |
| `payload.custom_fields`      | `record` | No       |         | Opaque metadata echoed back in finder responses via custom\_fields (max 16 keys).          |

<details>
  <summary>Show raw input schema</summary>

  ### Input JSON Schema

  ```json theme={null}
  {
    "type": "object",
    "description": "Detect whether a person has changed jobs. Charges $0.14 only when job_change_status is \"moved\". Returns output.job_change_status and an optional person profile.",
    "properties": {
      "company_domain": {
        "type": "string",
        "description": "Domain of the person's previous/current employer (2-500 chars, e.g. acme.com)."
      },
      "company_linkedin": {
        "type": "string",
        "description": "LinkedIn company page URL or ID of the person's previous/current employer (max 500 chars)."
      },
      "professional_email": {
        "type": "string",
        "description": "Work email address of the contact (max 254 chars)."
      },
      "personal_email": {
        "type": "string",
        "description": "Personal email address of the contact (max 254 chars)."
      },
      "contact_linkedin": {
        "type": "string",
        "description": "LinkedIn profile URL or ID of the contact (max 500 chars)."
      },
      "contact_full_name": {
        "type": "string",
        "description": "Full name of the contact when LinkedIn is unavailable (max 250 chars)."
      },
      "custom_fields": {
        "type": "object",
        "description": "Opaque metadata echoed back in finder responses via custom_fields (max 16 keys).",
        "additionalProperties": {
          "anyOf": [
            {
              "type": "string"
            },
            {
              "type": "number"
            },
            {
              "type": "boolean"
            }
          ]
        }
      }
    },
    "additionalProperties": false
  }
  ```
</details>

## Output Schema

| Name          | Type     | Required | Default | Description                                    |
| ------------- | -------- | -------- | ------- | ---------------------------------------------- |
| `result.data` | `record` | Yes      |         | Provider response payload.                     |
| `result.meta` | `record` | No       |         | Additional response metadata (status, paging). |

<details>
  <summary>Show raw output schema</summary>

  ### Output JSON Schema

  ```json theme={null}
  {
    "type": "object",
    "description": "Standard tool result payload.",
    "properties": {
      "data": {
        "type": "object",
        "description": "Provider response payload.",
        "additionalProperties": {}
      },
      "meta": {
        "type": "object",
        "description": "Additional response metadata (status, paging).",
        "additionalProperties": {}
      }
    },
    "required": [
      "data"
    ],
    "additionalProperties": false
  }
  ```
</details>

## Advanced: Direct CLI

<Info>
  Use direct execution for single payload debugging.
</Info>

```bash theme={null}
deepline tools execute deepline_native_job_change --payload '{}' --json
```

### CLI flags

| Flag                        | Description                                         |
| --------------------------- | --------------------------------------------------- |
| `--json`                    | Print machine-readable output.                      |
| `--wait`                    | Wait for terminal provider status when supported.   |
| `--debug`                   | Enable wait mode with additional status/log output. |
| `--wait-timeout SECONDS`    | Max seconds to wait in wait mode.                   |
| `--poll-interval SECONDS`   | Polling interval in seconds during wait mode.       |
| `--timeout SECONDS`         | Request timeout in seconds.                         |
| `--connect-timeout SECONDS` | Connection timeout in seconds.                      |

## Cost

* Pricing model: `per_result` (per result).
* Estimated Deepline credits: `1.96` per pricing unit.
* Billing mode: `post_deduct`.
