@ministryofjustice/hmpps-digital-prison-reporting-frontend
Version:
The Digital Prison Reporting Frontend contains templates and code to help display data effectively in UI applications.
13 lines (9 loc) • 374 B
JavaScript
;
var z = require('zod');
const schema = z.object({
reportId: z.string().trim().min(1, 'Report ID should exist'),
variantId: z.string().trim().min(1, 'Report variant ID should exist'),
'more-detail': z.string().trim().min(1, 'Please fill out the reason for needing the report'),
});
exports.schema = schema;
//# sourceMappingURL=validation.js.map