Barazo AppView backend
barazo.forum
1import { z } from 'zod/v4'
2
3/** Schema for PUT /api/communities/:communityDid/profile body. */
4export const updateCommunityProfileSchema = z.object({
5 displayName: z.string().max(256).nullable().optional(),
6 bio: z.string().max(2048).nullable().optional(),
7})
8
9export type UpdateCommunityProfileInput = z.infer<typeof updateCommunityProfileSchema>