Webex · Schema
CallerReputationProviderRegion
CallingCollaborationCommunicationEnterpriseMessagingVideo Conferencing
Properties
| Name | Type | Description |
|---|---|---|
| id | string | Unique identifier for the region. |
| name | string | Name of the region. |
| type | string | Type of the region (e.g., primary, secondary). |
| visible | boolean | Indicates if the region is visible. |
| environmentType | string | Environment type of the region (e.g., production, staging). |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/CallerReputationProviderRegion",
"title": "CallerReputationProviderRegion",
"type": "object",
"properties": {
"id": {
"type": "string",
"description": "Unique identifier for the region.",
"example": "region-1"
},
"name": {
"type": "string",
"description": "Name of the region.",
"example": "US East"
},
"type": {
"type": "string",
"description": "Type of the region (e.g., primary, secondary).",
"example": "primary"
},
"visible": {
"type": "boolean",
"description": "Indicates if the region is visible.",
"example": true
},
"environmentType": {
"type": "string",
"description": "Environment type of the region (e.g., production, staging).",
"example": "production"
}
},
"example": {
"id": "region-1",
"name": "US East",
"type": "primary",
"visible": true,
"environmentType": "production"
}
}