/**
* Generated by Kubb (https://kubb.dev/).
* Do not edit manually.
*/
import { z } from "zod/v4";
export const routineFolderSchema = z.object({
id: z.optional(z.number().describe("The routine folder ID.")),
index: z.optional(
z
.number()
.describe(
"The routine folder index. Describes the order of the folder in the list.",
),
),
title: z.optional(z.string().describe("The routine folder title.")),
updated_at: z.optional(
z
.string()
.describe("ISO 8601 timestamp of when the folder was last updated."),
),
created_at: z.optional(
z.string().describe("ISO 8601 timestamp of when the folder was created."),
),
});