Webex · Schema

TranslationPatternCreateRequest

CallingCollaborationCommunicationEnterpriseMessagingVideo Conferencing

Properties

Name Type Description
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.
View JSON Schema on GitHub

JSON Schema

webex-translationpatterncreaterequest-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/TranslationPatternCreateRequest",
  "title": "TranslationPatternCreateRequest",
  "type": "object",
  "required": [
    "name",
    "matchingPattern",
    "replacementPattern"
  ],
  "properties": {
    "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."
    }
  }
}