import Joi from 'joi';
import { DocumentType } from './document-type';

export const DocumentTypeSchema = Joi.string().valid(...Object.values(DocumentType));
