Webex · Schema
TranslationPatternItem
CallingCollaborationCommunicationEnterpriseMessagingVideo Conferencing
Properties
| Name | Type | Description |
|---|---|---|
| id | string | Unique identifier for a translation pattern. |
| name | string | Name given to a translation pattern for an organization. |
| matchingPattern | string | Matching pattern given to a translation pattern for an organization. |
| replacementPattern | string | Replacement pattern given to a translation pattern for an organization. |
| level | string | Level at which the translation pattern is created. The level can either be `Organization` or `Location`. |
| location | object | Location details for the translation pattern when the level is `Location`. |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/TranslationPatternItem",
"title": "TranslationPatternItem",
"type": "object",
"required": [
"id",
"name",
"matchingPattern",
"replacementPattern",
"level"
],
"properties": {
"id": {
"type": "string",
"example": "Y2lzY29zcGFyazovL3VzL0RJR0lUX1BBVFRFUk5TLzg3NGRjMjM1LTgwNTktNGM4OC05ZjU5LTRiNjdkZDJhZTZjMg",
"description": "Unique identifier for a translation pattern."
},
"name": {
"type": "string",
"example": "CHNHelpDesk",
"description": "Name given to a translation pattern for an organization."
},
"matchingPattern": {
"type": "string",
"example": "+91[2-7]XX21",
"description": "Matching pattern given to a translation pattern for an organization."
},
"replacementPattern": {
"type": "string",
"example": "+91352133",
"description": "Replacement pattern given to a translation pattern for an organization."
},
"level": {
"type": "string",
"example": "Location",
"description": "Level at which the translation pattern is created. The level can either be `Organization` or `Location`."
},
"location": {
"$ref": "#/components/schemas/Location",
"description": "Location details for the translation pattern when the level is `Location`."
}
}
}