Cisco Webex · Schema

AttachmentAction

CollaborationCommunicationsMeetingsMessagingTeamsVideo Conferencing

Properties

Name Type Description
id string Unique identifier for the attachment action.
type string The type of action.
messageId string The parent message ID containing the adaptive card.
personId string The person ID who performed the action.
roomId string The room ID where the action occurred.
inputs object User-provided form data from the adaptive card. Keys correspond to the input field IDs defined in the card.
created string Date and time the action was created.
View JSON Schema on GitHub

JSON Schema

cisco-webex-attachmentaction-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/AttachmentAction",
  "title": "AttachmentAction",
  "type": "object",
  "properties": {
    "id": {
      "type": "string",
      "description": "Unique identifier for the attachment action."
    },
    "type": {
      "type": "string",
      "description": "The type of action.",
      "enum": [
        "submit"
      ]
    },
    "messageId": {
      "type": "string",
      "description": "The parent message ID containing the adaptive card."
    },
    "personId": {
      "type": "string",
      "description": "The person ID who performed the action."
    },
    "roomId": {
      "type": "string",
      "description": "The room ID where the action occurred."
    },
    "inputs": {
      "type": "object",
      "description": "User-provided form data from the adaptive card. Keys correspond to the input field IDs defined in the card.",
      "additionalProperties": true
    },
    "created": {
      "type": "string",
      "format": "date-time",
      "description": "Date and time the action was created."
    }
  }
}