Procurify · Schema

PaymentMethodRequest

Spend ManagementProcurementPurchase OrdersAccounts PayableVendor ManagementBudget TrackingProcure-to-PayERP Integration

Properties

Name Type Description
name string
description string
active boolean
View JSON Schema on GitHub

JSON Schema

paymentmethodrequest.json Raw ↑
{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "title": "PaymentMethodRequest",
  "type": "object",
  "properties": {
    "name": {
      "type": "string",
      "minLength": 1,
      "maxLength": 100
    },
    "description": {
      "type": "string",
      "nullable": true
    },
    "active": {
      "type": "boolean"
    }
  },
  "required": [
    "name"
  ]
}