Lithic · Schema

Backtest Simulation Parameters

FinTechBaaSCard IssuingPaymentsEmbedded Finance

Properties

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

JSON Schema

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