Webex · Schema

UpdateSnippetObject

CallingCollaborationCommunicationEnterpriseMessagingVideo Conferencing

Properties

Name Type Description
reason string Reason for snippet update; only required for Compliance Officers.
text string Text for the snippet.
View JSON Schema on GitHub

JSON Schema

webex-updatesnippetobject-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/UpdateSnippetObject",
  "title": "UpdateSnippetObject",
  "type": "object",
  "required": [
    "text"
  ],
  "properties": {
    "reason": {
      "type": "string",
      "example": "audit",
      "description": "Reason for snippet update; only required for Compliance Officers."
    },
    "text": {
      "type": "string",
      "example": "Hello everybody",
      "description": "Text for the snippet."
    }
  }
}