Amazon Q · Schema

Conversation

Conversation schema from openapi

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-openapi-conversation-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://raw.githubusercontent.com/api-evangelist/amazon-q/refs/heads/main/json-schema/amazon-q-openapi-conversation-schema.json",
  "title": "Conversation",
  "description": "Conversation schema from openapi",
  "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."
    }
  }
}