// This file is auto-generated by scripts/generate-schemas.ts // Do not edit manually. import { z } from "zod"; import { AttributeReferenceSchema, LocalizedStringSchema } from "./common.ts"; export const AttributeGroupDraftSchema = z.object({ name: LocalizedStringSchema, description: LocalizedStringSchema.nullish(), attributes: z.array(AttributeReferenceSchema), key: z.string().nullish(), });