Contact Details

The following type of output is generated for the contact details of the candidate.

Email

The email element contains the email details of the candidate as follow:
  • EmailAddress: This field provides email address e.g. John75@xyz.com.

  • ConfidenceScore: This field provides confidence score for the correctness of Email id fetched by parser.

Email JSON Layout
        "Email": [{
            "EmailAddress": "Johndeo@rchilli.com",
            "ConfidenceScore": 10
        }, {
            "EmailAddress": "John75@xyz.com",
            "ConfidenceScore": 10
        }]

Phone Number

The phone number element contains all the phone number listed in the resume of the candidate as follow:
  • Number: This field provides phone number same as mentioned in the resume., e.g. '+1 2006003000'.

  • ISDCode: This field provides ISD code of the country, e.g. '+1'.

  • OriginalNumber: This field provides the original phone number without any code in format, e.g. '200-600-3000'.

  • FormattedNumber: This field provides formatted number with ISD country code, e.g. '+1 200-600-3000'.

  • Type: This field providesType of phone number e.g. Phone, Mobile and Fax.

  • ConfidenceScore: This field provides confidence score for the correctness of PhoneNumber fetched by parser.

    Phone Number JSON Layout
            "PhoneNumber": [{
                "Number": "200-600-3000",
                "ISDCode": "+1",
                "OriginalNumber": "200-600-3000",
                "FormattedNumber": "+1 200-600-3000",
                "Type": "Phone",
                "ConfidenceScore": 10
            }, {
                "Number": "1234567890",
                "ISDCode": "+1",
                "OriginalNumber": "123-456-7890",
                "FormattedNumber": "+1 123-456-7890",
                "Type": "Mobile",
                "ConfidenceScore": 10
            }, {
                "Number": "+1-212-9876000",
                "ISDCode": "+1",
                "OriginalNumber": "212-987-6000",
                "FormattedNumber": "+1-212-9876000",
                "Type": "Fax",
                "ConfidenceScore": 10
            }]

Website Detail

The web detail element contains web address given in the resume as follow:
  • Type: This field provides information about the type of URL e.g. Website, Facebook, Twitter, etc.

  • URL: This field provides URL of candidate's social profiles, e.g. https://www.linkedin.com/in/johndeo-m-53477087/

  • Web Detail JSON Layout
            "WebSite": [{
                "Type": "Linkedin",
                "Url": "https://www.linkedin.com/Johndeo/"
            }, {
                "Type": "Facebook",
                "Url": "https://www.facebook.com/Johndeo"
            }, {
                "Type": "Twitter",
                "Url": "https://twitter.com/Johndeo"
            }]

Address Detail

The address detail element contains address of the candidate given in the resume as follow:
  • Street: This field provides street number.

  • City: This field provides the city name mentioned in the address.

  • State: This field provides the state name mentioned in the address.

  • StateIsoCode: This field provides the StateIsoCode of the state mentioned in the address e.g. State: Texas, StateIsoCode: "US-TX"

  • Country: This field provides the country name mentioned in the address.

  • CountryCode:This field provides the country code of the country mentioned in the address.

    • IsoAlpha-2: This field provides two letter Iso country code e.g. 'US'

    • IsoAlpha-3: This field provides three letter Iso country code e.g.'USA'

    • UN-Code: This field provides UN-Code of the country mentioned in the address, e.g.'840'

  • ZipCode: This field provides Zip code of the area mentioned in the address, e.g.'60661'

  • FormattedAddress:This is the one line address combined with street, city, state, country and zip code.

  • Type: This field provides address with its type e.g. Present Address, Permanent Address, etc.

  • ConfidenceScore: This field provides confidence score for the correctness of Address fetched by parser.

    Address Detail JSON Layout
    "Address": [{
                "Street": "2915 John R St. Apt 306",
                "City": "Detroit",
                "State": "MI",
                "StateIsoCode": "MI",
                "Country": "USA",
                "CountryCode": {
                    "IsoAlpha2": "US",
                    "IsoAlpha3": "USA",
                    "UNCode": "840"
                },
                "ZipCode": "48201",
                "FormattedAddress": "2915 John R St. Apt 306, Detroit, MI, 48201, USA",
                "Type": "Present",
                "ConfidenceScore": 10
            }, {
                "Street": "180 N Jefferson St. Apt 2703",
                "City": "Chicago",
                "State": "IL",
                "StateIsoCode": "IL",
                "Country": "USA",
                "CountryCode": {
                    "IsoAlpha2": "US",
                    "IsoAlpha3": "USA",
                    "UNCode": "840"
                },
                "ZipCode": "60661",
                "FormattedAddress": "180 N Jefferson St. Apt 2703, Chicago, IL, 60661, USA",
                "Type": "Permanent",
                "ConfidenceScore": 10
            }],