Synctera · Schema

bin_and_debit_network

FinTechBaaSBankingPaymentsCard IssuingKYC

Properties

Name Type Description
bank_network_id string The ID of the bank network
bin object
debit_network object
View JSON Schema on GitHub

JSON Schema

synctera-bin-and-debit-network-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/bin_and_debit_network",
  "title": "bin_and_debit_network",
  "properties": {
    "bank_network_id": {
      "description": "The ID of the bank network",
      "type": "string"
    },
    "bin": {
      "$ref": "#/components/schemas/bin"
    },
    "debit_network": {
      "$ref": "#/components/schemas/debit_network"
    }
  },
  "required": [
    "bin",
    "debit_network",
    "bank_network_id"
  ],
  "type": "object"
}