Skip to content
Snippets Groups Projects
Code owners
Assign users and groups as approvers for specific file changes. Learn more.
meshSchema.ts 164 B
import { z } from 'zod';

export const meshSchema = z.object({
  id: z.string(),
  name: z.string(),
  decription: z.string(),
  synonyms: z.array(z.string()),
});