Oops, it seems that you need to place a table or a macro generating a table within the Table Filter macro.
The table is being loaded. Please wait for a bit ...
countryCode
string
M
Country code according to ITU-T E.164. Numbers only. No leading zeros.
subscriberNumber
National number according to ITU-T E.164 including national destination code. Numbers only. No leading zeros.
International ITU-T E.164-number structure for geographic areas
Die internationale ITU-T E.164 Telefonnummer ist in zwei Code-Bereichen angeordnet:
der Ländercode (CC) und
die nationale (signifikante) Nummer N(S)N.
Die nationale (signifikante) Nummer kann weiter unterteilt sein in die Ortskennzahl (NDC) und die Teilnehmernummer (SN).
Die oft als Vorwahl bekannte NDC hat eine variable Länge je nach Ländercode. Die NDC ist
vierstellig in der N(S)N im Fall eines Landes mit einem dreistelligem Ländercode;
fünfstellig in der N(S)N im Fall eines Landes mit zweistelligem Ländercode;
sechsstellig in der N(S)N im Fall eines Landes mit einstelligem Ländercode.
BASEURL= https://www.computop-paygate.com/schemas
{ "$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 }
{ "countryCode": "33", "subscriberNumber": "12345678910" }