Lithic · Schema

Update Tier Schedule Entry Request

Entry in the Tier Schedule of an account

FinTechBaaSCard IssuingPaymentsEmbedded Finance

Properties

Name Type Description
tier_name string Name of a tier contained in the credit product. Mutually exclusive with tier_rates
tier_rates object Custom rates per category. Mutually exclusive with tier_name
penalty_rates object Custom rates per category for penalties
View JSON Schema on GitHub

JSON Schema

lithic-update-tier-schedule-entry-request-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/update_tier_schedule_entry_request",
  "title": "Update Tier Schedule Entry Request",
  "description": "Entry in the Tier Schedule of an account",
  "type": "object",
  "properties": {
    "tier_name": {
      "type": "string",
      "description": "Name of a tier contained in the credit product. Mutually exclusive with tier_rates"
    },
    "tier_rates": {
      "type": "object",
      "patternProperties": {
        "^.*$": {
          "$ref": "#/components/schemas/category_tier"
        }
      },
      "description": "Custom rates per category.  Mutually exclusive with tier_name"
    },
    "penalty_rates": {
      "type": "object",
      "patternProperties": {
        "^.*$": {
          "$ref": "#/components/schemas/category_tier"
        }
      },
      "description": "Custom rates per category for penalties"
    }
  }
}