Synctera · Schema

payment_instruction

FinTechBaaSBankingPaymentsCard IssuingKYC
View JSON Schema on GitHub

JSON Schema

synctera-payment-instruction-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/payment_instruction",
  "title": "payment_instruction",
  "discriminator": {
    "mapping": {
      "ACH": "#/components/schemas/ach_instruction",
      "INTERNAL_TRANSFER": "#/components/schemas/internal_transfer_instruction"
    },
    "propertyName": "type"
  },
  "oneOf": [
    {
      "$ref": "#/components/schemas/ach_instruction"
    },
    {
      "$ref": "#/components/schemas/internal_transfer_instruction"
    }
  ]
}