We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 37165af commit 3a4ca87Copy full SHA for 3a4ca87
1 file changed
lib/validations.ts
@@ -178,6 +178,9 @@ export const createGroupSchema = z
178
.array(z.string().email())
179
.optional()
180
.openapi({ description: "List of member emails" }),
181
+ about: z.string().optional().openapi({
182
+ description: "Group's description",
183
+ }),
184
})
185
.openapi({ description: "Schema for creating a new group" });
186
0 commit comments