diff --git a/packages/backend/src/server/api/endpoints/notes/create.ts b/packages/backend/src/server/api/endpoints/notes/create.ts index e15221046..72e61e9ed 100644 --- a/packages/backend/src/server/api/endpoints/notes/create.ts +++ b/packages/backend/src/server/api/endpoints/notes/create.ts @@ -139,10 +139,10 @@ export const paramDef = { properties: { choices: { type: "array", - uniqueItems: true, - minItems: 2, - maxItems: 10, - items: { type: "string", minLength: 1, maxLength: 50 }, + uniqueItems: false, + minItems: 0, + maxItems: 20, + items: { type: "string", minLength: 0, maxLength: 100 }, }, multiple: { type: "boolean", default: false }, expiresAt: { type: "integer", nullable: true },