The label of the schema menu item (only present when the schema menu item is not linked to an item type)
Ordering index
Indicates if the schema menu item refers to an item type or a modular block
Item type associated with the menu item
Parent schema menu item
Underlying schema menu items
import { buildClient } from '@datocms/cma-client-node';async function run() {const client = buildClient({ apiToken: '<YOUR_API_TOKEN>' });const schemaMenuItemId = 'uinr2zfqQLeCo_1O0-ao-Q';const schemaMenuItem = await client.schemaMenuItems.update(schemaMenuItemId, {});console.log(schemaMenuItem);}run();