N-FIN-7: add payment form schema
This commit is contained in:
parent
792f97b5be
commit
9a7da676ea
1 changed files with 11 additions and 0 deletions
11
src/lib/form-schemas/paymentFormSchema.ts
Normal file
11
src/lib/form-schemas/paymentFormSchema.ts
Normal file
|
@ -0,0 +1,11 @@
|
|||
import { z } from 'zod';
|
||||
|
||||
export const paymentFormSchema = z.object({
|
||||
id: z.number().positive().optional(),
|
||||
amount: z.number().positive(),
|
||||
date: z.date(),
|
||||
payorId: z.number().positive(),
|
||||
payeeId: z.number().positive(),
|
||||
categoryId: z.number().positive().optional(),
|
||||
note: z.string().max(255).optional(),
|
||||
});
|
Loading…
Add table
Reference in a new issue