Server SDKs
Build AI agents, control calls, send messages, and more
Check if a verb name is defined in the SWML schema.
The verb name to look up.
boolean — true if the verb exists in the schema.
boolean
true
1import { SchemaUtils } from '@signalwire/sdk';23const schema = new SchemaUtils();4console.log(schema.hasVerb('answer')); // true5console.log(schema.hasVerb('foobar')); // false