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 | 284x 47x 284x | import { z } from "zod";
import { attachmentArraySchema, attachmentArraySchemaOptional } from "../attachments";
import { ammendSchema } from "./base-schema";
export const baseSchema = z.object({
id: z
.string()
.min(1, { message: "Required" })
.refine((id) => /^[A-Z]{2}-\d{4,5}\.R\d{2}\.(?!00)\d{2}$/.test(id), {
message:
"The 1915(c) Waiver Amendment Number must be in the format of SS-####.R##.## or SS-#####.R##.##. For amendments, the last two digits start with '01' and ascends.",
}),
event: z.literal("app-k").default("app-k"),
authority: z.string().default("1915(c)"),
proposedEffectiveDate: z.number(),
title: z.string().trim().min(1, { message: "Required" }).max(125),
attachments: z.object({
appk: z.object({
label: z.string().default("1915(c) Appendix K Amendment Waiver Template"),
files: attachmentArraySchema(),
}),
other: z.object({
label: z.string().default("Other"),
files: attachmentArraySchemaOptional(),
}),
}),
additionalInformation: z.string().max(4000).nullable().default(null).optional(),
});
export const schema = baseSchema.merge(ammendSchema);
export type AppKSubmission = z.infer<typeof schema>;
|