import Joi from 'joi';
import { TaxIdentifierType } from './tax-identifier-type';

export const TaxIdentifierTypeSchema = Joi.string().valid(...Object.values(TaxIdentifierType));
