Kassa Compleet and Ginger Payments use different formats for the «order_lines/order_line/vat_percentage» property of a «POST /v1/orders/» request

Kassa Compleet

The JSON Schema of a «POST /v1/orders/» says:

"vat_percentage": {
    "description": "Percentage of tax rate, multiplied by 100 and provided as an integer. i.e. 17.50% should be sent as 1750",
    "type": "integer",
    "minimum": 0,
    "maximum": 10000
}

Ginger Payments:

The JSON Schema of a «POST /v1/orders/» says:

"vat_percentage": {
    "type": ["number", "null"],
    "minimum": 0,
    "maximum": 100
}