diff --git a/server/routes/api/documents/schema.ts b/server/routes/api/documents/schema.ts index fc124a8de..98d775f59 100644 --- a/server/routes/api/documents/schema.ts +++ b/server/routes/api/documents/schema.ts @@ -33,8 +33,8 @@ const SearchQuerySchema = z.object({ }); const BaseIdSchema = z.object({ - /** Id of the entity */ - id: z.string().uuid(), + /** Id of the document to be updated */ + id: z.string(), }); export const DocumentsListSchema = DocumentsSortParamsSchema.extend({