2025-03-16 16:42:53 -07:00
|
|
|
{
|
|
|
|
|
"lexicon": 1,
|
2025-05-01 15:48:13 -07:00
|
|
|
"id": "my.spoor.log.session",
|
2025-03-16 16:42:53 -07:00
|
|
|
"defs": {
|
|
|
|
|
"main": {
|
|
|
|
|
"type": "record",
|
|
|
|
|
"description": "A session of consuming some content",
|
|
|
|
|
"key": "tid",
|
|
|
|
|
"record": {
|
|
|
|
|
"type": "object",
|
|
|
|
|
"required": ["content", "createdAt"],
|
|
|
|
|
"properties": {
|
2025-03-21 19:53:45 -07:00
|
|
|
"content": { "type": "ref", "ref": "com.atproto.repo.strongRef" },
|
2025-03-20 23:54:26 -07:00
|
|
|
"label": {
|
2025-03-16 16:42:53 -07:00
|
|
|
"type": "string",
|
|
|
|
|
"maxGraphemes": 64,
|
|
|
|
|
"maxLength": 640
|
|
|
|
|
},
|
2025-05-01 15:48:13 -07:00
|
|
|
"otherParticipants": {
|
2025-03-16 16:42:53 -07:00
|
|
|
"type": "array",
|
2025-05-01 15:48:13 -07:00
|
|
|
"items": { "type": "string", "format": "did" }
|
2025-03-16 16:42:53 -07:00
|
|
|
},
|
|
|
|
|
"createdAt": {
|
|
|
|
|
"type": "string",
|
|
|
|
|
"format": "datetime",
|
|
|
|
|
"description": "Client-declared timestamp for when this activity was created"
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|