Webex · Schema
VirtualLinesECBNDependenciesObject
CallingCollaborationCommunicationEnterpriseMessagingVideo Conferencing
Properties
| Name | Type | Description |
|---|---|---|
| isLocationEcbnDefault | boolean | `true` if it is the default emergency callback number for the location. |
| isSelfEcbnDefault | boolean | Default emergency callback number for the virtual line if `true`. |
| dependentMemberCount | number | Number of members using this virtual line as their emergency callback number. |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/VirtualLinesECBNDependenciesObject",
"title": "VirtualLinesECBNDependenciesObject",
"type": "object",
"required": [
"isLocationEcbnDefault",
"isSelfEcbnDefault",
"dependentMemberCount"
],
"properties": {
"isLocationEcbnDefault": {
"type": "boolean",
"example": true,
"description": "`true` if it is the default emergency callback number for the location."
},
"isSelfEcbnDefault": {
"type": "boolean",
"example": true,
"description": "Default emergency callback number for the virtual line if `true`."
},
"dependentMemberCount": {
"type": "number",
"example": 15,
"description": "Number of members using this virtual line as their emergency callback number."
}
}
}