Dial code

BasicStartupBusiness
Name Type Description
calling String[] The code you need to dial when calling from other country
exit String[] The code (prefix) you need to dial before a destination calling code, usually it's replaced just with + sign on modern phones
trunk String[] The code used for local calls only when calling from one region to another Note: some countries require the use of the trunk codes, even within the same region
BasicStartupBusiness
Name Type Description
textual.title String Dial code category name
textual.sections.id[SUMMARY].body String How to call destination country. Note: if from country is defined, summary will be a bit different (will include exit code for from country as well)
textual.sections.id[LOCAL_CALL_EXAMPLE].body String Sample of local call number
textual.sections.id[INTERNATIONAL_CALL_EXAMPLE].body String Sample of international call number
textual.sections.id[LOCAL_CALLS].body String Rules when calling within destination country
{
  "calling": [
    "33"
  ],
  "exit": [
    "00"
  ],
  "trunk": [
    "0"
  ],
  "textual": {
    "title": "Dial code",
    "sections": [
      {
        "id": "SUMMARY",
        "body": [
          "To call France from Spain, dial + or 00 (exit code for Spain), then 33 (the country code for France), then the area code (without the initial 0) and the local number."
        ]
      },
      {
        "id": "LOCAL_CALL_EXAMPLE",
        "body": [
          "05 1234567"
        ]
      },
      {
        "id": "INTERNATIONAL_CALL_EXAMPLE",
        "body": [
          "+ 33 5 1234567"
        ]
      },
      {
        "id": "LOCAL_CALLS",
        "body": [
          "For local calls within France, start with the area code (with the initial 0). In the case above area code is 5 ."
        ]
      }
    ]
  }
}