Procurify · Schema

VendorPaymentMethodFlightTime

Spend ManagementProcurementPurchase OrdersAccounts PayableVendor ManagementBudget TrackingProcure-to-PayERP Integration

Properties

Name Type Description
min integer The minimum number of days for the payment to be in flight
max integer The maximum number of days for the payment to be in flight
View JSON Schema on GitHub

JSON Schema

vendorpaymentmethodflighttime.json Raw ↑
{
  "$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"
  ]
}