{
    "$id": "http://drakemall.com/schemas/UpdatePaymentConfig.json",
    "$schema": "http://json-schema.org/draft-07/schema#",
    "title": "UpdatePaymentConfig",
    "type": "object",
    "properties": {
        "shortName": {
            "type": "string"
        },
        "order": {
            "type": "number"
        },
        "isEnabled": {
            "type": "boolean"
        },
        "excludedCountries": {
            "type": "array",
            "items": {
                "type": "string"
            }
        },
        "allowedCountries": {
            "type": "array",
            "items": {
                "type": "string"
            }
        },
        "suggested": {
            "type": "array",
            "items": {
                "type": "string"
            }
        },
        "suggestAll": {
            "type": "boolean"
        },
        "minAmount": {
            "type": "number"
        },
        "maxAmount": {
            "type": "number"
        },
        "amountSteps": {
            "type": "array",
            "items": {
                "type": "number"
            }
        },
        "icon": {
            "type": "string"
        },
        "currency": {
            "type": "string",
            "default": "USD"
        }
    },
    "required": ["shortName"]
}
