{
  "properties": {
    "batch_id": {
      "anyOf": [
        {
          "type": "string"
        },
        {
          "type": "null"
        }
      ],
      "default": null,
      "description": "Sweep batch identifier. When provided, returns the child backtests of that sweep (type is forced to 'backtest').",
      "title": "Batch Id"
    },
    "limit": {
      "default": 50,
      "description": "Maximum number of runs to return per page (max 100)",
      "maximum": 100,
      "minimum": 1,
      "title": "Limit",
      "type": "integer"
    },
    "offset": {
      "default": 0,
      "description": "Number of results to skip for pagination",
      "title": "Offset",
      "type": "integer"
    },
    "strategy_id": {
      "anyOf": [
        {
          "type": "string"
        },
        {
          "type": "null"
        }
      ],
      "default": null,
      "description": "Strategy identifier. Required unless batch_id is provided.",
      "title": "Strategy Id"
    },
    "type": {
      "default": "all",
      "description": "Run kind to list. 'backtest' returns individual backtest runs; 'sweep' collapses backtests by batch_id; 'walk_forward' returns walk-forward analyses; 'all' unions everything sorted by created_at DESC.",
      "enum": [
        "backtest",
        "sweep",
        "walk_forward",
        "all"
      ],
      "title": "Type",
      "type": "string"
    }
  },
  "title": "list_runsArguments",
  "type": "object"
}
