Lithic · Schema

Backtest Request Parameters

FinTechBaaSCard IssuingPaymentsEmbedded Finance

Properties

Name Type Description
start string The start time of the backtest.
end string The end time of the backtest.
View JSON Schema on GitHub

JSON Schema

lithic-backtest-request-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/backtest-request",
  "title": "Backtest Request Parameters",
  "type": "object",
  "properties": {
    "start": {
      "type": "string",
      "format": "date-time",
      "description": "The start time of the backtest."
    },
    "end": {
      "type": "string",
      "format": "date-time",
      "description": "The end time of the backtest."
    }
  }
}