rafael 561431fe48
Add opened to chat.bsky.convo.defs#convoView (#2953)
* Add convoView to chat.bsky.convo.defs#convoView

* Add changeset
2024-11-08 08:53:05 -03:00

139 lines
3.8 KiB
JSON

{
"lexicon": 1,
"id": "chat.bsky.convo.defs",
"defs": {
"messageRef": {
"type": "object",
"required": ["did", "messageId", "convoId"],
"properties": {
"did": { "type": "string", "format": "did" },
"convoId": { "type": "string" },
"messageId": { "type": "string" }
}
},
"messageInput": {
"type": "object",
"required": ["text"],
"properties": {
"text": {
"type": "string",
"maxLength": 10000,
"maxGraphemes": 1000
},
"facets": {
"type": "array",
"description": "Annotations of text (mentions, URLs, hashtags, etc)",
"items": { "type": "ref", "ref": "app.bsky.richtext.facet" }
},
"embed": {
"type": "union",
"refs": ["app.bsky.embed.record"]
}
}
},
"messageView": {
"type": "object",
"required": ["id", "rev", "text", "sender", "sentAt"],
"properties": {
"id": { "type": "string" },
"rev": { "type": "string" },
"text": {
"type": "string",
"maxLength": 10000,
"maxGraphemes": 1000
},
"facets": {
"type": "array",
"description": "Annotations of text (mentions, URLs, hashtags, etc)",
"items": { "type": "ref", "ref": "app.bsky.richtext.facet" }
},
"embed": {
"type": "union",
"refs": ["app.bsky.embed.record#view"]
},
"sender": { "type": "ref", "ref": "#messageViewSender" },
"sentAt": { "type": "string", "format": "datetime" }
}
},
"deletedMessageView": {
"type": "object",
"required": ["id", "rev", "sender", "sentAt"],
"properties": {
"id": { "type": "string" },
"rev": { "type": "string" },
"sender": { "type": "ref", "ref": "#messageViewSender" },
"sentAt": { "type": "string", "format": "datetime" }
}
},
"messageViewSender": {
"type": "object",
"required": ["did"],
"properties": {
"did": { "type": "string", "format": "did" }
}
},
"convoView": {
"type": "object",
"required": ["id", "rev", "members", "muted", "unreadCount"],
"properties": {
"id": { "type": "string" },
"rev": { "type": "string" },
"members": {
"type": "array",
"items": {
"type": "ref",
"ref": "chat.bsky.actor.defs#profileViewBasic"
}
},
"lastMessage": {
"type": "union",
"refs": ["#messageView", "#deletedMessageView"]
},
"muted": { "type": "boolean" },
"opened": { "type": "boolean" },
"unreadCount": { "type": "integer" }
}
},
"logBeginConvo": {
"type": "object",
"required": ["rev", "convoId"],
"properties": {
"rev": { "type": "string" },
"convoId": { "type": "string" }
}
},
"logLeaveConvo": {
"type": "object",
"required": ["rev", "convoId"],
"properties": {
"rev": { "type": "string" },
"convoId": { "type": "string" }
}
},
"logCreateMessage": {
"type": "object",
"required": ["rev", "convoId", "message"],
"properties": {
"rev": { "type": "string" },
"convoId": { "type": "string" },
"message": {
"type": "union",
"refs": ["#messageView", "#deletedMessageView"]
}
}
},
"logDeleteMessage": {
"type": "object",
"required": ["rev", "convoId", "message"],
"properties": {
"rev": { "type": "string" },
"convoId": { "type": "string" },
"message": {
"type": "union",
"refs": ["#messageView", "#deletedMessageView"]
}
}
}
}
}