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 | 72x 72x 72x | import { attachmentArraySchema } from "shared-types"; import { events } from "shared-types/events"; import { z } from "zod"; export const formSchemaMedicaid = events["respond-to-rai"].baseSchema.extend({ attachments: events["respond-to-rai"].medicaidSpaAttachments, }); export const formSchemaChip = events["respond-to-rai"].baseSchema.extend({ attachments: events["respond-to-rai"].chipSpaAttachments.extend({ revisedAmendedStatePlanLanguage: z.object({ label: z.string().default("Revised Amended State Plan Language"), files: attachmentArraySchema(), }), officialRAIResponse: z.object({ label: z.string().default("Official RAI Response"), files: attachmentArraySchema(), }), }), }); export const formSchemaWaivers = events["respond-to-rai"].baseSchema.extend({ attachments: events["respond-to-rai"].waiverAttachments, }); |