Webex · Schema

File

CallingCollaborationCommunicationEnterpriseMessagingVideo Conferencing

Properties

Name Type Description
fileId string The `fileId` of the attachment.
type string The type of attachment. * `external` - Attachment stored externally. * `native` - Attachment stored within the Webex platform.
contentUrl string The URL for the content.
View JSON Schema on GitHub

JSON Schema

webex-file-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/File",
  "title": "File",
  "type": "object",
  "required": [
    "fileId",
    "type",
    "contentUrl"
  ],
  "properties": {
    "fileId": {
      "type": "string",
      "example": "BFT1BMRS8yNDlmNzRkOS1kYjhhLTQzY2",
      "description": "The `fileId` of the attachment."
    },
    "type": {
      "type": "string",
      "enum": [
        "external",
        "native"
      ],
      "description": "The type of attachment.\n * `external` - Attachment stored externally.\n * `native` - Attachment stored within the Webex platform.\n"
    },
    "contentUrl": {
      "type": "string",
      "example": "https://testecmwebexteams-my.sharepoint.com/:w:/g/personal/admin_testecmwebexteams_onmicrosoft_com/ESCiJiALU0pBlVm6TVhZ2k0B69XNVB1kWoaa7RIV9GERTg",
      "description": "The URL for the content."
    }
  }
}