mirror of
https://github.com/aaronpo97/the-biergarten-app.git
synced 2026-02-16 10:42:08 +00:00
9 lines
257 B
TypeScript
9 lines
257 B
TypeScript
import { z } from 'zod';
|
|
|
|
const ImageMetadataValidationSchema = z.object({
|
|
caption: z.string().min(1, { message: 'Caption is required.' }),
|
|
alt: z.string().min(1, { message: 'Alt text is required.' }),
|
|
});
|
|
|
|
export default ImageMetadataValidationSchema;
|