{ "$schema": "http://json-schema.org/draft-07/schema#", "title": "VendorPaymentMethodFlightTime", "type": "object", "properties": { "min": { "type": "integer", "minimum": 0, "description": "The minimum number of days for the payment to be in flight" }, "max": { "type": "integer", "minimum": 0, "description": "The maximum number of days for the payment to be in flight" } }, "required": [ "max", "min" ] }