{
  "$schema": "../sireg.schema.json",
  "name": "Staging sitemap regression",
  "sources": [
    {
      "type": "sitemap",
      "url": "https://www.example.com/sitemap.xml"
    }
  ],
  "transforms": [
    {
      "origin": "http://localhost:8080"
    }
  ],
  "select": {
    "strategy": "random",
    "limit": 250,
    "seed": "github-sha"
  },
  "checks": {
    "expectedStatus": "2xx",
    "concurrency": 8,
    "timeout": 10000
  },
  "redirects": [
    {
      "from": "https://www.example.com/old-page",
      "to": "https://www.example.com/new-page",
      "expectedStatus": "30x",
      "finalStatus": "2xx"
    }
  ],
  "reports": [
    {
      "type": "console"
    },
    {
      "type": "markdown",
      "path": "reports/sireg.md"
    },
    {
      "type": "html",
      "path": "reports/sireg.html"
    }
  ]
}
