ModifierSchema: ZodObject<
    { modifierId: ZodString; name: ZodString; price: ZodNumber },
    "strip",
    ZodTypeAny,
    { modifierId: string; name: string; price: number },
    { modifierId: string; name: string; price: number },
> = ...

Schema for individual modifier options Represents a single choice within a modifier group

const modifier = {
modifierId: "mod_cheese_extra",
name: "Extra Cheese",
price: 2.50
};