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.

FIELDTYPESHORT DESCRIPTION
nameName object
locationLocation objectSee Location for schema information.
telephonesarray of Telephone objects
email_addressesarray of stringsListed email addresses
web_addressesarray of Web Address objects

Name

FIELDTYPESHORT DESCRIPTION
prefixstringName prefix
full_namestringFull name
first_namestringFirst (i.e., given) name
middle_namestringMiddle name
last_namestringLast (i.e., family) name
suffixstringName suffix

Telephone

FIELDTYPESHORT DESCRIPTION
rawstringPhone number in its original format
normalizedstringPhone number in the format +1 234-567-8910
international_country_codestringCountry code
area_city_codestringArea or city code
subscriber_numberstringSubscriber number (prefix and line numbers)

Web Address

FIELDTYPESHORT DESCRIPTION
addressstringListed URLs
typestringThe 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"
         }
      ]
   }
}