enrich_person
Enhance person profiles by adding data such as contact details, social media links, job titles, and company information using People Data Labs' comprehensive dataset.
Instructions
Enrich a person profile with additional data from People Data Labs
Input Schema
Name | Required | Description | Default |
---|---|---|---|
company | No | Company name where the person works | |
No | Email address of the person | ||
location | No | Location of the person (city, state, country) | |
min_likelihood | No | Minimum likelihood score (0-1) for the match | |
name | No | Full name of the person | |
phone | No | Phone number of the person | |
profile | No | Social media profile URLs of the person | |
title | No | Job title of the person |
Input Schema (JSON Schema)
{
"anyOf": [
{
"required": [
"email"
]
},
{
"required": [
"phone"
]
},
{
"required": [
"name"
]
},
{
"required": [
"profile"
]
}
],
"properties": {
"company": {
"description": "Company name where the person works",
"type": "string"
},
"email": {
"description": "Email address of the person",
"type": "string"
},
"location": {
"description": "Location of the person (city, state, country)",
"type": "string"
},
"min_likelihood": {
"description": "Minimum likelihood score (0-1) for the match",
"maximum": 1,
"minimum": 0,
"type": "number"
},
"name": {
"description": "Full name of the person",
"type": "string"
},
"phone": {
"description": "Phone number of the person",
"type": "string"
},
"profile": {
"description": "Social media profile URLs of the person",
"items": {
"type": "string"
},
"type": "array"
},
"title": {
"description": "Job title of the person",
"type": "string"
}
},
"type": "object"
}