Contact Info
Contact Info Overview
AdeptID captures contact information for individuals and organizations in a standard schema/format.
Contact Info Schema
AdeptID's Contact Info Schema captures typical contact information detail such as name, telephone(s), email address(es) and web address(es) of a contact, and additionally extends AdeptID's Location schema.
FIELD | TYPE | SHORT DESCRIPTION |
---|---|---|
name | Name object | |
location | Location object | See Location for schema information. |
telephones | array of Telephone objects | |
email_addresses | array of strings | Listed email addresses |
web_addresses | array of Web Address objects |
Name
FIELD | TYPE | SHORT DESCRIPTION |
---|---|---|
prefix | string | Name prefix |
full_name | string | Full name |
first_name | string | First (i.e., given) name |
middle_name | string | Middle name |
last_name | string | Last (i.e., family) name |
suffix | string | Name suffix |
Telephone
FIELD | TYPE | SHORT DESCRIPTION |
---|---|---|
raw | string | Phone number in its original format |
normalized | string | Phone number in the format +1 234-567-8910 |
international_country_code | string | Country code |
area_city_code | string | Area or city code |
subscriber_number | string | Subscriber number (prefix and line numbers) |
Web Address
FIELD | TYPE | SHORT DESCRIPTION |
---|---|---|
address | string | Listed URLs |
type | string | The type, often domain, of the web address (e.g., LinkedIn) |
Use Cases for Contact Info
Resume Parsing: When an end user or customer's system parses a resumes AdeptID returns contact information which may be used to pre-fill forms for users and/or may be stored by systems to facilitate outreach to job candidates. This use case is satisfied using parse resume.
Candidate Search: AdeptID returns contact information for individual candidates in talent sourcing use cases. This facilitates outreach by recruiters to invite them to apply. This use case is in private beta, please contact us for more information.
Contact Info Example
{
"name":{
"prefix":"",
"full_name":"Piya A. Gupta",
"first_name":"Piya",
"middle_name":"A.",
"last_name":"Gupta",
"suffix":""
},
"location":{
"city_name":"Jersey City",
"county_fips":"34017",
"county_name":"Hudson",
"metro":"New York, NY",
"msa_fips":"35620",
"msa_name":"New York-Newark-Jersey City, NY-NJ",
"state_abbreviation":"NJ",
"state_fips":"34",
"state_name":"New Jersey",
"geo_coordinates":{
"latitude":40.7184,
"longitude":-74.0686
},
"postal_code":"07030",
"street_address_lines":[
"280 Grove St"
],
"telephones":[
{
"raw":"(234) 567-8910",
"normalized":"+1 234-567-8910",
"international_country_code":"1",
"area_city_code":"234",
"subscriber_number":"567-8910"
}
],
"email_addresses":[
"[email protected]"
],
"web_addresses":[
{
"address":"linkedin.com/in/piya-adeptid",
"type":"LinkedIn"
},
{
"address":"github.com/piya-adept-id",
"type":"GitHub"
}
]
}
}
Updated 4 months ago