Webex · Schema

deleteImageResponseSuccessObject

CallingCollaborationCommunicationEnterpriseMessagingVideo Conferencing

Properties

Name Type Description
fileName string The name of the image file.
result object The result of the deletion.
View JSON Schema on GitHub

JSON Schema

webex-deleteimageresponsesuccessobject-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/deleteImageResponseSuccessObject",
  "title": "deleteImageResponseSuccessObject",
  "type": "object",
  "required": [
    "fileName",
    "result"
  ],
  "properties": {
    "fileName": {
      "type": "string",
      "example": "CompanyLogoBlue",
      "description": "The name of the image file."
    },
    "result": {
      "type": "object",
      "required": [
        "status"
      ],
      "properties": {
        "status": {
          "type": "number",
          "example": 200,
          "description": "The status of the deletion."
        }
      },
      "description": "The result of the deletion."
    }
  }
}