| 123456789101112131415161718192021222324 |
- type: object
- properties:
- id:
- type: string
- format: uuid
- description: Unique ID of the session
- example: 019eb74f-c5c3-771c-b3ce-399a9ffeafe0
- game_id:
- type: string
- format: uuid
- description: ID of the game that owns this session
- example: cbc7d94e-12fe-4773-b095-43ce28d601d4
- summary:
- type: string
- description: LLM generated summary of the full session. Only available after session is over
- example: Lorem Ipsum, etc...
- started_at:
- type: date
- description: Date session was first created
- example: 2026-06-11T15:42:12.281Z
- ended_at:
- type: date
- description: Date when session was ended. Possibly null.
- example: 2026-06-11T15:42:50.417Z
|