import Joi from 'joi';
import { CustomsContentTypes } from './customs-content-types';

export const CustomsContentTypesSchema = Joi.string().valid(...Object.values(CustomsContentTypes));
