***

title: getVerbProperties
slug: /reference/typescript/agents/configuration/schema-utils/get-verb-properties
description: Get the inner properties schema for a specific verb.
max-toc-depth: 3
---------------------

For a complete index of all SignalWire documentation pages, fetch https://signalwire.com/docs/llms.txt

Get the inner properties schema for a specific verb. For example, for `"hangup"`
this returns the schema object with `{ type: "object", properties: { reason: ... }, ... }`.

## **Parameters**

<ParamField path="verbName" type="string" required={true} toc={true}>
  The verb name (e.g., `"answer"`, `"tap"`).
</ParamField>

## **Returns**

`Record<string, unknown>` -- The inner schema definition, or an empty object if
the verb is not found.

## **Example**

```typescript {4}
import { SchemaUtils } from '@signalwire/sdk';

const schema = new SchemaUtils();
const props = schema.getVerbProperties('hangup');
console.log(props);
```