Collection of chat messages.
{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/ChatMessageCollection", "title": "ChatMessageCollection", "type": "object", "description": "Collection of chat messages.", "properties": { "value": { "type": "array", "items": { "$ref": "#/components/schemas/ChatMessage" } } } }