{
  "seed": 20260807,
  "tables": [
    {
      "name": "orders",
      "rows": 300,
      "columns": [
        { "name": "order_id", "type": "identifier.uuid4" },
        { "name": "customer_first_name", "type": "name.first" },
        { "name": "customer_last_name", "type": "name.last" },
        {
          "name": "customer_name",
          "type": "name.full",
          "params": {
            "first": { "table": "orders", "column": "customer_first_name" },
            "last": { "table": "orders", "column": "customer_last_name" }
          }
        },
        { "name": "product_name", "type": "retail.product_name" },
        { "name": "category", "type": "retail.category" },
        { "name": "price", "type": "retail.price" },
        { "name": "order_status", "type": "retail.order_status" },
        { "name": "order_date", "type": "temporal.date" }
      ]
    }
  ]
}
