Aktualizace názvu, popisu nebo definic sloupců schématu.
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" }, ], });
{ "id": "schema_abc123", "name": "Electronics Catalog", "description": "Schema for consumer electronics", "is_default": false, "columns": [ { "key": "product_name", "label": "Product Name", "type": "text", "required": true }, { "key": "price", "label": "Price", "type": "number" } ], "created_at": "2025-03-01T10:00:00.000Z", "updated_at": "2025-03-01T10:00:00.000Z" }
Documentation IndexFetch the complete documentation index at: https://productlasso.com/docs/llms.txtUse this file to discover all available pages before exploring further.
Fetch the complete documentation index at: https://productlasso.com/docs/llms.txt
Use this file to discover all available pages before exploring further.