{
  "testOrders": [
    {
      "id": "test-order-1",
      "expectedStatus": "pending",
      "expectedTotal": 115.00
    }
  ],
  "orderScenarios": [
    {
      "name": "simple_order",
      "description": "Create simple order with one item",
      "items": [
        {
          "productId": "test-product-1",
          "quantity": 1
        }
      ]
    },
    {
      "name": "complex_order",
      "description": "Create order with multiple items",
      "items": [
        {
          "productId": "test-product-1",
          "quantity": 2
        },
        {
          "productId": "test-product-2",
          "quantity": 3
        }
      ]
    }
  ],
  "statusTransitions": {
    "valid": [
      { "from": "pending", "to": "processing" },
      { "from": "processing", "to": "shipped" },
      { "from": "shipped", "to": "delivered" },
      { "from": "pending", "to": "cancelled" }
    ],
    "invalid": [
      { "from": "delivered", "to": "pending" },
      { "from": "cancelled", "to": "processing" }
    ]
  },
  "searchFilters": {
    "status": ["pending", "processing", "shipped", "delivered", "cancelled"],
    "dateRanges": [
      { "label": "Today", "value": "today" },
      { "label": "Last 7 days", "value": "week" },
      { "label": "Last 30 days", "value": "month" }
    ]
  }
}

