Synctera · Schema

payment_list

FinTechBaaSBankingPaymentsCard IssuingKYC
View JSON Schema on GitHub

JSON Schema

synctera-payment-list-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/payment_list",
  "title": "payment_list",
  "allOf": [
    {
      "properties": {
        "payments": {
          "description": "Array of payments",
          "items": {
            "$ref": "#/components/schemas/payment"
          },
          "type": "array"
        }
      },
      "required": [
        "payments"
      ],
      "type": "object"
    },
    {
      "$ref": "#/components/schemas/paginated_response"
    }
  ]
}