/* * Code generated by Speakeasy (https://speakeasy.com). DO NOT EDIT. * @generated-id: 8a5e1b9f2d4d */ import * as z from "zod"; export type PermittedRole = { id: string; name: string; description: string }; export const PermittedRole$zodSchema: z.ZodType = z.object({ description: z.string().describe("A description of the role's permissions."), id: z.string().describe("The role identifier."), name: z.string().describe("The human-readable name of the role."), });