Lithic · Schema

Backtest List Item

FinTechBaaSCard IssuingPaymentsEmbedded Finance

Properties

Name Type Description
backtest_token object
simulation_parameters object
status object
created string Timestamp of when the backtest was created
View JSON Schema on GitHub

JSON Schema

lithic-backtest-list-item-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/backtest-list-item",
  "title": "Backtest List Item",
  "type": "object",
  "properties": {
    "backtest_token": {
      "$ref": "#/components/schemas/backtest-token"
    },
    "simulation_parameters": {
      "$ref": "#/components/schemas/backtest-simulation-parameters"
    },
    "status": {
      "$ref": "#/components/schemas/backtest-status"
    },
    "created": {
      "type": "string",
      "format": "date-time",
      "description": "Timestamp of when the backtest was created"
    }
  },
  "required": [
    "backtest_token",
    "simulation_parameters",
    "status",
    "created"
  ]
}