Xero · Schema

PaymentMethod

AccountingBank FeedsFinanceFinancial ServicesInvoicingPayrollSmall Business

Properties

Name Type Description
paymentMethod string The payment method code
bankAccounts array
View JSON Schema on GitHub

JSON Schema

xero-paymentmethod-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/PaymentMethod",
  "title": "PaymentMethod",
  "type": "object",
  "properties": {
    "paymentMethod": {
      "description": "The payment method code",
      "type": "string",
      "enum": [
        "Cheque",
        "Electronically",
        "Manual"
      ]
    },
    "bankAccounts": {
      "type": "array",
      "items": {
        "$ref": "#/components/schemas/BankAccount"
      }
    }
  }
}