Lithic · Schema

Loan Tape Rebuild Configuration

Configuration for building loan tapes

FinTechBaaSCard IssuingPaymentsEmbedded Finance

Properties

Name Type Description
rebuild_needed boolean Whether the account's loan tapes need to be rebuilt or not
rebuild_from string Date from which to start rebuilding from if the account requires a rebuild
last_rebuild string The date for which the account's loan tapes were last rebuilt
View JSON Schema on GitHub

JSON Schema

lithic-loan-tape-rebuild-configuration-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/loan_tape_rebuild_configuration",
  "title": "Loan Tape Rebuild Configuration",
  "description": "Configuration for building loan tapes",
  "type": "object",
  "properties": {
    "rebuild_needed": {
      "type": "boolean",
      "description": "Whether the account's loan tapes need to be rebuilt or not"
    },
    "rebuild_from": {
      "type": "string",
      "format": "date",
      "description": "Date from which to start rebuilding from if the account requires a rebuild"
    },
    "last_rebuild": {
      "type": "string",
      "format": "date",
      "description": "The date for which the account's loan tapes were last rebuilt"
    }
  },
  "required": [
    "rebuild_needed"
  ]
}