{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/UpdateUserMessage", "title": "UpdateUserMessage", "properties": { "message_type": { "type": "string", "const": "user_message", "title": "Message Type", "default": "user_message" }, "content": { "anyOf": [ { "items": { "$ref": "#/components/schemas/LettaUserMessageContentUnion" }, "type": "array" }, { "type": "string" } ], "title": "Content", "description": "The message content sent by the user (can be a string or an array of multi-modal content parts)" } }, "type": "object", "required": [ "content" ] }