{ "$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." } } }