Properties
| Name | Type | Description |
|---|---|---|
| legId | string | |
| callGuid | string | |
| legType | string | Type of call leg |
| startTime | string | |
| endTime | string | |
| duration | integer | Leg duration in seconds |
| fromUri | string | SIP From URI |
| toUri | string | SIP To URI |
| serverHostname | string | Server that handled this leg |
| sipResponseCode | integer | Final SIP response code for this leg |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"title": "CallLeg",
"type": "object",
"properties": {
"legId": {
"type": "string"
},
"callGuid": {
"type": "string"
},
"legType": {
"type": "string",
"description": "Type of call leg"
},
"startTime": {
"type": "string"
},
"endTime": {
"type": "string"
},
"duration": {
"type": "integer",
"description": "Leg duration in seconds"
},
"fromUri": {
"type": "string",
"description": "SIP From URI"
},
"toUri": {
"type": "string",
"description": "SIP To URI"
},
"serverHostname": {
"type": "string",
"description": "Server that handled this leg"
},
"sipResponseCode": {
"type": "integer",
"description": "Final SIP response code for this leg"
}
}
}