UNPKG

@vzeta/camunda-api-zod-schemas

Version:

Zod schemas and TypeScript types for Camunda 8 unified API

16 lines (15 loc) 271 B
import { z } from "zod"; const groupSchema = z.object({ groupId: z.string(), name: z.string(), description: z.string() }); const roleSchema = z.object({ roleId: z.string(), name: z.string(), description: z.string() }); export { groupSchema, roleSchema };