Properties
| Name | Type | Description |
|---|---|---|
| dialedNumber | string | |
| matched | boolean | Whether a matching pattern was found |
| matchedPattern | string | The dialed number pattern that matched |
| callType | string | |
| applicationName | string | Application that would handle the call |
| routeDestination | string | Resulting route destination |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"title": "RoutingResult",
"type": "object",
"properties": {
"dialedNumber": {
"type": "string"
},
"matched": {
"type": "boolean",
"description": "Whether a matching pattern was found"
},
"matchedPattern": {
"type": "string",
"description": "The dialed number pattern that matched"
},
"callType": {
"type": "string"
},
"applicationName": {
"type": "string",
"description": "Application that would handle the call"
},
"routeDestination": {
"type": "string",
"description": "Resulting route destination"
}
}
}