import Joi from 'joi';
import { InboundDataContentTypes } from './inbound-content-types';

export const InboundDataContentTypesSchema = Joi.string().valid(
  ...Object.values(InboundDataContentTypes),
);
