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

    Variable PropertiesSchemaConst

    PropertiesSchema: Zod.ZodObject<
        {
            groups: Zod.ZodOptional<
                Zod.ZodArray<
                    Zod.ZodObject<
                        { id: Zod.ZodString; label: Zod.ZodString },
                        "strip",
                        Zod.ZodTypeAny,
                        { id: string; label: string },
                        { id: string; label: string },
                    >,
                    "many",
                >,
            >;
            properties: Zod.ZodArray<
                Zod.ZodObject<
                    {
                        group: Zod.ZodOptional<Zod.ZodString>;
                        id: Zod.ZodString;
                        label: Zod.ZodString;
                        path: Zod.ZodString;
                        type: Zod.ZodDefault<Zod.ZodNativeEnum<typeof LottiePropertyTypeEnum>>;
                        value: Zod.ZodOptional<Zod.ZodUnknown>;
                    },
                    "strip",
                    Zod.ZodTypeAny,
                    {
                        group?: string;
                        id: string;
                        label: string;
                        path: string;
                        type: LottiePropertyTypeEnum;
                        value?: unknown;
                    },
                    {
                        group?: string;
                        id: string;
                        label: string;
                        path: string;
                        type?: TEXT
                        | FILL_COLOR
                        | STROKE_COLOR
                        | STROKE_WIDTH;
                        value?: unknown;
                    },
                >,
                "many",
            >;
            version: Zod.ZodNumber;
        },
        "strip",
        Zod.ZodTypeAny,
        {
            groups?: { id: string; label: string }[];
            properties: {
                group?: string;
                id: string;
                label: string;
                path: string;
                type: LottiePropertyTypeEnum;
                value?: unknown;
            }[];
            version: number;
        },
        {
            groups?: { id: string; label: string }[];
            properties: {
                group?: string;
                id: string;
                label: string;
                path: string;
                type?: TEXT | FILL_COLOR | STROKE_COLOR | STROKE_WIDTH;
                value?: unknown;
            }[];
            version: number;
        },
    > = ...