Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.
Comment: Published by Scroll Versions from space ENWORK and version Documentation
Info

"phone"-JSON (phone, mobilePhone) is part of customerInfo which is sent as "billToCustomer" or "shipToCustomer". An overview of parameters can be found here: 

Data Elements

Table Filter
defaultBeschreibung
isFirstTimeEnterfalse
hideColumnstrue
sparkNameSparkline
hidePanetrue
datepatterndd M yy
id1638289413838_38877329
worklog365|5|8|y w d h m|y w d h m
isORAND
separatorPoint (.)
order0
Multiexcerpt
MultiExcerptNamephone
Table Transformer
dateFormatdd M yy
export-wordfalse
show-sourcefalse
export-csvfalse
id1638289413839_-1515181272
transposefalse
worklog365|5|8|y w d h m|y w d h m
separator.
export-pdffalse
sqlSELECT * FROM T*

KeyFormatCNDDescriptionBeschreibung
1

countryCode

string

M

Country code according to ITU-T E.164. Numbers only. No leading zeros.

Ländercode gemäß ITU-T E.164. Nur Ziffern. Keine führenden Nullen.
2

subscriberNumber

string

M

National number according to ITU-T E.164 including national destination code. Numbers only. No leading zeros.

Nationale Nummer gemäß ITU-T E.164 einschließlich Ortskennzahl. Nur Ziffern. Keine führenden Nullen.
Info
titleInternational ITU-T E.164-number structure for geographic areas

The international ITU-T E.164 phone number is arranged in two code fields:

  • the country code (CC) and

  • the national (significant) number N(S)N.

The national (significant) number may be further subdivided into national destination code (NDC) and subscriber number (SN).


The NDC, often known as area code, is of variable length depending on the the country code. The NDC is

  • four digits of the N(S)N in the case of a country with a three-digit country code;

  • five digits of the N(S)N in the case of a country with a two-digit country code;

  • six digits of the N(S)N in the case of a country with a one-digit country code.


Schema

(info) BASEURL=

Multiexcerpt include
SpaceWithExcerptEN
MultiExcerptNameBaseURL
PageWithExcerptWording
schemas

Multiexcerpt
MultiExcerptNameschema
Code Block
languagejson
linenumberstrue
{
    "$schema": "http://json-schema.org/draft-07/schema#",
    "$id": "BASEURL/phone.json",
    "title": "Phone",
    "description": "Phone number",
    "type": "object",
    "properties": {
        "countryCode": {
            "type": "string",
            "minLength": 1,
            "maxLength": 3
        },
        "subscriberNumber": {
            "type": "string",
            "maxLength": 15
        }
    },
    "required": ["countryCode", "subscriberNumber"],
    "additionalProperties": false
}

Sample

Multiexcerpt
MultiExcerptNamesample
Code Block
languagejson
linenumberstrue
{
  "countryCode": "33",
  "subscriberNumber": "12345678910"
}

Table of Contents