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