Skip to content

Variable: CreateBoardSchema

ts
const CreateBoardSchema: ZodObject<{
  filterId: ZodOptional<ZodNumber>;
  location: ZodOptional<ZodObject<{
     projectKeyOrId: ZodOptional<ZodString>;
     type: ZodOptional<ZodCustom<"user" | string & object | "project", "user" | string & object | "project">>;
  }, $strip>>;
  name: ZodOptional<ZodString>;
  type: ZodOptional<ZodCustom<string & object | "scrum" | "kanban" | "agility", string & object | "scrum" | "kanban" | "agility">>;
}, $strip>;

Defined in: src/agile/parameters/createBoard.ts:4