import Joi from 'joi';
import { LimitIdentifierType } from './limit-identifier-type';

export const LimitIdentifierTypeSchema = Joi.string().valid(...Object.values(LimitIdentifierType));
