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
Section
Column
width900px
Table Filter
defaultBeschreibung
isFirstTimeEnterfalse
hideColumnstrue
sparkNameSparkline
hidePanetrue
datepatterndd M yy
id1624266586474_548533710
worklog365|5|8|y w d h m|y w d h m
isORAND
separatorPoint (.)
order0
Multiexcerpt
MultiExcerptNamemerchant_risk_indicator
Table Transformer
dateFormatdd M yy
export-wordfalse
show-sourcefalse
export-csvfalse
id1624266586476_1227260180
transposefalse
worklog365|5|8|y w d h m|y w d h m
separator.
export-pdffalse
sqlSELECT * FROM T*

KeyFormat

...

CNDDescriptionBeschreibung
1

deliveryEmail

string

O

For Electronic delivery, the email address to which the merchandise was delivered

...

Für elektronische Lieferung die E-Mail-Adresse, an die die Ware geliefert wurde
2

deliveryTimeframe

string

O

Indicates the merchandise delivery timeframe

...

Gibt den Zeitrahmen für die Warenlieferung an
3

giftCardAmount

integer

O

For prepaid or gift card purchase, the purchase amount total of prepaid or gift cards in smallest currency unit

...

Für den Kauf von Prepaid- oder Geschenkkarten der Gesamtkaufbetrag der Preipaid- oder Geschenkkarten in der kleinsten Währungseinheit
4

giftCardCount

integer

O

For prepaid or gift card purchase, total count of individual prepaid or gift cards/codes purchased

...

Für den Kauf von Prepaid- oder Geschenkkarten die Gesamtanzahl der gekauften einzelnen Prepaid- oder Geschenkkarten/-Codes
5

giftCardCurr

string

O

For prepaid or gift card purchase, ISO 4217 three-digits numeric currency code of the gift card, e.g. 978

Für den Kauf von Prepaid- oder Geschenkkarten der dreistellige Währungscode der Geschenkkarte numerisch gemäß ISO 4217, z.B. 978
6

preOrderDate

string

O

For a pre-ordered purchase, the expected date that the merchandise will be available (YYYY-MM-DD

...

)

Für einen vorbestellten Kauf das erwartete Datum, an dem die Ware verfügbar sein wird (JJJJ-MM-TT)
7

preOrderPurchaseIndicator

boolean

O

Indicates whether customer is placing an order for merchandise with a future availability or release date

...

Gibt an, ob der Kunde eine Bestellung für eine Ware mit zukünftiger Verfügbarkeit oder zukünftigem Veröffentlichungsdatum aufgibt
8

reorderItemsIndicator

boolean

O

Indicates whether the customer is reordering previously purchased merchandise

...

Gibt an, ob der Kunde eine zuvor bereits gekaufte Ware erneut bestellt
9

shippingAddressIndicator

string

O

Indicates shipping method chosen for the transaction. If one or more items are included in the sale, use the Shipping Indicator code for the physical goods, or if all digital goods, use the Shipping Indicator code that describes the most expensive item.

Gibt die für die Transaktion gewählte Liefermethode an. Wenn in dem Verkauf einer oder mehrere Artikel enthalten sind, verwenden Sie den Code Shipping Indicator für die physischen Waren, oder wenn alles digitale Güter sind, verwenden Sie den Code Shipping Indicator zur Beschreibung des teuersten Artikels.

Schema

(info) BASEURL=

Multiexcerpt include
SpaceWithExcerptEN
MultiExcerptNameBaseURL
PageWithExcerptWording
schemas

Multiexcerpt
MultiExcerptNameschema
Code Block

...

language

...

json
linenumberstrue
{
    "$schema": "http://json-schema.org/draft-07/schema#",
    "$id": "

...

BASEURL/merchantRisk.json",
    "title": "merchantRisk",
    "description": "Merchant Risk Information",
    "type": "object",
    "properties": {
        "deliveryEmail": {
            "type": "string",
            "maxLength": 50,
            "format": "idn-email",
            "description": "For Electronic delivery, the email address to which the merchandise was delivered."
        },
        "deliveryTimeframe": {
            "type": "string",
            "enum": ["electronicDelivery", "sameDayDelivery", "nextDayDelivery", "twoOrMoreDaysDelivery"]
        },
        "giftCardAmount": {
            "type": "integer",
            "maximum": 999999999999
        },
        "giftCardCount": {
            "type": "integer",
            "maximum": 99,
            "description": "Number of prepaid or gift cards used for this purchase."
        },
        "giftCardCurr": {
            "type": "string",
            "minLength": 3,
            "maxLength": 3,
            "description": "ISO 4217 three-digits numeric currency code of the gift card, e.g. 978."
        },
        "preOrderDate": {
            "type": "string",
            "format": "full-date",
            "description": "The expected date that the merchandise will be available in format YYYY-MM-DD."
        },
        "preOrderPurchaseIndicator": {
            "type": "boolean",
            "description": "Indicates whether customer is placing an order for merchandise with a future availability or release date."
        },
        "reorderItemsIndicator": {
            "type": "boolean",
            "description": "Indicates whether the customer is reordering previously purchased merchandise."
        },
        "shippingAddressIndicator": {
            "type": "string",
            "enum": [
                "shipToBillingAddress",
                "shipToVerifiedAddress",
                "shipToNewAddress",
                "shipToStore",
                "digitalGoods",
                "noShipment",
                "other"
            ],
            "description": "Indicates shipping method chosen for the transaction. If one or more items are included in the sale, use the Shipping Indicator code for the physical goods, or if all digital goods, use the Shipping Indicator code that describes the most expensive item."
        }  
    },
    "additionalProperties": false
}

Sample

Multiexcerpt
MultiExcerptNamesample
Code Block

...

language

...

json
linenumberstrue
{
    "deliveryEmail": "joe.bloggs@acme.com",
    "deliveryTimeframe": "twoOrMoreDaysDelivery",
    "giftCardAmount": 5000,
    "giftCardCount": 2,
    "giftCardCurr": "978",
    "preOrderDate": "2020-03-15",
    "preOrderPurchaseIndicator": true,
    "reorderItemsIndicator": true,
    "shippingAddressIndicator": "shipToStore"
}

Table of Contents