This is a html view of the json schema please take the json schema as reference DOWNLOAD THE JSON SCHEMA

OpCo

Type: object

properties at the level off opcos

Type: string

tenant identifier for an Opco in SPARK multitenant platform


Example:

"BEL-CEBEO"

Type: string

the name of the opco


Example:

"CEBEO"

Type: array

Payment methods available in ann opco

No Additional Items

Each item of this array must be:

paymentMethod

Type: object

available payment methods at the opco

Type: string

ISO 4217 currency codes.


Example:

"EUR"

Type: string

Payment type.


Example:

"CREDIT_LINE"

Example:

[
    {
        "type": "CARD",
        "currency": "EUR"
    },
    {
        "type": "CREDIT_LINE",
        "currency": "EUR"
    }
]

Type: array

Delivery methods available in ann opco

No Additional Items

Each item of this array must be:

deliveryMethod

Type: object

available delivery methods at the opco

Type: string

Time it takes for order to be ready and delivered in hours


Example:

"2h"

Type: string

the type of the delivery


Example:

"PICKUP"

Example:

[
    {
        "type": "PICKUP",
        "time": "2h"
    },
    {
        "type": "DELIVERY",
        "time": "48h"
    }
]