const updated = await client.schemas.update("schema_abc123", {
name: "Updated Electronics Schema",
columns: [
{ key: "product_name", label: "Product Name", type: "text", required: true },
{ key: "price", label: "Price (USD)", type: "number" },
{ key: "brand", label: "Brand", type: "text" },
{ key: "weight_kg", label: "Weight (kg)", type: "number" },
],
});