37 lines
929 B
JSON
37 lines
929 B
JSON
{
|
|
"lexicon": 1,
|
|
"id": "me.woach.feed.session",
|
|
"defs": {
|
|
"main": {
|
|
"type": "record",
|
|
"description": "A session of consuming some content",
|
|
"key": "tid",
|
|
"record": {
|
|
"type": "object",
|
|
"required": ["content", "createdAt"],
|
|
"properties": {
|
|
"content": {
|
|
"type": "union",
|
|
"refs": [
|
|
"me.woach.content.anilist"
|
|
]
|
|
},
|
|
"label": {
|
|
"type": "string",
|
|
"maxGraphemes": 64,
|
|
"maxLength": 640
|
|
},
|
|
"participants": {
|
|
"type": "array",
|
|
"items": { "type": "ref", "ref": "com.atproto.repo.strongRef" }
|
|
},
|
|
"createdAt": {
|
|
"type": "string",
|
|
"format": "datetime",
|
|
"description": "Client-declared timestamp for when this activity was created"
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|