instacart · Schema

ChatMessagesResponse

Properties

Name Type Description
messages array The list of chat messages in chronological order.
View JSON Schema on GitHub

JSON Schema

instacart-chatmessagesresponse-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/ChatMessagesResponse",
  "title": "ChatMessagesResponse",
  "type": "object",
  "properties": {
    "messages": {
      "type": "array",
      "description": "The list of chat messages in chronological order.",
      "items": {
        "$ref": "#/components/schemas/ChatMessage"
      }
    }
  }
}