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

Please note that the data within all JSON objects is encoded using UTF-8 and then must be also Base64 encoded. This applies in particular to special characters such as "Umlaute" and diactrics.

Data Elements

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

KeyFormatCNDDescriptionBeschreibung
1

city

string(..50)

C

City. Required unless market or regional mandate restricts sending this information. For shipping details this data element might not be available (e.g. digital goods).

Stadt. Erforderlich, sofern nicht Markt- oder regionale Mandate das Senden dieser Informationen beschränken. Für Versanddetails kann dieses Datenelement nicht verfügbar sein (z.B. digitale Güter).
2

country

object

C

Alpha-3 country code according to ISO 3166-1:2013. Required unless market or regional mandate restricts sending this information. For shipping details this data element might not be available (e.g. digital goods).

Alpha-3 Ländercode gemäß ISO 3166-1:2013. Erforderlich, sofern nicht Markt- oder regionale Mandate das Senden dieser Informationen beschränken. Für Versanddetails kann dieses Datenelement nicht verfügbar sein (z.B. digitale Güter).
3

addressLine1

object

C

First line of the street address. Required unless market or regional mandate restricts sending this information. For shipping details this data element might not be available (e.g. digital goods).

Erste Zeile der Straßenadresse. Erforderlich, sofern nicht Markt- oder regionale Mandate das Senden dieser Informationen beschränken. Für Versanddetails kann dieses Datenelement nicht verfügbar sein (z.B. digitale Güter).
4

addressLine2

string(..50)

C

Second line of the street address (e.g. apartment, suite, floor, PO Box, etc.). Required unless market or regional mandate restricts sending this information. For shipping details this data element might not be available (e.g. digital goods).

Zweite Zeile der Straßenadresse (z.B. Apartment, Suite, Etage, Postfach usw.). Erforderlich, sofern nicht Markt- oder regionale Mandate das Senden dieser Informationen beschränken. Für Versanddetails kann dieses Datenelement nicht verfügbar sein (z.B. digitale Güter).
5

addressLine3

string(..50)

C

Third line of the street address. Required unless market or regional mandate restricts sending this information. For shipping details this data element might not be available (e.g. digital goods).

Dritte Zeile der Straßenadresse. Erforderlich, sofern nicht Markt- oder regionale Mandate das Senden dieser Informationen beschränken. Für Versanddetails kann dieses Datenelement nicht verfügbar sein (z.B. digitale Güter).
6

postalCode

string(..16)

C

ZIP or other postal code. Required unless market or regional mandate restricts sending this information. For shipping details this data element might not be available (e.g. digital goods).

PLZ oder andere Postleitzahl. Erforderlich, sofern nicht Markt- oder regionale Mandate das Senden dieser Informationen beschränken. Für Versanddetails kann dieses Datenelement nicht verfügbar sein (z.B. digitale Güter).
7

state

string(2)

C

Alpha-2 code of state or province according to ISO 3166-2. Required unless market or regional mandate restricts sending this information, or State is not applicable for this country. For shipping details this data element might not be available (e.g. digital goods).

Please do not use this parameter within the EU.

Alpha-2 Code des Bundesstaates oder der Provinz gemäß ISO 3166-2. Erforderlich, sofern nicht Markt- oder regionale Mandate das Senden dieser Informationen beschränken oder State in diesem Land nicht zutreffend ist. Für Versanddetails kann dieses Datenelement nicht verfügbar sein (z.B. digitale Güter).

Bitte diesen Parameter in der EU nicht benutzen.

Anchor
addressLine1
addressLine1
addressLine1

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

KeyFormatCNDDescriptionBeschreibung
1

street

string(..50)

M

Street name

Straßenname
2

streetNumber

string

C

Street or house number

Hausnummer

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/address.json",
    "title": "address",
    "description": "Address",
    "type": "object",
    "properties": {
        "city": {
            "type": "string",
            "maxLength": 50
         },
        "country": {
            "type": "object",
            "properties": {
                "countryName": {
                    "type": "string",
                    "description": "Name of the country."
                },
                "countryA2": {
                    "type": "string",
                    "description": "ISO-3166 alpha-2 code."
                },
                "countryA3": {
                    "type": "string",
                    "description": "ISO 3166-1:2013 alpha-3"
                },
                "countryNumber": {
                    "type": "string",
                    "description": "ISO-3166 numeric code."
                }
            },
            "required": ["countryA3"],
            "additionalProperties": false
        },
        "addressLine1": {
            "type": "object",
            "properties": {
                "street": {
                    "type": "string" ,
                    "maxLength": 50
                },
                "streetNumber": {
                    "type": "string"
                }
            },
            "required": ["street"],
            "additionalProperties": false
        },
        "addressLine2": {
            "type": "string",
            "maxLength": 50
         },
        "addressLine3": {
            "type": "string",
            "maxLength": 50
         },
        "postalCode": {
            "type": "string",
            "maxLength": 16
         },
        "state": {
            "type": "string",
            "minLength": 2,
            "maxLength": 2,
            "description": "Alpha-2 code of state or province according to ISO 3166-2:2013 where applicable"
        }
    },
    "required": ["country", "addressLine1", "postalCode"],
    "additionalProperties": false
}

Sample

Multiexcerpt
MultiExcerptNamesample
Code Block
languagejson
linenumberstrue
{
    "city": "New York",
    "country": {
        "countryA3": "USA"
    },
    "addressLine1": {
        "street": "Park Avenue",
        "streetNumber": "270"
    },
    "postalCode": "10017-2070",
    "state": "NY"
}

Table of Contents