This commit is contained in:
root
2026-06-07 23:18:53 +08:00
parent ebd3d6a317
commit 934b9a4a23
36 changed files with 2272 additions and 296 deletions

View File

@@ -188,6 +188,7 @@ COLLECTIONS: dict[str, list[dict[str, Any]]] = {
text("filename", max=255),
text("contentType", max=120),
number("size", only_int=True),
text("objectKey", max=500),
],
"meetups": [
text("city", required=True, max=120),
@@ -203,6 +204,15 @@ COLLECTIONS: dict[str, list[dict[str, Any]]] = {
json_field("attendees"),
boolean("isUpcoming"),
text("status", max=40),
text("mode", max=40),
number("maxAttendees", only_int=True),
text("organizer", max=120),
text("accessLevel", max=40),
text("meetingProvider", max=80),
text("mirotalkRoom", max=160),
text("meetingUrl", max=500),
text("replayUrl", max=500),
json_field("features"),
],
"discussions": [
text("title", required=True, max=255),