@rendley/sdk - v1.14.0
    Preparing search index...

    Variable PropertyDescriptionSchemaConst

    PropertyDescriptionSchema: Zod.ZodObject<
        {
            defaultValue: Zod.ZodType<Required<any>, Zod.ZodTypeDef, Required<any>>;
            description: Zod.ZodOptional<Zod.ZodString>;
            initOnly: Zod.ZodOptional<Zod.ZodBoolean>;
            label: Zod.ZodOptional<Zod.ZodString>;
            max: Zod.ZodOptional<
                Zod.ZodUnion<[Zod.ZodNumber, Zod.ZodArray<Zod.ZodNumber, "many">]>,
            >;
            min: Zod.ZodOptional<
                Zod.ZodUnion<[Zod.ZodNumber, Zod.ZodArray<Zod.ZodNumber, "many">]>,
            >;
            name: Zod.ZodString;
            step: Zod.ZodOptional<
                Zod.ZodUnion<[Zod.ZodNumber, Zod.ZodArray<Zod.ZodNumber, "many">]>,
            >;
            type: Zod.ZodNativeEnum<typeof PropertyDescriptionTypeEnum>;
        },
        "strip",
        Zod.ZodTypeAny,
        {
            defaultValue: Required<any>;
            description?: string;
            initOnly?: boolean;
            label?: string;
            max?: number | number[];
            min?: number | number[];
            name: string;
            step?: number | number[];
            type: PropertyDescriptionTypeEnum;
        },
        {
            defaultValue: Required<any>;
            description?: string;
            initOnly?: boolean;
            label?: string;
            max?: number | number[];
            min?: number | number[];
            name: string;
            step?: number | number[];
            type: PropertyDescriptionTypeEnum;
        },
    > = ...