Synctera · Schema

patch_interest

FinTechBaaSBankingPaymentsCard IssuingKYC

Properties

Name Type Description
accrual_payout_schedule object
calculation_method object
description string User provided description for the current interest.
id string Interest ID
product_type string
rates object
View JSON Schema on GitHub

JSON Schema

synctera-patch-interest-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/patch_interest",
  "title": "patch_interest",
  "properties": {
    "accrual_payout_schedule": {
      "$ref": "#/components/schemas/accrual_payout_schedule"
    },
    "calculation_method": {
      "$ref": "#/components/schemas/calculation_method"
    },
    "description": {
      "description": "User provided description for the current interest.",
      "example": "The rate is designed for high interest saving account.",
      "type": "string"
    },
    "id": {
      "description": "Interest ID",
      "format": "uuid",
      "readOnly": true,
      "type": "string"
    },
    "product_type": {
      "enum": [
        "INTEREST"
      ],
      "type": "string"
    },
    "rates": {
      "$ref": "#/components/schemas/rates"
    }
  },
  "required": [
    "product_type"
  ],
  "type": "object"
}