Files
DentalManagementMHAprilgg/packages/db/shared/schemas/results/PdfGroupFindFirstResult.schema.ts
2026-04-04 22:13:55 -04:00

10 lines
274 B
TypeScript

import * as z from 'zod';
export const PdfGroupFindFirstResultSchema = z.nullable(z.object({
id: z.number().int(),
title: z.string(),
titleKey: z.unknown(),
createdAt: z.date(),
patientId: z.number().int(),
patient: z.unknown(),
pdfs: z.array(z.unknown())
}));