Press n or j to go to the next uncovered block, b, p or k for the previous block.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 | 186x 137x 129x 186x | import { z } from "zod"; import { attachmentArraySchema, attachmentArraySchemaOptional } from "../attachments"; export const baseSchema = z.object({ event: z.literal("contracting-renewal").default("contracting-renewal"), authority: z.string().default("1915(b)"), id: z .string() .min(1, { message: "Required" }) .refine((id) => /^[A-Z]{2}-\d{4,5}\.R(?!00)\d{2}\.[0]{2}$/.test(id), { message: "The 1915(b) Waiver Renewal Number must be in the format of SS-####.R##.00 or SS-#####.R##.00. For renewals, the “R##” starts with ‘01’ and ascends.", }), proposedEffectiveDate: z.number(), attachments: z.object({ b4IndependentAssessment: z.object({ label: z .string() .default( "1915(b)(4) FFS Selective Contracting (Streamlined) Independent Assessment (first two renewals only)", ), files: attachmentArraySchemaOptional(), }), b4WaiverApplication: z.object({ label: z .string() .default("1915(b)(4) FFS Selective Contracting (Streamlined) Waiver Application Pre-print"), files: attachmentArraySchema(), }), tribalConsultation: z.object({ label: z.string().default("Tribal Consultation"), files: attachmentArraySchemaOptional(), }), other: z.object({ label: z.string().default("Other"), files: attachmentArraySchemaOptional(), }), }), additionalInformation: z.string().max(4000).nullable().default(null).optional(), waiverNumber: z .string() .min(1, { message: "Required" }) .refine((id) => /^[A-Z]{2}-\d{4,5}\.R\d{2}\.\d{2}$/.test(id), { message: "The approved 1915(b) Initial or Renewal Number must be in the format of SS-####.R##.## or SS-#####.R##.##.", }), }); export const schema = baseSchema.extend({ actionType: z.string().default("Renew"), origin: z.literal("mako").default("mako"), submitterName: z.string(), submitterEmail: z.string().email(), timestamp: z.number(), }); |