Webex · Schema

WorkspaceRequestModel

Create or Update Workspace of an organization

CallingCollaborationCommunicationEnterpriseMessagingVideo Conferencing

Properties

Name Type Description
name string Workspace Name
description string Workspace Description
View JSON Schema on GitHub

JSON Schema

webex-workspacerequestmodel-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/WorkspaceRequestModel",
  "title": "WorkspaceRequestModel",
  "required": [
    "description",
    "name"
  ],
  "type": "object",
  "properties": {
    "name": {
      "type": "string",
      "description": "Workspace Name",
      "example": "Customer-Journey-Widget"
    },
    "description": {
      "type": "string",
      "description": "Workspace Description",
      "example": "This is for sandbox environment"
    }
  },
  "description": "Create or Update Workspace of an organization"
}