Chat · Schema

Chat Conversation

ChatConversational AIConversationsCustomer SupportMessagingReal-time

Properties

Name Type Description
id string
title string
createdAt string
updatedAt string
participantIds array
View JSON Schema on GitHub

JSON Schema

chat-conversation-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://apievangelist.com/schemas/chat/conversation.json",
  "title": "Chat Conversation",
  "type": "object",
  "required": ["id"],
  "properties": {
    "id": { "type": "string" },
    "title": { "type": "string" },
    "createdAt": { "type": "string", "format": "date-time" },
    "updatedAt": { "type": "string", "format": "date-time" },
    "participantIds": {
      "type": "array",
      "items": { "type": "string" }
    }
  }
}