Type Alias: SiteSchemaType
type SiteSchemaType = z.ZodObject<{
identifier: z.ZodType<string>;
monitoring: z.ZodBoolean;
monitors: z.ZodArray<MonitorSchemaType>;
name: z.ZodString;
}>;
Defined in: shared/types/schemaTypes.ts:228
Zod schema describing persisted site payloads including nested monitors.