1import { z } from "astro/zod";
2
3export const LeafletDocumentSchema = z.object({
4 rkey: z.string(),
5 cid: z.string(),
6 title: z.string(),
7 description: z.string(),
8 author: z.string(),
9 publication: z.string(),
10 publishedAt: z.string(),
11});