{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://weverlabs.com/schemas/synthetic-agent-regression-runner.schema.json",
  "title": "Wever Labs Synthetic Agent Regression Runner v1",
  "type": "object",
  "additionalProperties": true,
  "properties": {
    "schema_version": {
      "const": "synthetic_agent_regression_runner.v1"
    },
    "mode": {
      "type": "string",
      "enum": [
        "read_runner",
        "run_synthetic_agent_regression",
        "run_release_check",
        "read_recent_regressions"
      ]
    },
    "idempotency_key": {
      "type": "string"
    },
    "payment_reference": {
      "type": "string"
    },
    "package_level": {
      "type": "string",
      "enum": [
        "entry",
        "standard",
        "pro"
      ]
    },
    "environment": {
      "type": "string",
      "enum": [
        "sandbox",
        "production"
      ]
    },
    "persist": {
      "type": "boolean"
    }
  },
  "required": [
    "mode"
  ]
}