feat (cprj): implement cprj (patient note) functionality

This commit is contained in:
Abizrh
2025-11-13 21:29:16 +07:00
parent 5f9e441147
commit f629546f13
11 changed files with 537 additions and 71 deletions

No files matched your search

+8
View File
@@ -179,6 +179,14 @@ const InstructionSchema = z.object({
other: z.string().default(''),
})
export const CprjSoapiSchema = z.object({
subjective: z.string().default(''),
objective: z.string().default(''),
assesment: z.string().default(''),
plan: z.string().default(''),
review: z.string().default(''),
})
export const SoapSchema = z.object({
subject: SubjectSchema,
object: ObjectSchema,