JSON Object

merchantRiskIndicator

merchantRiskIndicator

KeyFormatCNDDescription
1deliveryEmailstringOFor Electronic delivery, the email address to which the merchandise was delivered
2deliveryTimeframestringOIndicates the merchandise delivery timeframe
3giftCardAmountintegerOFor prepaid or gift card purchase, the purchase amount total of prepaid or gift cards in smallest currency unit
4giftCardCountintegerOFor prepaid or gift card purchase, total count of individual prepaid or gift cards/codes purchased
5giftCardCurrstringOFor prepaid or gift card purchase, ISO 4217 three-digits numeric currency code of the gift card, e.g. 978
6preOrderDatestringOFor a pre-ordered purchase, the expected date that the merchandise will be available (YYYY-MM-DD)
7preOrderPurchaseIndicatorbooleanOIndicates whether customer is placing an order for merchandise with a future availability or release date
8reorderItemsIndicatorbooleanOIndicates whether the customer is reordering previously purchased merchandise
9shippingAddressIndicatorstringOIndicates 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.

Schema

{

    “$schema”: “http://json-schema.org/draft-07/schema#”,

    “$id”: “https://www.computop-paygate.com/schemas/merchantRisk.json”,

    “title”: “merchantRisk”,

    “description”: “Händler-Risikoinformationen”,

    “type”: “object”,

    “properties”: {

        “deliveryEmail”: {

            “type”: “string”,

            “maxLength”: 254,

            “format”: “idn-email”,

            “description”: “Für elektronische Lieferung die E-Mail-Adresse, an die die Ware geliefert wurde”

        },

        “deliveryTimeframe”: {

            “type”: “string”,

            “enum”: [“electronicDelivery”, “sameDayDelivery”, “nextDayDelivery”, “twoOrMoreDaysDelivery”]

        },

        “giftCardAmount”: {

            “type”: “integer”,

            “maximum”: 999999999999

        },

        “giftCardCount”: {

            “type”: “integer”,

            “maximum”: 99,

            “description”: “Anzahl der für diesen Kauf genutzten Prepaid- oder Geschenkkarten”

        },

        “giftCardCurr”: {

            “type”: “string”,

            “minLength”: 3,

            “maxLength”: 3,

            “description”: “Dreistelliger Währungscode der Geschenkkarte gemäß ISO 4217”

        },

        “preOrderDate”: {

            “type”: “string”,

            “format”: “full-date”,

            “description”: “Das erwartete Datum, wann die Ware verfügbar sein wird, im Format JJJJ-MM-TT”

        },

        “preOrderPurchaseIndicator”: {

            “type”: “boolean”,

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

        },

        “reorderItemsIndicator”: {

            “type”: “boolean”,

            “description”: “Gibt an, ob der Kunde eine zuvor bereits gekaufte Ware erneut bestellt”

       },

        “shippingAddressIndicator”: {

            “type”: “string”,

            “enum”: [

                “shipToBillingAddress”,

                “shipToVerifiedAddress”,

                “shipToNewAddress”,

                “shipToStore”,

                “digitalGoods”,

                “noShipment”,

                “other”

            ],

            “description”: “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.”

        } 

    },

    “additionalProperties”: false

}

Sample

{

    “deliveryEmail”: “joe.bloggs@acme.com”,

    “deliveryTimeframe”: “twoOrMoreDaysDelivery”,

    “giftCardAmount”: 5000,

    “giftCardCount”: 2,

    “giftCardCurr”: “EUR”,

    “preOrderDate”: “2020-03-15”,

    “preOrderPurchaseIndicator”: true,

    “reorderItemsIndicator”: true,

    “shippingAddressIndicator”: “shipToStore”

}