Zod Models

import * as z from "zod";

export const LocalBodySchema = z.object({
    id: z.string(),
});

export const LocalBodyCollectionSchema = z.array(LocalBodySchema);

export type ILocalBody = z.infer<typeof LocalBodySchema>;

export type ILocalBodyCollection = z.infer<typeof LocalBodyCollectionSchema>;