diff --git a/lib/validations/event-type.ts b/lib/validations/event-type.ts index 595217a37a..28dd76cf11 100644 --- a/lib/validations/event-type.ts +++ b/lib/validations/event-type.ts @@ -40,7 +40,7 @@ const schemaEventTypeBaseParams = z description: z.string().optional().nullable(), length: z.number().int(), locations: jsonSchema.optional().nullable().or(z.null()), - metadata: jsonSchema.optional().nullable().or(z.null()), + metadata: z.null().or(jsonSchema).optional().nullable(), recurringEvent: jsonSchema.optional().nullable().or(z.null()), }) .strict();