Webex · Schema

ProgressiveProfileViewAttributes

CallingCollaborationCommunicationEnterpriseMessagingVideo Conferencing

Properties

Name Type Description
queryTemplate object
result string Result Object
error string Error data
journeyEvents array Journey Events
View JSON Schema on GitHub

JSON Schema

webex-progressiveprofileviewattributes-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/ProgressiveProfileViewAttributes",
  "title": "ProgressiveProfileViewAttributes",
  "type": "object",
  "properties": {
    "queryTemplate": {
      "$ref": "#/components/schemas/ProfileViewAttributeResponseModel"
    },
    "result": {
      "type": "string",
      "description": "Result Object",
      "example": "\"{\"success\"}\""
    },
    "error": {
      "type": "string",
      "description": "Error data",
      "example": "failed"
    },
    "journeyEvents": {
      "type": "array",
      "description": "Journey Events",
      "example": [
        "testEvent"
      ],
      "items": {
        "type": "string"
      }
    }
  }
}