Phones Results Schema for JSON#

Application ID eot_phones

Description#

The PhonesResults schema describes the structure of the JSON data returned from the Phones application by the SDK or the Portal.

Definition#

The PhonesResults schema is defined as:

  • array[PhoneResult] – The list of phone numbers found in the document

with PhoneResult defined as:

  • object – The phone number information

    • phone_nr (string) – The phone number

    • country_code (number) – The international phone number country code

    • country (string) – The country associated with the phone number

    • location (string) – The location associated with the phone number

Example#

The following is an example of the JSON results for this application:

[
    {
        "phone_nr": "+3232303046",
        "country_code": 32,
        "country": "Belgium",
        "location": "Antwerp"
    }
]