nanochat/contracts/schemas/conversation.json
2026-04-16 11:06:29 -07:00

39 lines
666 B
JSON

{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"title": "Conversation",
"type": "object",
"additionalProperties": false,
"properties": {
"id": {
"type": "string",
"format": "uuid"
},
"user_id": {
"type": "string",
"format": "uuid"
},
"title": {
"type": "string"
},
"model_tag": {
"type": "string"
},
"created_at": {
"type": "string",
"format": "date-time"
},
"updated_at": {
"type": "string",
"format": "date-time"
}
},
"required": [
"id",
"user_id",
"title",
"model_tag",
"created_at",
"updated_at"
]
}