Amazon Q · Schema

Conversation

Artificial IntelligenceAssistantEnterpriseGenerative AI

Properties

Name Type Description
conversationId string The unique identifier of the conversation.
title string The title of the conversation.
createdAt string The date and time the conversation was created.
View JSON Schema on GitHub

JSON Schema

amazon-q-conversation-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/Conversation",
  "title": "Conversation",
  "type": "object",
  "properties": {
    "conversationId": {
      "type": "string",
      "description": "The unique identifier of the conversation."
    },
    "title": {
      "type": "string",
      "description": "The title of the conversation."
    },
    "createdAt": {
      "type": "string",
      "format": "date-time",
      "description": "The date and time the conversation was created."
    }
  }
}